diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..bc0f4a9 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake path:. diff --git a/.gitignore b/.gitignore index d2ecd32..82c7138 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ build *.wasm package-lock.json Cargo.lock -target \ No newline at end of file +target +.direnv diff --git a/Cargo.toml b/Cargo.toml index b44e403..7a031a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-powershell" description = "powershell grammar for the tree-sitter parsing library" -version = "0.24.4" +version = "0.25.9" keywords = ["incremental", "parsing", "powershell"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-powershell" @@ -9,18 +9,16 @@ edition = "2018" license = "MIT" build = "bindings/rust/build.rs" -include = [ - "bindings/rust/*", - "grammar.js", - "queries/*", - "src/*", -] +include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] [lib] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "0.24.4" +tree-sitter-language = "0.1" [build-dependencies] cc = "1.0" + +[dev-dependencies] +tree-sitter = "0.25.6" diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 4eb70fe..41ceecb 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -2,38 +2,23 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(&src_dir); c_config .flag_if_supported("-Wno-unused-parameter") .flag_if_supported("-Wno-unused-but-set-variable") .flag_if_supported("-Wno-trigraphs"); + c_config.std("c11").include(src_dir); + #[cfg(target_env = "msvc")] c_config.flag("-utf-8"); let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - // If your language uses an external scanner written in C, - // then include this block of code: - + // NOTE: if your language uses an external scanner, uncomment this block: let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - c_config.compile("parser"); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.c"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + c_config.compile("tree-sitter-powershell"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index ed0d438..71f8b9f 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -6,7 +6,7 @@ //! ``` //! let code = ""; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(tree_sitter_powershell::language()).expect("Error loading powershell grammar"); +//! parser.set_language(&tree_sitter_powershell::LANGUAGE.into()).expect("Error loading powershell grammar"); //! let tree = parser.parse(code, None).unwrap(); //! ``` //! @@ -15,18 +15,16 @@ //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_powershell() -> Language; + fn tree_sitter_powershell() -> *const (); } -/// Get the tree-sitter [Language][] for this grammar. +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. /// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_powershell() } -} +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_powershell) }; /// The content of the [`node-types.json`][] file for this grammar. /// @@ -46,7 +44,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) + .set_language(&super::LANGUAGE.into()) .expect("Error loading powershell language"); } } diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..82868d9 --- /dev/null +++ b/flake.lock @@ -0,0 +1,78 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1741862977, + "narHash": "sha256-prZ0M8vE/ghRGGZcflvxCu40ObKaB+ikn74/xQoNrGQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "cdd2ef009676ac92b715ff26630164bb88fec4e0", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-24.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable": { + "locked": { + "lastModified": 1741851582, + "narHash": "sha256-cPfs8qMccim2RBgtKGF+x9IBCduRvd/N5F4nYpU0TVE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6607cf789e541e7873d40d3a8f7815ea92204f32", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs", + "nixpkgs-unstable": "nixpkgs-unstable" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..df4d4f4 --- /dev/null +++ b/flake.nix @@ -0,0 +1,44 @@ +# source: https://github.com/nix-community/poetry2nix/blob/master/templates/app/flake.nix +{ + description = "tree-sitter-powershell"; + + inputs = { + flake-utils.url = "github:numtide/flake-utils"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; + nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable"; + }; + + outputs = { self, nixpkgs, nixpkgs-unstable, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: + let + pkgs = nixpkgs.legacyPackages.${system}; + pkgs-unstable = nixpkgs-unstable.legacyPackages.${system}; + in + { + packages = { + default = self.packages.${system}.myapp; + }; + + # Shell for app dependencies. + # + # nix develop + # + # Use this shell for developing your app. + devShells.default = pkgs.mkShell { + packages = [ + pkgs.gnumake + pkgs.nixpkgs-fmt + + # Rust + pkgs-unstable.rustc + pkgs-unstable.cargo + pkgs-unstable.rust-analyzer + pkgs-unstable.rustfmt + + # Tree-sitter + pkgs.nodejs_23 + pkgs.tree-sitter + ]; + }; + }); +} diff --git a/grammar.js b/grammar.js index ccda978..f0e4b8d 100644 --- a/grammar.js +++ b/grammar.js @@ -3,7 +3,8 @@ const PREC = { UNARY: 2, CAST : 3, ELEMENT_ACCESS : 4, - EMPTY : 5 + EMPTY : 5, + PARAM : 6 } module.exports = grammar({ @@ -17,6 +18,7 @@ module.exports = grammar({ $.comment, /\s/, /`\n/, + /`\r\n/, /[\uFEFF\u2060\u200B\u00A0]/ ], @@ -27,9 +29,8 @@ module.exports = grammar({ [$.expandable_string_literal], [$.path_command_name, $._value] ], - - rules: { + rules: { program: $ => seq( optional($.param_block), $.statement_list @@ -38,14 +39,14 @@ module.exports = grammar({ // Comments comment: $ => token( choice( - /#[^\n]*/, + /#[^\r\n]*/, seq( "<#", repeat( choice( /[^#`]+/, /#+[^>#]/, - /`.{1}|`\n/ + /`.{1}|`\r?\n/ ) ), /#+>/ @@ -54,7 +55,6 @@ module.exports = grammar({ ), // Literal - _literal: $ => choice( $.integer_literal, $.string_literal, @@ -62,7 +62,6 @@ module.exports = grammar({ ), // Integer Literals - integer_literal: $ => choice( $.decimal_integer_literal, $.hexadecimal_integer_literal @@ -77,7 +76,6 @@ module.exports = grammar({ )), // Real Literals - real_literal: $ => token(choice( seq(/[0-9]+\.[0-9]+/, optional(token(seq("e", optional(choice("+", "-")), /[0-9]+/))), optional(choice("kb", "mb", "gb", "tb", "pb"))), seq(/\.[0-9]+/, optional(token(seq("e", optional(choice("+", "-")), /[0-9]+/))), optional(choice("kb", "mb", "gb", "tb", "pb"))), @@ -85,7 +83,6 @@ module.exports = grammar({ )), // String literal - string_literal: $ => choice( $.expandable_string_literal, $.verbatim_string_characters, @@ -100,8 +97,8 @@ module.exports = grammar({ token.immediate(/[^\$\"`]+/), $.variable, $.sub_expression, - token.immediate(/\$(`.{1}|`\n|[\s\\])/), - token.immediate(/`.{1}|`\n/), + token.immediate(/\$(`.{1}|`\r?\n|[\s\\])/), + token.immediate(/`.{1}|`\r?\n/), token.immediate("\"\""), token.immediate("$"), ) @@ -111,19 +108,19 @@ module.exports = grammar({ ), expandable_here_string_literal: $ => seq( - /@\" *\n/, + /@\" *\r?\n/, repeat( choice( - token.immediate(/[^\$\n`]+/), + token.immediate(/[^\$\r\n`]+/), $.variable, $.sub_expression, - token.immediate(/\n+[^\"\n]/), - token.immediate(/\n+\"[^@]/), + token.immediate(/(\r?\n)+[^\"\r\n]/), + token.immediate(/(\r?\n)+\"[^@]/), token.immediate("$"), - token.immediate(/`.{1}|`\n/) + token.immediate(/`.{1}|`\r?\n/) ) ), - token.immediate(/\n+\"@/) + token.immediate(/(\r?\n)+\"@/) ), verbatim_string_characters: $ => token(seq( @@ -139,15 +136,15 @@ module.exports = grammar({ verbatim_here_string_characters: $ => token( seq( - /@\'\s*\n/, + /@\'\s*\r?\n/, repeat( choice( - /[^\n]/, - /\n+[^\'\n]/, - /\n\'[^@]/, + /[^\r\n]/, + /(\r?\n)+[^\'\r\n]/, + /\r?\n\'[^@]/, ) ), - /\n+\'@/ + /(\r?\n)+\'@/ ) ), @@ -156,7 +153,7 @@ module.exports = grammar({ // Type names type_identifier: $ => /[a-zA-Z0-9_]+/, - + type_name: $ => choice( $.type_identifier, seq($.type_name, ".", $.type_identifier ) @@ -166,9 +163,8 @@ module.exports = grammar({ generic_type_name: $ => seq($.type_name, "["), // Operators and punctuators - assignement_operator: $ => choice( - "=", "!=", "+=", "*=", "/=", "%=" + "=", "!=", "+=", "*=", "/=", "%=", "-=" ), file_redirection_operator: $ => choice( @@ -204,7 +200,6 @@ module.exports = grammar({ format_operator: $ => reservedWord("-f"), // Variables - variable: $ => choice( '$$', '$^', @@ -236,14 +231,13 @@ module.exports = grammar({ choice( /"[^"]*"/, /&[^&]*/, - /[^\|\n]+/ + /[^\|\r\n]+/ ) ), // Grammar // Statements - script_block: $ => choice( field("script_block_body", $.script_block_body), seq(seq($.param_block, $._statement_terminator, repeat(";")), field("script_block_body", optional($.script_block_body))) @@ -270,7 +264,7 @@ module.exports = grammar({ field("named_block_list", $.named_block_list), field("statement_list", $.statement_list) ), - + named_block_list: $ => repeat1( $.named_block ), @@ -377,11 +371,11 @@ module.exports = grammar({ for_statement: $ => seq( reservedWord("for"), "(", optional( - seq(optional(seq(field("for_initializer", $.for_initializer), $._statement_terminator)), + seq(optional(seq(field("for_initializer", $.for_initializer), $._statement_terminator)), optional( - seq(choice(";", "\n"), optional(seq(field("for_condition", $.for_condition), $._statement_terminator)), + seq(choice(";", token.immediate(/\r?\n/)), optional(seq(field("for_condition", $.for_condition), $._statement_terminator)), optional( - seq(choice(";", "\n"), optional(seq(field("for_iterator", $.for_iterator), $._statement_terminator))) + seq(choice(";", token.immediate(/\r?\n/)), optional(seq(field("for_iterator", $.for_iterator), $._statement_terminator))) ) ) ) @@ -469,7 +463,7 @@ module.exports = grammar({ ), data_statement: $ => seq( - reservedWord("data"), $.data_name, optional($.data_commands_allowed), $.statement_block + reservedWord("data"), optional($.data_name), optional($.data_commands_allowed), $.statement_block ), data_name: $ =>$.simple_name, @@ -533,8 +527,8 @@ module.exports = grammar({ choice( /[^\$"`]+/, $.variable, - /\$`(.{1}|`\n)/, - /`.{1}|`\n/, + /\$`(.{1}|`\r?\n)/, + /`.{1}|`\r?\n/, "\"\"", $.sub_expression ) @@ -543,27 +537,47 @@ module.exports = grammar({ "\"" ), - command_name: $ => prec.right(seq( - /[^\{\}\(\);,\|\&`"'\s\n\[\]\+\-\*\/\$@<\!%]+/, + command_name: $ => seq( + choice( + /[^\{\}\(\);,\|\&`"'\s\r\n\[\]\+\-\*\/\$@<\!%]+/, + // tree-sitter does not allow to control lexer + // each start keyword into _statement rule must be present here + // https://github.com/airbus-cert/tree-sitter-powershell/issues/24 + new RegExp(caseInsensitive("break-")), + new RegExp(caseInsensitive("continue-")), + new RegExp(caseInsensitive("throw-")), + new RegExp(caseInsensitive("return-")), + new RegExp(caseInsensitive("exit-")), + new RegExp(caseInsensitive("try-")), + new RegExp(caseInsensitive("trap-")), + new RegExp(caseInsensitive("if-")), + new RegExp(caseInsensitive("function-")), + new RegExp(caseInsensitive("filter-")), + new RegExp(caseInsensitive("workflow-")), + new RegExp(caseInsensitive("class-")), + new RegExp(caseInsensitive("enum-")), + new RegExp(caseInsensitive("switch-")), + new RegExp(caseInsensitive("for-")), + new RegExp(caseInsensitive("while-")), + new RegExp(caseInsensitive("parallel-")), + ), repeat( choice( - token.immediate(/[^\{\}\(\);,\|\&"'\s\n]+/), + token.immediate(/[^\{\}\(\);,\|\&"'\s\r\n]+/), seq(token.immediate("\""), $._expandable_string_literal_immediate), token.immediate("\"\""), token.immediate("''") ) ) - )), + ), path_command_name_token: $ => /[0-9a-zA-Z_?\-\.\\]+/, // Use to parse command path - path_command_name: $ => prec.right( - repeat1( - choice( - $.path_command_name_token, - $.variable - ) + path_command_name: $ => repeat1( + choice( + $.path_command_name_token, + $.variable ) ), @@ -575,24 +589,25 @@ module.exports = grammar({ command_elements: $ => prec.right(repeat1($._command_element)), - _command_element: $ => choice( + _command_element: $ => prec.right(choice( $.command_parameter, seq($._command_argument, optional($.argument_list)), $.redirection, $.stop_parsing - ), + )), // Stop parsing is a token that end the parsing of command line - stop_parsing: $ => /--%[^\n]*/, + stop_parsing: $ => /--%[^\r\n]*/, // Generic token is hard to manage // So a definition is that a generic token must have to begin by one or more space char command_argument_sep: $ => prec.right(choice(repeat1(" "), ":")), // Adapt the grammar to have same behavior - _command_argument: $ => prec.right(choice( + _command_argument: $ => prec.right(PREC.PARAM, choice( seq($.command_argument_sep, optional($.generic_token)), - seq($.command_argument_sep, $.array_literal_expression) + seq($.command_argument_sep, $.array_literal_expression), + $.parenthesized_expression )), foreach_command: $ => seq(choice("%", reservedWord("foreach-object")), field("command_elements", repeat1($.script_block_expression))), @@ -614,8 +629,7 @@ module.exports = grammar({ ), // Class - - class_attribute : $ => choice(reservedWord("hidden"), reservedWord("static")), + class_attribute : $ => choice(token(reservedWord("hidden")), token(reservedWord("static"))), class_property_definition: $ => seq( optional($.attribute), @@ -650,7 +664,7 @@ module.exports = grammar({ ), class_statement: $ => seq( - reservedWord("class"), $.simple_name, optional(seq(":", $.simple_name, repeat(seq(",", $.simple_name)))), + token(reservedWord("class")), $.simple_name, optional(seq(":", $.simple_name, repeat(seq(",", $.simple_name)))), "{", repeat( choice( @@ -662,9 +676,8 @@ module.exports = grammar({ ), // Enums - enum_statement: $ => seq( - reservedWord("enum"), $.simple_name, "{", + token(reservedWord("enum")), $.simple_name, "{", repeat( seq($.enum_member, $._statement_terminator, repeat(";")) ), @@ -677,7 +690,6 @@ module.exports = grammar({ ), // Expressions - _expression: $ => $.logical_expression, logical_expression: $ => prec.left(choice( @@ -738,7 +750,7 @@ module.exports = grammar({ array_literal_expression: $ => prec.left(seq( $.unary_expression, - repeat ( + repeat ( seq( ",", $.unary_expression @@ -768,7 +780,6 @@ module.exports = grammar({ pre_increment_expression: $ => seq("++", $.unary_expression), pre_decrement_expression: $ => seq("--", $.unary_expression), - cast_expression: $ => prec(PREC.CAST, seq($.type_literal, $.unary_expression)), attributed_variable: $ => seq($.type_literal, $.variable), @@ -806,8 +817,8 @@ module.exports = grammar({ hash_literal_body: $ => repeat1($.hash_entry), hash_entry: $ => seq( - $.key_expression, - "=", + $.key_expression, + "=", $._statement, $._statement_terminator, repeat(";") ), @@ -861,7 +872,7 @@ module.exports = grammar({ choice(reservedWord("-and"), reservedWord("-or"), reservedWord("-xor")), $.bitwise_argument_expression ) )), - + bitwise_argument_expression: $ => prec.left(choice( $.comparison_argument_expression, seq ( @@ -954,7 +965,7 @@ function reservedWord(word) { } function reserved(regex) { - return token(prec(PREC.KEYWORD, new RegExp(regex))) + return prec(PREC.KEYWORD, new RegExp(regex)) } function caseInsensitive(word) { diff --git a/package.json b/package.json index 10adbd7..58da39c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-powershell", - "version": "0.24.4", + "version": "0.25.9", "description": "", "main": "bindings/node", "types": "bindings/node", @@ -21,10 +21,10 @@ "node-gyp-build": "^4.8.0" }, "peerDependencies": { - "tree-sitter": "^0.21.1" + "tree-sitter": "^0.25.0" }, "peerDependenciesMeta": { - "tree_sitter": { + "tree-sitter": { "optional": true } }, @@ -39,6 +39,7 @@ "prebuilds/**", "bindings/node/*", "queries/*", - "src/**" + "src/**", + "*.wasm" ] } diff --git a/queries/highlights.scm b/queries/highlights.scm index 7d15ee8..aefb239 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -28,8 +28,6 @@ "inlinescript" @keyword "parallel" @keyword "sequence" @keyword -"class" @keyword -"enum" @keyword "-as" @operator "-ccontains" @operator diff --git a/src/grammar.json b/src/grammar.json index d6e5f73..0bd1e6c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -30,7 +30,7 @@ "members": [ { "type": "PATTERN", - "value": "#[^\\n]*" + "value": "#[^\\r\\n]*" }, { "type": "SEQ", @@ -54,7 +54,7 @@ }, { "type": "PATTERN", - "value": "`.{1}|`\\n" + "value": "`.{1}|`\\r?\\n" } ] } @@ -538,14 +538,14 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "\\$(`.{1}|`\\n|[\\s\\\\])" + "value": "\\$(`.{1}|`\\r?\\n|[\\s\\\\])" } }, { "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "`.{1}|`\\n" + "value": "`.{1}|`\\r?\\n" } }, { @@ -589,7 +589,7 @@ "members": [ { "type": "PATTERN", - "value": "@\\\" *\\n" + "value": "@\\\" *\\r?\\n" }, { "type": "REPEAT", @@ -600,7 +600,7 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "[^\\$\\n`]+" + "value": "[^\\$\\r\\n`]+" } }, { @@ -615,14 +615,14 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "\\n+[^\\\"\\n]" + "value": "(\\r?\\n)+[^\\\"\\r\\n]" } }, { "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "\\n+\\\"[^@]" + "value": "(\\r?\\n)+\\\"[^@]" } }, { @@ -636,7 +636,7 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "`.{1}|`\\n" + "value": "`.{1}|`\\r?\\n" } } ] @@ -646,7 +646,7 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PATTERN", - "value": "\\n+\\\"@" + "value": "(\\r?\\n)+\\\"@" } } ] @@ -690,7 +690,7 @@ "members": [ { "type": "PATTERN", - "value": "@\\'\\s*\\n" + "value": "@\\'\\s*\\r?\\n" }, { "type": "REPEAT", @@ -699,22 +699,22 @@ "members": [ { "type": "PATTERN", - "value": "[^\\n]" + "value": "[^\\r\\n]" }, { "type": "PATTERN", - "value": "\\n+[^\\'\\n]" + "value": "(\\r?\\n)+[^\\'\\r\\n]" }, { "type": "PATTERN", - "value": "\\n\\'[^@]" + "value": "\\r?\\n\\'[^@]" } ] } }, { "type": "PATTERN", - "value": "\\n+\\'@" + "value": "(\\r?\\n)+\\'@" } ] } @@ -805,6 +805,10 @@ { "type": "STRING", "value": "%=" + }, + { + "type": "STRING", + "value": "-=" } ] }, @@ -932,14 +936,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][aA][sS]" - } + "type": "PATTERN", + "value": "[--][aA][sS]" } }, "named": false, @@ -948,14 +949,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][cC][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -964,14 +962,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][eE][qQ]" - } + "type": "PATTERN", + "value": "[--][cC][eE][qQ]" } }, "named": false, @@ -980,14 +975,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][gG][eE]" - } + "type": "PATTERN", + "value": "[--][cC][gG][eE]" } }, "named": false, @@ -996,14 +988,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][gG][tT]" - } + "type": "PATTERN", + "value": "[--][cC][gG][tT]" } }, "named": false, @@ -1012,14 +1001,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][lL][eE]" - } + "type": "PATTERN", + "value": "[--][cC][lL][eE]" } }, "named": false, @@ -1028,14 +1014,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][cC][lL][iI][kK][eE]" } }, "named": false, @@ -1044,14 +1027,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][lL][tT]" - } + "type": "PATTERN", + "value": "[--][cC][lL][tT]" } }, "named": false, @@ -1060,14 +1040,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][cC][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1076,14 +1053,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][nN][eE]" - } + "type": "PATTERN", + "value": "[--][cC][nN][eE]" } }, "named": false, @@ -1092,14 +1066,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][cC][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -1108,14 +1079,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][nN][oO][tT][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][cC][nN][oO][tT][lL][iI][kK][eE]" } }, "named": false, @@ -1124,14 +1092,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][nN][oO][tT][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][cC][nN][oO][tT][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1140,14 +1105,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -1156,14 +1118,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][rR][eE][pP][lL][aA][cC][eE]" - } + "type": "PATTERN", + "value": "[--][cC][rR][eE][pP][lL][aA][cC][eE]" } }, "named": false, @@ -1172,14 +1131,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][sS][pP][lL][iI][tT]" - } + "type": "PATTERN", + "value": "[--][cC][sS][pP][lL][iI][tT]" } }, "named": false, @@ -1188,14 +1144,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][eE][qQ]" - } + "type": "PATTERN", + "value": "[--][eE][qQ]" } }, "named": false, @@ -1204,14 +1157,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][gG][eE]" - } + "type": "PATTERN", + "value": "[--][gG][eE]" } }, "named": false, @@ -1220,14 +1170,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][gG][tT]" - } + "type": "PATTERN", + "value": "[--][gG][tT]" } }, "named": false, @@ -1236,14 +1183,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][iI][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -1252,14 +1196,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][eE][qQ]" - } + "type": "PATTERN", + "value": "[--][iI][eE][qQ]" } }, "named": false, @@ -1268,14 +1209,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][gG][eE]" - } + "type": "PATTERN", + "value": "[--][iI][gG][eE]" } }, "named": false, @@ -1284,14 +1222,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][gG][tT]" - } + "type": "PATTERN", + "value": "[--][iI][gG][tT]" } }, "named": false, @@ -1300,14 +1235,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][lL][eE]" - } + "type": "PATTERN", + "value": "[--][iI][lL][eE]" } }, "named": false, @@ -1316,14 +1248,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][iI][lL][iI][kK][eE]" } }, "named": false, @@ -1332,14 +1261,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][lL][tT]" - } + "type": "PATTERN", + "value": "[--][iI][lL][tT]" } }, "named": false, @@ -1348,14 +1274,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][iI][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1364,14 +1287,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][nN]" - } + "type": "PATTERN", + "value": "[--][iI][nN]" } }, "named": false, @@ -1380,14 +1300,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][nN][eE]" - } + "type": "PATTERN", + "value": "[--][iI][nN][eE]" } }, "named": false, @@ -1396,14 +1313,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][iI][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -1412,14 +1326,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][nN][oO][tT][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][iI][nN][oO][tT][lL][iI][kK][eE]" } }, "named": false, @@ -1428,14 +1339,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][nN][oO][tT][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][iI][nN][oO][tT][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1444,14 +1352,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][rR][eE][pP][lL][aA][cC][eE]" - } + "type": "PATTERN", + "value": "[--][iI][rR][eE][pP][lL][aA][cC][eE]" } }, "named": false, @@ -1460,14 +1365,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][sS]" - } + "type": "PATTERN", + "value": "[--][iI][sS]" } }, "named": false, @@ -1476,14 +1378,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][sS][nN][oO][tT]" - } + "type": "PATTERN", + "value": "[--][iI][sS][nN][oO][tT]" } }, "named": false, @@ -1492,14 +1391,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][iI][sS][pP][lL][iI][tT]" - } + "type": "PATTERN", + "value": "[--][iI][sS][pP][lL][iI][tT]" } }, "named": false, @@ -1508,14 +1404,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][jJ][oO][iI][nN]" - } + "type": "PATTERN", + "value": "[--][jJ][oO][iI][nN]" } }, "named": false, @@ -1524,14 +1417,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][lL][eE]" - } + "type": "PATTERN", + "value": "[--][lL][eE]" } }, "named": false, @@ -1540,14 +1430,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][lL][iI][kK][eE]" } }, "named": false, @@ -1556,14 +1443,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][lL][tT]" - } + "type": "PATTERN", + "value": "[--][lL][tT]" } }, "named": false, @@ -1572,14 +1456,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1588,14 +1469,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][eE]" - } + "type": "PATTERN", + "value": "[--][nN][eE]" } }, "named": false, @@ -1604,14 +1482,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" - } + "type": "PATTERN", + "value": "[--][nN][oO][tT][cC][oO][nN][tT][aA][iI][nN][sS]" } }, "named": false, @@ -1620,14 +1495,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][oO][tT][iI][nN]" - } + "type": "PATTERN", + "value": "[--][nN][oO][tT][iI][nN]" } }, "named": false, @@ -1636,14 +1508,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][oO][tT][lL][iI][kK][eE]" - } + "type": "PATTERN", + "value": "[--][nN][oO][tT][lL][iI][kK][eE]" } }, "named": false, @@ -1652,14 +1521,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][oO][tT][mM][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[--][nN][oO][tT][mM][aA][tT][cC][hH]" } }, "named": false, @@ -1668,14 +1534,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][rR][eE][pP][lL][aA][cC][eE]" - } + "type": "PATTERN", + "value": "[--][rR][eE][pP][lL][aA][cC][eE]" } }, "named": false, @@ -1684,14 +1547,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][sS][hH][lL]" - } + "type": "PATTERN", + "value": "[--][sS][hH][lL]" } }, "named": false, @@ -1700,14 +1560,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][sS][hH][rR]" - } + "type": "PATTERN", + "value": "[--][sS][hH][rR]" } }, "named": false, @@ -1716,14 +1573,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][sS][pP][lL][iI][tT]" - } + "type": "PATTERN", + "value": "[--][sS][pP][lL][iI][tT]" } }, "named": false, @@ -1734,14 +1588,11 @@ "format_operator": { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][fF]" - } + "type": "PATTERN", + "value": "[--][fF]" } }, "named": false, @@ -1787,14 +1638,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[gG][lL][oO][bB][aA][lL][::]" - } + "type": "PATTERN", + "value": "[gG][lL][oO][bB][aA][lL][::]" } }, "named": false, @@ -1803,14 +1651,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[lL][oO][cC][aA][lL][::]" - } + "type": "PATTERN", + "value": "[lL][oO][cC][aA][lL][::]" } }, "named": false, @@ -1819,14 +1664,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[pP][rR][iI][vV][aA][tT][eE][::]" - } + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE][::]" } }, "named": false, @@ -1835,14 +1677,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[sS][cC][rR][iI][pP][tT][::]" - } + "type": "PATTERN", + "value": "[sS][cC][rR][iI][pP][tT][::]" } }, "named": false, @@ -1851,14 +1690,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG][::]" - } + "type": "PATTERN", + "value": "[uU][sS][iI][nN][gG][::]" } }, "named": false, @@ -1867,14 +1703,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[wW][oO][rR][kK][fF][lL][oO][wW][::]" - } + "type": "PATTERN", + "value": "[wW][oO][rR][kK][fF][lL][oO][wW][::]" } }, "named": false, @@ -1925,14 +1758,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[gG][lL][oO][bB][aA][lL][::]" - } + "type": "PATTERN", + "value": "[gG][lL][oO][bB][aA][lL][::]" } }, "named": false, @@ -1941,14 +1771,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[lL][oO][cC][aA][lL][::]" - } + "type": "PATTERN", + "value": "[lL][oO][cC][aA][lL][::]" } }, "named": false, @@ -1957,14 +1784,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[pP][rR][iI][vV][aA][tT][eE][::]" - } + "type": "PATTERN", + "value": "[pP][rR][iI][vV][aA][tT][eE][::]" } }, "named": false, @@ -1973,14 +1797,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[sS][cC][rR][iI][pP][tT][::]" - } + "type": "PATTERN", + "value": "[sS][cC][rR][iI][pP][tT][::]" } }, "named": false, @@ -1989,14 +1810,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG][::]" - } + "type": "PATTERN", + "value": "[uU][sS][iI][nN][gG][::]" } }, "named": false, @@ -2005,14 +1823,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[wW][oO][rR][kK][fF][lL][oO][wW][::]" - } + "type": "PATTERN", + "value": "[wW][oO][rR][kK][fF][lL][oO][wW][::]" } }, "named": false, @@ -2097,7 +1912,7 @@ }, { "type": "PATTERN", - "value": "[^\\|\\n]+" + "value": "[^\\|\\r\\n]+" } ] } @@ -2174,14 +1989,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[pP][aA][rR][aA][mM]" - } + "type": "PATTERN", + "value": "[pP][aA][rR][aA][mM]" } }, "named": false, @@ -2327,14 +2139,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[dD][yY][nN][aA][mM][iI][cC][pP][aA][rR][aA][mM]" - } + "type": "PATTERN", + "value": "[dD][yY][nN][aA][mM][iI][cC][pP][aA][rR][aA][mM]" } }, "named": false, @@ -2343,14 +2152,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[bB][eE][gG][iI][nN]" - } + "type": "PATTERN", + "value": "[bB][eE][gG][iI][nN]" } }, "named": false, @@ -2359,14 +2165,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[pP][rR][oO][cC][eE][sS][sS]" - } + "type": "PATTERN", + "value": "[pP][rR][oO][cC][eE][sS][sS]" } }, "named": false, @@ -2375,14 +2178,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[eE][nN][dD]" - } + "type": "PATTERN", + "value": "[eE][nN][dD]" } }, "named": false, @@ -2543,14 +2343,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[iI][fF]" - } + "type": "PATTERN", + "value": "[iI][fF]" } }, "named": false, @@ -2628,14 +2425,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[eE][lL][sS][eE][iI][fF]" - } + "type": "PATTERN", + "value": "[eE][lL][sS][eE][iI][fF]" } }, "named": false, @@ -2669,14 +2463,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[eE][lL][sS][eE]" - } + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" } }, "named": false, @@ -2719,14 +2510,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[sS][wW][iI][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[sS][wW][iI][tT][cC][hH]" } }, "named": false, @@ -2766,15 +2554,12 @@ "members": [ { "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][rR][eE][gG][eE][xX]" - } + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[--][rR][eE][gG][eE][xX]" } }, "named": false, @@ -2783,14 +2568,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][wW][iI][lL][dD][cC][aA][rR][dD]" - } + "type": "PATTERN", + "value": "[--][wW][iI][lL][dD][cC][aA][rR][dD]" } }, "named": false, @@ -2799,14 +2581,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][eE][xX][aA][cC][tT]" - } + "type": "PATTERN", + "value": "[--][eE][xX][aA][cC][tT]" } }, "named": false, @@ -2815,14 +2594,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][cC][aA][sS][eE][sS][eE][nN][sS][iI][tT][iI][vV][eE]" - } + "type": "PATTERN", + "value": "[--][cC][aA][sS][eE][sS][eE][nN][sS][iI][tT][iI][vV][eE]" } }, "named": false, @@ -2831,14 +2607,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][pP][aA][rR][aA][lL][lL][eE][lL]" - } + "type": "PATTERN", + "value": "[--][pP][aA][rR][aA][lL][lL][eE][lL]" } }, "named": false, @@ -2872,14 +2645,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][fF][iI][lL][eE]" - } + "type": "PATTERN", + "value": "[--][fF][iI][lL][eE]" } }, "named": false, @@ -2981,14 +2751,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][oO][rR][eE][aA][cC][hH]" - } + "type": "PATTERN", + "value": "[fF][oO][rR][eE][aA][cC][hH]" } }, "named": false, @@ -3017,14 +2784,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[iI][nN]" - } + "type": "PATTERN", + "value": "[iI][nN]" } }, "named": false, @@ -3050,14 +2814,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][pP][aA][rR][aA][lL][lL][eE][lL]" - } + "type": "PATTERN", + "value": "[--][pP][aA][rR][aA][lL][lL][eE][lL]" } }, "named": false, @@ -3071,14 +2832,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][oO][rR]" - } + "type": "PATTERN", + "value": "[fF][oO][rR]" } }, "named": false, @@ -3133,8 +2891,11 @@ "value": ";" }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, @@ -3177,8 +2938,11 @@ "value": ";" }, { - "type": "STRING", - "value": "\n" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } } ] }, @@ -3256,14 +3020,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[wW][hH][iI][lL][eE]" - } + "type": "PATTERN", + "value": "[wW][hH][iI][lL][eE]" } }, "named": false, @@ -3301,14 +3062,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[dD][oO]" - } + "type": "PATTERN", + "value": "[dD][oO]" } }, "named": false, @@ -3324,14 +3082,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[wW][hH][iI][lL][eE]" - } + "type": "PATTERN", + "value": "[wW][hH][iI][lL][eE]" } }, "named": false, @@ -3340,14 +3095,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[uU][nN][tT][iI][lL]" - } + "type": "PATTERN", + "value": "[uU][nN][tT][iI][lL]" } }, "named": false, @@ -3382,14 +3134,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" - } + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" } }, "named": false, @@ -3398,14 +3147,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][iI][lL][tT][eE][rR]" - } + "type": "PATTERN", + "value": "[fF][iI][lL][tT][eE][rR]" } }, "named": false, @@ -3414,14 +3160,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[wW][oO][rR][kK][fF][lL][oO][wW]" - } + "type": "PATTERN", + "value": "[wW][oO][rR][kK][fF][lL][oO][wW]" } }, "named": false, @@ -3505,14 +3248,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[bB][rR][eE][aA][kK]" - } + "type": "PATTERN", + "value": "[bB][rR][eE][aA][kK]" } }, "named": false, @@ -3538,14 +3278,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[cC][oO][nN][tT][iI][nN][uU][eE]" - } + "type": "PATTERN", + "value": "[cC][oO][nN][tT][iI][nN][uU][eE]" } }, "named": false, @@ -3571,14 +3308,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[tT][hH][rR][oO][wW]" - } + "type": "PATTERN", + "value": "[tT][hH][rR][oO][wW]" } }, "named": false, @@ -3604,14 +3338,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[rR][eE][tT][uU][rR][nN]" - } + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN]" } }, "named": false, @@ -3637,14 +3368,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[eE][xX][iI][tT]" - } + "type": "PATTERN", + "value": "[eE][xX][iI][tT]" } }, "named": false, @@ -3701,14 +3429,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[tT][rR][aA][pP]" - } + "type": "PATTERN", + "value": "[tT][rR][aA][pP]" } }, "named": false, @@ -3738,14 +3463,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[tT][rR][yY]" - } + "type": "PATTERN", + "value": "[tT][rR][yY]" } }, "named": false, @@ -3808,14 +3530,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[cC][aA][tT][cC][hH]" - } + "type": "PATTERN", + "value": "[cC][aA][tT][cC][hH]" } }, "named": false, @@ -3870,14 +3589,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][iI][nN][aA][lL][lL][yY]" - } + "type": "PATTERN", + "value": "[fF][iI][nN][aA][lL][lL][yY]" } }, "named": false, @@ -3895,22 +3611,27 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[dD][aA][tT][aA]" - } + "type": "PATTERN", + "value": "[dD][aA][tT][aA]" } }, "named": false, "value": "data" }, { - "type": "SYMBOL", - "name": "data_name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "data_name" + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -3940,14 +3661,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][sS][uU][pP][pP][oO][rR][tT][eE][dD][cC][oO][mM][mM][aA][nN][dD]" - } + "type": "PATTERN", + "value": "[--][sS][uU][pP][pP][oO][rR][tT][eE][dD][cC][oO][mM][mM][aA][nN][dD]" } }, "named": false, @@ -3994,14 +3712,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[iI][nN][lL][iI][nN][eE][sS][cC][rR][iI][pP][tT]" - } + "type": "PATTERN", + "value": "[iI][nN][lL][iI][nN][eE][sS][cC][rR][iI][pP][tT]" } }, "named": false, @@ -4019,14 +3734,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[pP][aA][rR][aA][lL][lL][eE][lL]" - } + "type": "PATTERN", + "value": "[pP][aA][rR][aA][lL][lL][eE][lL]" } }, "named": false, @@ -4044,14 +3756,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[sS][eE][qQ][uU][eE][nN][cC][eE]" - } + "type": "PATTERN", + "value": "[sS][eE][qQ][uU][eE][nN][cC][eE]" } }, "named": false, @@ -4281,11 +3990,11 @@ }, { "type": "PATTERN", - "value": "\\$`(.{1}|`\\n)" + "value": "\\$`(.{1}|`\\r?\\n)" }, { "type": "PATTERN", - "value": "`.{1}|`\\n" + "value": "`.{1}|`\\r?\\n" }, { "type": "STRING", @@ -4297,102 +4006,139 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": "$" - } - }, - { - "type": "STRING", - "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": "$" + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "command_name": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^\\{\\}\\(\\);,\\|\\&`\"'\\s\\r\\n\\[\\]\\+\\-\\*\\/\\$@<\\!%]+" + }, + { + "type": "PATTERN", + "value": "[bB][rR][eE][aA][kK][--]" + }, + { + "type": "PATTERN", + "value": "[cC][oO][nN][tT][iI][nN][uU][eE][--]" + }, + { + "type": "PATTERN", + "value": "[tT][hH][rR][oO][wW][--]" + }, + { + "type": "PATTERN", + "value": "[rR][eE][tT][uU][rR][nN][--]" + }, + { + "type": "PATTERN", + "value": "[eE][xX][iI][tT][--]" + }, + { + "type": "PATTERN", + "value": "[tT][rR][yY][--]" + }, + { + "type": "PATTERN", + "value": "[tT][rR][aA][pP][--]" + }, + { + "type": "PATTERN", + "value": "[iI][fF][--]" + }, + { + "type": "PATTERN", + "value": "[fF][uU][nN][cC][tT][iI][oO][nN][--]" + }, + { + "type": "PATTERN", + "value": "[cC][lL][aA][sS][sS][--]" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\{\\}\\(\\);,\\|\\&\"'\\s\\r\\n]+" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "\"" + } + }, + { + "type": "SYMBOL", + "name": "_expandable_string_literal_immediate" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "\"\"" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "''" + } + } + ] + } } ] }, - "command_name": { - "type": "PREC_RIGHT", - "value": 0, + "path_command_name_token": { + "type": "PATTERN", + "value": "[0-9a-zA-Z_?\\-\\.\\\\]+" + }, + "path_command_name": { + "type": "REPEAT1", "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "PATTERN", - "value": "[^\\{\\}\\(\\);,\\|\\&`\"'\\s\\n\\[\\]\\+\\-\\*\\/\\$@<\\!%]+" + "type": "SYMBOL", + "name": "path_command_name_token" }, { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "[^\\{\\}\\(\\);,\\|\\&\"'\\s\\n]+" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\"" - } - }, - { - "type": "SYMBOL", - "name": "_expandable_string_literal_immediate" - } - ] - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\"\"" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "''" - } - } - ] - } + "type": "SYMBOL", + "name": "variable" } ] } }, - "path_command_name_token": { - "type": "PATTERN", - "value": "[0-9a-zA-Z_?\\-\\.\\\\]+" - }, - "path_command_name": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "path_command_name_token" - }, - { - "type": "SYMBOL", - "name": "variable" - } - ] - } - } - }, "command_name_expr": { "type": "CHOICE", "members": [ @@ -4422,46 +4168,50 @@ } }, "_command_element": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "command_parameter" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_command_argument" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument_list" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "redirection" - }, - { - "type": "SYMBOL", - "name": "stop_parsing" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "command_parameter" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_command_argument" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "redirection" + }, + { + "type": "SYMBOL", + "name": "stop_parsing" + } + ] + } }, "stop_parsing": { "type": "PATTERN", - "value": "--%[^\\n]*" + "value": "--%[^\\r\\n]*" }, "command_argument_sep": { "type": "PREC_RIGHT", @@ -4485,7 +4235,7 @@ }, "_command_argument": { "type": "PREC_RIGHT", - "value": 0, + "value": 6, "content": { "type": "CHOICE", "members": [ @@ -4522,6 +4272,10 @@ "name": "array_literal_expression" } ] + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" } ] } @@ -4539,14 +4293,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[fF][oO][rR][eE][aA][cC][hH][--][oO][bB][jJ][eE][cC][tT]" - } + "type": "PATTERN", + "value": "[fF][oO][rR][eE][aA][cC][hH][--][oO][bB][jJ][eE][cC][tT]" } }, "named": false, @@ -4626,9 +4377,9 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "TOKEN", + "type": "ALIAS", "content": { "type": "PREC", "value": 1, @@ -4636,15 +4387,15 @@ "type": "PATTERN", "value": "[hH][iI][dD][dD][eE][nN]" } - } - }, - "named": false, - "value": "hidden" + }, + "named": false, + "value": "hidden" + } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "TOKEN", + "type": "ALIAS", "content": { "type": "PREC", "value": 1, @@ -4652,10 +4403,10 @@ "type": "PATTERN", "value": "[sS][tT][aA][tT][iI][cC]" } - } - }, - "named": false, - "value": "static" + }, + "named": false, + "value": "static" + } } ] }, @@ -4850,9 +4601,9 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "TOKEN", + "type": "ALIAS", "content": { "type": "PREC", "value": 1, @@ -4860,10 +4611,10 @@ "type": "PATTERN", "value": "[cC][lL][aA][sS][sS]" } - } - }, - "named": false, - "value": "class" + }, + "named": false, + "value": "class" + } }, { "type": "SYMBOL", @@ -4952,9 +4703,9 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "TOKEN", + "type": "ALIAS", "content": { "type": "PREC", "value": 1, @@ -4962,10 +4713,10 @@ "type": "PATTERN", "value": "[eE][nN][uU][mM]" } - } - }, - "named": false, - "value": "enum" + }, + "named": false, + "value": "enum" + } }, { "type": "SYMBOL", @@ -5061,14 +4812,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][aA][nN][dD]" - } + "type": "PATTERN", + "value": "[--][aA][nN][dD]" } }, "named": false, @@ -5077,14 +4825,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][oO][rR]" - } + "type": "PATTERN", + "value": "[--][oO][rR]" } }, "named": false, @@ -5093,14 +4838,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][xX][oO][rR]" - } + "type": "PATTERN", + "value": "[--][xX][oO][rR]" } }, "named": false, @@ -5140,14 +4882,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][bB][aA][nN][dD]" - } + "type": "PATTERN", + "value": "[--][bB][aA][nN][dD]" } }, "named": false, @@ -5156,14 +4895,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][bB][oO][rR]" - } + "type": "PATTERN", + "value": "[--][bB][oO][rR]" } }, "named": false, @@ -5172,14 +4908,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][bB][xX][oO][rR]" - } + "type": "PATTERN", + "value": "[--][bB][xX][oO][rR]" } }, "named": false, @@ -5440,14 +5173,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][nN][oO][tT]" - } + "type": "PATTERN", + "value": "[--][nN][oO][tT]" } }, "named": false, @@ -5478,14 +5208,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][bB][nN][oO][tT]" - } + "type": "PATTERN", + "value": "[--][bB][nN][oO][tT]" } }, "named": false, @@ -5541,14 +5268,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][sS][pP][lL][iI][tT]" - } + "type": "PATTERN", + "value": "[--][sS][pP][lL][iI][tT]" } }, "named": false, @@ -5566,14 +5290,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][jJ][oO][iI][nN]" - } + "type": "PATTERN", + "value": "[--][jJ][oO][iI][nN]" } }, "named": false, @@ -6078,14 +5799,11 @@ "content": { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[..][fF][oO][rR][eE][aA][cC][hH]" - } + "type": "PATTERN", + "value": "[..][fF][oO][rR][eE][aA][cC][hH]" } }, "named": false, @@ -6183,14 +5901,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][aA][nN][dD]" - } + "type": "PATTERN", + "value": "[--][aA][nN][dD]" } }, "named": false, @@ -6199,14 +5914,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][oO][rR]" - } + "type": "PATTERN", + "value": "[--][oO][rR]" } }, "named": false, @@ -6215,14 +5927,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][xX][oO][rR]" - } + "type": "PATTERN", + "value": "[--][xX][oO][rR]" } }, "named": false, @@ -6262,14 +5971,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][aA][nN][dD]" - } + "type": "PATTERN", + "value": "[--][aA][nN][dD]" } }, "named": false, @@ -6278,14 +5984,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][oO][rR]" - } + "type": "PATTERN", + "value": "[--][oO][rR]" } }, "named": false, @@ -6294,14 +5997,11 @@ { "type": "ALIAS", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 1, "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[--][xX][oO][rR]" - } + "type": "PATTERN", + "value": "[--][xX][oO][rR]" } }, "named": false, @@ -6729,6 +6429,10 @@ "type": "PATTERN", "value": "`\\n" }, + { + "type": "PATTERN", + "value": "`\\r\\n" + }, { "type": "PATTERN", "value": "[\\uFEFF\\u2060\\u200B\\u00A0]" diff --git a/src/node-types.json b/src/node-types.json index 811f663..e8ee169 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -639,6 +639,10 @@ "type": "generic_token", "named": true }, + { + "type": "parenthesized_expression", + "named": true + }, { "type": "redirection", "named": true @@ -3347,10 +3351,6 @@ ] } }, - { - "type": "\n", - "named": false - }, { "type": " ", "named": false @@ -3471,6 +3471,10 @@ "type": "--%", "named": false }, + { + "type": "-=", + "named": false + }, { "type": "-and", "named": false @@ -3895,10 +3899,6 @@ "type": "catch", "named": false }, - { - "type": "class", - "named": false - }, { "type": "command_parameter", "named": true @@ -3939,10 +3939,6 @@ "type": "end", "named": false }, - { - "type": "enum", - "named": false - }, { "type": "exit", "named": false @@ -3979,10 +3975,6 @@ "type": "hexadecimal_integer_literal", "named": true }, - { - "type": "hidden", - "named": false - }, { "type": "if", "named": false @@ -4031,10 +4023,6 @@ "type": "simple_name", "named": true }, - { - "type": "static", - "named": false - }, { "type": "stop_parsing", "named": true diff --git a/src/parser.c b/src/parser.c index de9c41e..b95154e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2142 -#define LARGE_STATE_COUNT 379 -#define SYMBOL_COUNT 395 +#define STATE_COUNT 2116 +#define LARGE_STATE_COUNT 493 +#define SYMBOL_COUNT 406 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 214 +#define TOKEN_COUNT 225 #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 14 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -52,372 +52,383 @@ enum ts_symbol_identifiers { anon_sym_STAR_EQ = 26, anon_sym_SLASH_EQ = 27, anon_sym_PERCENT_EQ = 28, - anon_sym_GT = 29, - anon_sym_GT_GT = 30, - anon_sym_2_GT = 31, - anon_sym_2_GT_GT = 32, - anon_sym_3_GT = 33, - anon_sym_3_GT_GT = 34, - anon_sym_4_GT = 35, - anon_sym_4_GT_GT = 36, - anon_sym_5_GT = 37, - anon_sym_5_GT_GT = 38, - anon_sym_6_GT = 39, - anon_sym_6_GT_GT = 40, - anon_sym_STAR_GT = 41, - anon_sym_STAR_GT_GT = 42, - anon_sym_LT = 43, - anon_sym_STAR_GT_AMP1 = 44, - anon_sym_2_GT_AMP1 = 45, - anon_sym_3_GT_AMP1 = 46, - anon_sym_4_GT_AMP1 = 47, - anon_sym_5_GT_AMP1 = 48, - anon_sym_6_GT_AMP1 = 49, - anon_sym_STAR_GT_AMP2 = 50, - anon_sym_1_GT_AMP2 = 51, - anon_sym_3_GT_AMP2 = 52, - anon_sym_4_GT_AMP2 = 53, - anon_sym_5_GT_AMP2 = 54, - anon_sym_6_GT_AMP2 = 55, - aux_sym_comparison_operator_token1 = 56, - aux_sym_comparison_operator_token2 = 57, - aux_sym_comparison_operator_token3 = 58, - aux_sym_comparison_operator_token4 = 59, - aux_sym_comparison_operator_token5 = 60, - aux_sym_comparison_operator_token6 = 61, - aux_sym_comparison_operator_token7 = 62, - aux_sym_comparison_operator_token8 = 63, - aux_sym_comparison_operator_token9 = 64, - aux_sym_comparison_operator_token10 = 65, - aux_sym_comparison_operator_token11 = 66, - aux_sym_comparison_operator_token12 = 67, - aux_sym_comparison_operator_token13 = 68, - aux_sym_comparison_operator_token14 = 69, - aux_sym_comparison_operator_token15 = 70, - aux_sym_comparison_operator_token16 = 71, - aux_sym_comparison_operator_token17 = 72, - aux_sym_comparison_operator_token18 = 73, - aux_sym_comparison_operator_token19 = 74, - aux_sym_comparison_operator_token20 = 75, - aux_sym_comparison_operator_token21 = 76, - aux_sym_comparison_operator_token22 = 77, - aux_sym_comparison_operator_token23 = 78, - aux_sym_comparison_operator_token24 = 79, - aux_sym_comparison_operator_token25 = 80, - aux_sym_comparison_operator_token26 = 81, - aux_sym_comparison_operator_token27 = 82, - aux_sym_comparison_operator_token28 = 83, - aux_sym_comparison_operator_token29 = 84, - aux_sym_comparison_operator_token30 = 85, - aux_sym_comparison_operator_token31 = 86, - aux_sym_comparison_operator_token32 = 87, - aux_sym_comparison_operator_token33 = 88, - aux_sym_comparison_operator_token34 = 89, - aux_sym_comparison_operator_token35 = 90, - aux_sym_comparison_operator_token36 = 91, - aux_sym_comparison_operator_token37 = 92, - aux_sym_comparison_operator_token38 = 93, - aux_sym_comparison_operator_token39 = 94, - aux_sym_comparison_operator_token40 = 95, - aux_sym_comparison_operator_token41 = 96, - aux_sym_comparison_operator_token42 = 97, - aux_sym_comparison_operator_token43 = 98, - aux_sym_comparison_operator_token44 = 99, - aux_sym_comparison_operator_token45 = 100, - aux_sym_comparison_operator_token46 = 101, - aux_sym_comparison_operator_token47 = 102, - aux_sym_comparison_operator_token48 = 103, - aux_sym_comparison_operator_token49 = 104, - aux_sym_comparison_operator_token50 = 105, - aux_sym_format_operator_token1 = 106, - anon_sym_DOLLAR_DOLLAR = 107, - anon_sym_DOLLAR_CARET = 108, - anon_sym_DOLLAR_QMARK = 109, - anon_sym_DOLLAR_ = 110, - aux_sym_variable_token1 = 111, - aux_sym_variable_token2 = 112, - sym_braced_variable = 113, - sym_generic_token = 114, - sym__command_token = 115, - sym_command_parameter = 116, - aux_sym__verbatim_command_argument_chars_token1 = 117, - aux_sym__verbatim_command_argument_chars_token2 = 118, - aux_sym__verbatim_command_argument_chars_token3 = 119, - anon_sym_SEMI = 120, - aux_sym_param_block_token1 = 121, - anon_sym_LPAREN = 122, - anon_sym_RPAREN = 123, - anon_sym_COMMA = 124, - aux_sym_block_name_token1 = 125, - aux_sym_block_name_token2 = 126, - aux_sym_block_name_token3 = 127, - aux_sym_block_name_token4 = 128, - anon_sym_LBRACE = 129, - anon_sym_RBRACE = 130, - aux_sym_if_statement_token1 = 131, - aux_sym_elseif_clause_token1 = 132, - aux_sym_else_clause_token1 = 133, - aux_sym_switch_statement_token1 = 134, - aux_sym_switch_parameter_token1 = 135, - aux_sym_switch_parameter_token2 = 136, - aux_sym_switch_parameter_token3 = 137, - aux_sym_switch_parameter_token4 = 138, - aux_sym_switch_parameter_token5 = 139, - aux_sym_switch_condition_token1 = 140, - aux_sym_foreach_statement_token1 = 141, - aux_sym_foreach_statement_token2 = 142, - aux_sym_for_statement_token1 = 143, - anon_sym_LF = 144, - aux_sym_while_statement_token1 = 145, - aux_sym_do_statement_token1 = 146, - aux_sym_do_statement_token2 = 147, - aux_sym_function_statement_token1 = 148, - aux_sym_function_statement_token2 = 149, - aux_sym_function_statement_token3 = 150, - aux_sym_flow_control_statement_token1 = 151, - aux_sym_flow_control_statement_token2 = 152, - aux_sym_flow_control_statement_token3 = 153, - aux_sym_flow_control_statement_token4 = 154, - aux_sym_flow_control_statement_token5 = 155, - sym_label = 156, - aux_sym_trap_statement_token1 = 157, - aux_sym_try_statement_token1 = 158, - aux_sym_catch_clause_token1 = 159, - aux_sym_finally_clause_token1 = 160, - aux_sym_data_statement_token1 = 161, - aux_sym_data_commands_allowed_token1 = 162, - aux_sym_inlinescript_statement_token1 = 163, - aux_sym_parallel_statement_token1 = 164, - aux_sym_sequence_statement_token1 = 165, - anon_sym_PIPE = 166, - anon_sym_AMP = 167, - aux_sym__expandable_string_literal_immediate_token1 = 168, - aux_sym__expandable_string_literal_immediate_token2 = 169, - aux_sym__expandable_string_literal_immediate_token3 = 170, - anon_sym_DQUOTE_DQUOTE2 = 171, - anon_sym_DOLLAR2 = 172, - anon_sym_DQUOTE = 173, - aux_sym_command_name_token1 = 174, - aux_sym_command_name_token2 = 175, - anon_sym_DQUOTE2 = 176, - anon_sym_SQUOTE_SQUOTE = 177, - sym_path_command_name_token = 178, - sym_stop_parsing = 179, - anon_sym_SPACE = 180, - anon_sym_COLON = 181, - anon_sym_PERCENT = 182, - aux_sym_foreach_command_token1 = 183, - anon_sym_DASH_DASH_PERCENT = 184, - aux_sym_class_attribute_token1 = 185, - aux_sym_class_attribute_token2 = 186, - aux_sym_class_statement_token1 = 187, - aux_sym_enum_statement_token1 = 188, - aux_sym_logical_expression_token1 = 189, - aux_sym_logical_expression_token2 = 190, - aux_sym_logical_expression_token3 = 191, - aux_sym_bitwise_expression_token1 = 192, - aux_sym_bitwise_expression_token2 = 193, - aux_sym_bitwise_expression_token3 = 194, - anon_sym_PLUS = 195, - anon_sym_DASH = 196, - anon_sym_SLASH = 197, - anon_sym_BSLASH = 198, - anon_sym_STAR = 199, - anon_sym_DOT_DOT = 200, - aux_sym_expression_with_unary_operator_token1 = 201, - anon_sym_BANG = 202, - aux_sym_expression_with_unary_operator_token2 = 203, - anon_sym_PLUS_PLUS = 204, - anon_sym_DASH_DASH = 205, - anon_sym_DOLLAR_LPAREN = 206, - anon_sym_AT_LPAREN = 207, - anon_sym_AT_LBRACE = 208, - anon_sym_DOT2 = 209, - anon_sym_COLON_COLON = 210, - anon_sym_RBRACK = 211, - aux_sym_invokation_foreach_expression_token1 = 212, - sym__statement_terminator = 213, - sym_program = 214, - sym__literal = 215, - sym_integer_literal = 216, - sym_string_literal = 217, - sym_expandable_string_literal = 218, - sym_expandable_here_string_literal = 219, - sym_type_name = 220, - sym_array_type_name = 221, - sym_generic_type_name = 222, - sym_assignement_operator = 223, - sym_file_redirection_operator = 224, - sym_merging_redirection_operator = 225, - sym_comparison_operator = 226, - sym_format_operator = 227, - sym_variable = 228, - aux_sym__verbatim_command_argument_chars = 229, - sym_script_block = 230, - sym_param_block = 231, - sym_parameter_list = 232, - sym_script_parameter = 233, - sym_script_parameter_default = 234, - sym_script_block_body = 235, - sym_named_block_list = 236, - sym_named_block = 237, - sym_block_name = 238, - sym_statement_block = 239, - sym_statement_list = 240, - sym__statement = 241, - sym_empty_statement = 242, - sym_if_statement = 243, - sym_elseif_clauses = 244, - sym_elseif_clause = 245, - sym_else_clause = 246, - sym__labeled_statement = 247, - sym_switch_statement = 248, - sym_switch_parameters = 249, - sym_switch_parameter = 250, - sym_switch_condition = 251, - sym_switch_filename = 252, - sym_switch_body = 253, - sym_switch_clauses = 254, - sym_switch_clause = 255, - sym_switch_clause_condition = 256, - sym_foreach_statement = 257, - sym_foreach_parameter = 258, - sym_for_statement = 259, - sym_for_initializer = 260, - sym_for_condition = 261, - sym_for_iterator = 262, - sym_while_statement = 263, - sym_while_condition = 264, - sym_do_statement = 265, - sym_function_statement = 266, - sym_function_name = 267, - sym_function_parameter_declaration = 268, - sym_flow_control_statement = 269, - sym_label_expression = 270, - sym_trap_statement = 271, - sym_try_statement = 272, - sym_catch_clauses = 273, - sym_catch_clause = 274, - sym_catch_type_list = 275, - sym_finally_clause = 276, - sym_data_statement = 277, - sym_data_name = 278, - sym_data_commands_allowed = 279, - sym_data_commands_list = 280, - sym_data_command = 281, - sym_inlinescript_statement = 282, - sym_parallel_statement = 283, - sym_sequence_statement = 284, - sym_pipeline = 285, - sym_left_assignment_expression = 286, - sym_assignment_expression = 287, - aux_sym__pipeline_tail = 288, - sym_command = 289, - sym_command_invokation_operator = 290, - sym__expandable_string_literal_immediate = 291, - sym_command_name = 292, - sym_path_command_name = 293, - sym_command_name_expr = 294, - sym_command_elements = 295, - sym__command_element = 296, - sym_command_argument_sep = 297, - sym__command_argument = 298, - sym_foreach_command = 299, - sym_verbatim_command_argument = 300, - sym_redirections = 301, - sym_redirection = 302, - sym_redirected_file_name = 303, - sym_class_attribute = 304, - sym_class_property_definition = 305, - sym_class_method_parameter = 306, - sym_class_method_parameter_list = 307, - sym_class_method_definition = 308, - sym_class_statement = 309, - sym_enum_statement = 310, - sym_enum_member = 311, - sym__expression = 312, - sym_logical_expression = 313, - sym_bitwise_expression = 314, - sym_comparison_expression = 315, - sym_additive_expression = 316, - sym_multiplicative_expression = 317, - sym_format_expression = 318, - sym_range_expression = 319, - sym_array_literal_expression = 320, - sym_unary_expression = 321, - sym_expression_with_unary_operator = 322, - sym_pre_increment_expression = 323, - sym_pre_decrement_expression = 324, - sym_cast_expression = 325, - sym__primary_expression = 326, - sym__value = 327, - sym_parenthesized_expression = 328, - sym_sub_expression = 329, - sym_array_expression = 330, - sym_script_block_expression = 331, - sym_hash_literal_expression = 332, - sym_hash_literal_body = 333, - sym_hash_entry = 334, - sym_key_expression = 335, - sym_post_increment_expression = 336, - sym_post_decrement_expression = 337, - sym_member_access = 338, - sym_member_name = 339, - sym_element_access = 340, - sym_invokation_expression = 341, - sym_invokation_foreach_expression = 342, - sym_argument_list = 343, - sym_argument_expression_list = 344, - sym_argument_expression = 345, - sym_logical_argument_expression = 346, - sym_bitwise_argument_expression = 347, - sym_comparison_argument_expression = 348, - sym_additive_argument_expression = 349, - sym_multiplicative_argument_expression = 350, - sym_format_argument_expression = 351, - sym_range_argument_expression = 352, - sym_type_literal = 353, - sym_type_spec = 354, - sym_dimension = 355, - sym_generic_type_arguments = 356, - sym_attribute_list = 357, - sym_attribute = 358, - sym_attribute_name = 359, - sym_attribute_arguments = 360, - sym_attribute_argument = 361, - aux_sym_expandable_string_literal_repeat1 = 362, - aux_sym_expandable_string_literal_repeat2 = 363, - aux_sym_expandable_here_string_literal_repeat1 = 364, - aux_sym_script_block_repeat1 = 365, - aux_sym_parameter_list_repeat1 = 366, - aux_sym_named_block_list_repeat1 = 367, - aux_sym_statement_list_repeat1 = 368, - aux_sym_elseif_clauses_repeat1 = 369, - aux_sym_switch_parameters_repeat1 = 370, - aux_sym_switch_clauses_repeat1 = 371, - aux_sym_catch_clauses_repeat1 = 372, - aux_sym_catch_type_list_repeat1 = 373, - aux_sym_data_commands_list_repeat1 = 374, - aux_sym__expandable_string_literal_immediate_repeat1 = 375, - aux_sym__expandable_string_literal_immediate_repeat2 = 376, - aux_sym_command_name_repeat1 = 377, - aux_sym_path_command_name_repeat1 = 378, - aux_sym_command_elements_repeat1 = 379, - aux_sym_command_argument_sep_repeat1 = 380, - aux_sym_foreach_command_repeat1 = 381, - aux_sym_redirections_repeat1 = 382, - aux_sym_class_property_definition_repeat1 = 383, - aux_sym_class_method_parameter_list_repeat1 = 384, - aux_sym_class_statement_repeat1 = 385, - aux_sym_class_statement_repeat2 = 386, - aux_sym_enum_statement_repeat1 = 387, - aux_sym_array_literal_expression_repeat1 = 388, - aux_sym_hash_literal_body_repeat1 = 389, - aux_sym_argument_expression_list_repeat1 = 390, - aux_sym_dimension_repeat1 = 391, - aux_sym_generic_type_arguments_repeat1 = 392, - aux_sym_attribute_list_repeat1 = 393, - aux_sym_attribute_arguments_repeat1 = 394, + anon_sym_DASH_EQ = 29, + anon_sym_GT = 30, + anon_sym_GT_GT = 31, + anon_sym_2_GT = 32, + anon_sym_2_GT_GT = 33, + anon_sym_3_GT = 34, + anon_sym_3_GT_GT = 35, + anon_sym_4_GT = 36, + anon_sym_4_GT_GT = 37, + anon_sym_5_GT = 38, + anon_sym_5_GT_GT = 39, + anon_sym_6_GT = 40, + anon_sym_6_GT_GT = 41, + anon_sym_STAR_GT = 42, + anon_sym_STAR_GT_GT = 43, + anon_sym_LT = 44, + anon_sym_STAR_GT_AMP1 = 45, + anon_sym_2_GT_AMP1 = 46, + anon_sym_3_GT_AMP1 = 47, + anon_sym_4_GT_AMP1 = 48, + anon_sym_5_GT_AMP1 = 49, + anon_sym_6_GT_AMP1 = 50, + anon_sym_STAR_GT_AMP2 = 51, + anon_sym_1_GT_AMP2 = 52, + anon_sym_3_GT_AMP2 = 53, + anon_sym_4_GT_AMP2 = 54, + anon_sym_5_GT_AMP2 = 55, + anon_sym_6_GT_AMP2 = 56, + aux_sym_comparison_operator_token1 = 57, + aux_sym_comparison_operator_token2 = 58, + aux_sym_comparison_operator_token3 = 59, + aux_sym_comparison_operator_token4 = 60, + aux_sym_comparison_operator_token5 = 61, + aux_sym_comparison_operator_token6 = 62, + aux_sym_comparison_operator_token7 = 63, + aux_sym_comparison_operator_token8 = 64, + aux_sym_comparison_operator_token9 = 65, + aux_sym_comparison_operator_token10 = 66, + aux_sym_comparison_operator_token11 = 67, + aux_sym_comparison_operator_token12 = 68, + aux_sym_comparison_operator_token13 = 69, + aux_sym_comparison_operator_token14 = 70, + aux_sym_comparison_operator_token15 = 71, + aux_sym_comparison_operator_token16 = 72, + aux_sym_comparison_operator_token17 = 73, + aux_sym_comparison_operator_token18 = 74, + aux_sym_comparison_operator_token19 = 75, + aux_sym_comparison_operator_token20 = 76, + aux_sym_comparison_operator_token21 = 77, + aux_sym_comparison_operator_token22 = 78, + aux_sym_comparison_operator_token23 = 79, + aux_sym_comparison_operator_token24 = 80, + aux_sym_comparison_operator_token25 = 81, + aux_sym_comparison_operator_token26 = 82, + aux_sym_comparison_operator_token27 = 83, + aux_sym_comparison_operator_token28 = 84, + aux_sym_comparison_operator_token29 = 85, + aux_sym_comparison_operator_token30 = 86, + aux_sym_comparison_operator_token31 = 87, + aux_sym_comparison_operator_token32 = 88, + aux_sym_comparison_operator_token33 = 89, + aux_sym_comparison_operator_token34 = 90, + aux_sym_comparison_operator_token35 = 91, + aux_sym_comparison_operator_token36 = 92, + aux_sym_comparison_operator_token37 = 93, + aux_sym_comparison_operator_token38 = 94, + aux_sym_comparison_operator_token39 = 95, + aux_sym_comparison_operator_token40 = 96, + aux_sym_comparison_operator_token41 = 97, + aux_sym_comparison_operator_token42 = 98, + aux_sym_comparison_operator_token43 = 99, + aux_sym_comparison_operator_token44 = 100, + aux_sym_comparison_operator_token45 = 101, + aux_sym_comparison_operator_token46 = 102, + aux_sym_comparison_operator_token47 = 103, + aux_sym_comparison_operator_token48 = 104, + aux_sym_comparison_operator_token49 = 105, + aux_sym_comparison_operator_token50 = 106, + aux_sym_format_operator_token1 = 107, + anon_sym_DOLLAR_DOLLAR = 108, + anon_sym_DOLLAR_CARET = 109, + anon_sym_DOLLAR_QMARK = 110, + anon_sym_DOLLAR_ = 111, + aux_sym_variable_token1 = 112, + aux_sym_variable_token2 = 113, + sym_braced_variable = 114, + sym_generic_token = 115, + sym__command_token = 116, + sym_command_parameter = 117, + aux_sym__verbatim_command_argument_chars_token1 = 118, + aux_sym__verbatim_command_argument_chars_token2 = 119, + aux_sym__verbatim_command_argument_chars_token3 = 120, + anon_sym_SEMI = 121, + aux_sym_param_block_token1 = 122, + anon_sym_LPAREN = 123, + anon_sym_RPAREN = 124, + anon_sym_COMMA = 125, + aux_sym_block_name_token1 = 126, + aux_sym_block_name_token2 = 127, + aux_sym_block_name_token3 = 128, + aux_sym_block_name_token4 = 129, + anon_sym_LBRACE = 130, + anon_sym_RBRACE = 131, + aux_sym_if_statement_token1 = 132, + aux_sym_elseif_clause_token1 = 133, + aux_sym_else_clause_token1 = 134, + aux_sym_switch_statement_token1 = 135, + aux_sym_switch_parameter_token1 = 136, + aux_sym_switch_parameter_token2 = 137, + aux_sym_switch_parameter_token3 = 138, + aux_sym_switch_parameter_token4 = 139, + aux_sym_switch_parameter_token5 = 140, + aux_sym_switch_condition_token1 = 141, + aux_sym_foreach_statement_token1 = 142, + aux_sym_foreach_statement_token2 = 143, + aux_sym_for_statement_token1 = 144, + aux_sym_for_statement_token2 = 145, + aux_sym_while_statement_token1 = 146, + aux_sym_do_statement_token1 = 147, + aux_sym_do_statement_token2 = 148, + aux_sym_function_statement_token1 = 149, + aux_sym_function_statement_token2 = 150, + aux_sym_function_statement_token3 = 151, + aux_sym_flow_control_statement_token1 = 152, + aux_sym_flow_control_statement_token2 = 153, + aux_sym_flow_control_statement_token3 = 154, + aux_sym_flow_control_statement_token4 = 155, + aux_sym_flow_control_statement_token5 = 156, + sym_label = 157, + aux_sym_trap_statement_token1 = 158, + aux_sym_try_statement_token1 = 159, + aux_sym_catch_clause_token1 = 160, + aux_sym_finally_clause_token1 = 161, + aux_sym_data_statement_token1 = 162, + aux_sym_data_commands_allowed_token1 = 163, + aux_sym_inlinescript_statement_token1 = 164, + aux_sym_parallel_statement_token1 = 165, + aux_sym_sequence_statement_token1 = 166, + anon_sym_PIPE = 167, + anon_sym_AMP = 168, + aux_sym__expandable_string_literal_immediate_token1 = 169, + aux_sym__expandable_string_literal_immediate_token2 = 170, + aux_sym__expandable_string_literal_immediate_token3 = 171, + anon_sym_DQUOTE_DQUOTE2 = 172, + anon_sym_DOLLAR2 = 173, + anon_sym_DQUOTE = 174, + aux_sym_command_name_token1 = 175, + aux_sym_command_name_token2 = 176, + aux_sym_command_name_token3 = 177, + aux_sym_command_name_token4 = 178, + aux_sym_command_name_token5 = 179, + aux_sym_command_name_token6 = 180, + aux_sym_command_name_token7 = 181, + aux_sym_command_name_token8 = 182, + aux_sym_command_name_token9 = 183, + aux_sym_command_name_token10 = 184, + aux_sym_command_name_token11 = 185, + aux_sym_command_name_token12 = 186, + anon_sym_DQUOTE2 = 187, + anon_sym_SQUOTE_SQUOTE = 188, + sym_path_command_name_token = 189, + sym_stop_parsing = 190, + anon_sym_SPACE = 191, + anon_sym_COLON = 192, + anon_sym_PERCENT = 193, + aux_sym_foreach_command_token1 = 194, + anon_sym_DASH_DASH_PERCENT = 195, + aux_sym_class_attribute_token1 = 196, + aux_sym_class_attribute_token2 = 197, + aux_sym_class_statement_token1 = 198, + aux_sym_enum_statement_token1 = 199, + aux_sym_logical_expression_token1 = 200, + aux_sym_logical_expression_token2 = 201, + aux_sym_logical_expression_token3 = 202, + aux_sym_bitwise_expression_token1 = 203, + aux_sym_bitwise_expression_token2 = 204, + aux_sym_bitwise_expression_token3 = 205, + anon_sym_PLUS = 206, + anon_sym_DASH = 207, + anon_sym_SLASH = 208, + anon_sym_BSLASH = 209, + anon_sym_STAR = 210, + anon_sym_DOT_DOT = 211, + aux_sym_expression_with_unary_operator_token1 = 212, + anon_sym_BANG = 213, + aux_sym_expression_with_unary_operator_token2 = 214, + anon_sym_PLUS_PLUS = 215, + anon_sym_DASH_DASH = 216, + anon_sym_DOLLAR_LPAREN = 217, + anon_sym_AT_LPAREN = 218, + anon_sym_AT_LBRACE = 219, + anon_sym_DOT2 = 220, + anon_sym_COLON_COLON = 221, + anon_sym_RBRACK = 222, + aux_sym_invokation_foreach_expression_token1 = 223, + sym__statement_terminator = 224, + sym_program = 225, + sym__literal = 226, + sym_integer_literal = 227, + sym_string_literal = 228, + sym_expandable_string_literal = 229, + sym_expandable_here_string_literal = 230, + sym_type_name = 231, + sym_array_type_name = 232, + sym_generic_type_name = 233, + sym_assignement_operator = 234, + sym_file_redirection_operator = 235, + sym_merging_redirection_operator = 236, + sym_comparison_operator = 237, + sym_format_operator = 238, + sym_variable = 239, + aux_sym__verbatim_command_argument_chars = 240, + sym_script_block = 241, + sym_param_block = 242, + sym_parameter_list = 243, + sym_script_parameter = 244, + sym_script_parameter_default = 245, + sym_script_block_body = 246, + sym_named_block_list = 247, + sym_named_block = 248, + sym_block_name = 249, + sym_statement_block = 250, + sym_statement_list = 251, + sym__statement = 252, + sym_empty_statement = 253, + sym_if_statement = 254, + sym_elseif_clauses = 255, + sym_elseif_clause = 256, + sym_else_clause = 257, + sym__labeled_statement = 258, + sym_switch_statement = 259, + sym_switch_parameters = 260, + sym_switch_parameter = 261, + sym_switch_condition = 262, + sym_switch_filename = 263, + sym_switch_body = 264, + sym_switch_clauses = 265, + sym_switch_clause = 266, + sym_switch_clause_condition = 267, + sym_foreach_statement = 268, + sym_foreach_parameter = 269, + sym_for_statement = 270, + sym_for_initializer = 271, + sym_for_condition = 272, + sym_for_iterator = 273, + sym_while_statement = 274, + sym_while_condition = 275, + sym_do_statement = 276, + sym_function_statement = 277, + sym_function_name = 278, + sym_function_parameter_declaration = 279, + sym_flow_control_statement = 280, + sym_label_expression = 281, + sym_trap_statement = 282, + sym_try_statement = 283, + sym_catch_clauses = 284, + sym_catch_clause = 285, + sym_catch_type_list = 286, + sym_finally_clause = 287, + sym_data_statement = 288, + sym_data_name = 289, + sym_data_commands_allowed = 290, + sym_data_commands_list = 291, + sym_data_command = 292, + sym_inlinescript_statement = 293, + sym_parallel_statement = 294, + sym_sequence_statement = 295, + sym_pipeline = 296, + sym_left_assignment_expression = 297, + sym_assignment_expression = 298, + aux_sym__pipeline_tail = 299, + sym_command = 300, + sym_command_invokation_operator = 301, + sym__expandable_string_literal_immediate = 302, + sym_command_name = 303, + sym_path_command_name = 304, + sym_command_name_expr = 305, + sym_command_elements = 306, + sym__command_element = 307, + sym_command_argument_sep = 308, + sym__command_argument = 309, + sym_foreach_command = 310, + sym_verbatim_command_argument = 311, + sym_redirections = 312, + sym_redirection = 313, + sym_redirected_file_name = 314, + sym_class_attribute = 315, + sym_class_property_definition = 316, + sym_class_method_parameter = 317, + sym_class_method_parameter_list = 318, + sym_class_method_definition = 319, + sym_class_statement = 320, + sym_enum_statement = 321, + sym_enum_member = 322, + sym__expression = 323, + sym_logical_expression = 324, + sym_bitwise_expression = 325, + sym_comparison_expression = 326, + sym_additive_expression = 327, + sym_multiplicative_expression = 328, + sym_format_expression = 329, + sym_range_expression = 330, + sym_array_literal_expression = 331, + sym_unary_expression = 332, + sym_expression_with_unary_operator = 333, + sym_pre_increment_expression = 334, + sym_pre_decrement_expression = 335, + sym_cast_expression = 336, + sym__primary_expression = 337, + sym__value = 338, + sym_parenthesized_expression = 339, + sym_sub_expression = 340, + sym_array_expression = 341, + sym_script_block_expression = 342, + sym_hash_literal_expression = 343, + sym_hash_literal_body = 344, + sym_hash_entry = 345, + sym_key_expression = 346, + sym_post_increment_expression = 347, + sym_post_decrement_expression = 348, + sym_member_access = 349, + sym_member_name = 350, + sym_element_access = 351, + sym_invokation_expression = 352, + sym_invokation_foreach_expression = 353, + sym_argument_list = 354, + sym_argument_expression_list = 355, + sym_argument_expression = 356, + sym_logical_argument_expression = 357, + sym_bitwise_argument_expression = 358, + sym_comparison_argument_expression = 359, + sym_additive_argument_expression = 360, + sym_multiplicative_argument_expression = 361, + sym_format_argument_expression = 362, + sym_range_argument_expression = 363, + sym_type_literal = 364, + sym_type_spec = 365, + sym_dimension = 366, + sym_generic_type_arguments = 367, + sym_attribute_list = 368, + sym_attribute = 369, + sym_attribute_name = 370, + sym_attribute_arguments = 371, + sym_attribute_argument = 372, + aux_sym_expandable_string_literal_repeat1 = 373, + aux_sym_expandable_string_literal_repeat2 = 374, + aux_sym_expandable_here_string_literal_repeat1 = 375, + aux_sym_script_block_repeat1 = 376, + aux_sym_parameter_list_repeat1 = 377, + aux_sym_named_block_list_repeat1 = 378, + aux_sym_statement_list_repeat1 = 379, + aux_sym_elseif_clauses_repeat1 = 380, + aux_sym_switch_parameters_repeat1 = 381, + aux_sym_switch_clauses_repeat1 = 382, + aux_sym_catch_clauses_repeat1 = 383, + aux_sym_catch_type_list_repeat1 = 384, + aux_sym_data_commands_list_repeat1 = 385, + aux_sym__expandable_string_literal_immediate_repeat1 = 386, + aux_sym__expandable_string_literal_immediate_repeat2 = 387, + aux_sym_command_name_repeat1 = 388, + aux_sym_path_command_name_repeat1 = 389, + aux_sym_command_elements_repeat1 = 390, + aux_sym_command_argument_sep_repeat1 = 391, + aux_sym_foreach_command_repeat1 = 392, + aux_sym_redirections_repeat1 = 393, + aux_sym_class_property_definition_repeat1 = 394, + aux_sym_class_method_parameter_list_repeat1 = 395, + aux_sym_class_statement_repeat1 = 396, + aux_sym_class_statement_repeat2 = 397, + aux_sym_enum_statement_repeat1 = 398, + aux_sym_array_literal_expression_repeat1 = 399, + aux_sym_hash_literal_body_repeat1 = 400, + aux_sym_argument_expression_list_repeat1 = 401, + aux_sym_dimension_repeat1 = 402, + aux_sym_generic_type_arguments_repeat1 = 403, + aux_sym_attribute_list_repeat1 = 404, + aux_sym_attribute_arguments_repeat1 = 405, }; static const char * const ts_symbol_names[] = { @@ -450,6 +461,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_STAR_EQ] = "*=", [anon_sym_SLASH_EQ] = "/=", [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_DASH_EQ] = "-=", [anon_sym_GT] = ">", [anon_sym_GT_GT] = ">>", [anon_sym_2_GT] = "2>", @@ -565,7 +577,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_foreach_statement_token1] = "foreach", [aux_sym_foreach_statement_token2] = "in", [aux_sym_for_statement_token1] = "for", - [anon_sym_LF] = "\n", + [aux_sym_for_statement_token2] = "for_statement_token2", [aux_sym_while_statement_token1] = "while", [aux_sym_do_statement_token1] = "do", [aux_sym_do_statement_token2] = "until", @@ -597,6 +609,16 @@ static const char * const ts_symbol_names[] = { [anon_sym_DQUOTE] = "\"", [aux_sym_command_name_token1] = "command_name_token1", [aux_sym_command_name_token2] = "command_name_token2", + [aux_sym_command_name_token3] = "command_name_token3", + [aux_sym_command_name_token4] = "command_name_token4", + [aux_sym_command_name_token5] = "command_name_token5", + [aux_sym_command_name_token6] = "command_name_token6", + [aux_sym_command_name_token7] = "command_name_token7", + [aux_sym_command_name_token8] = "command_name_token8", + [aux_sym_command_name_token9] = "command_name_token9", + [aux_sym_command_name_token10] = "command_name_token10", + [aux_sym_command_name_token11] = "command_name_token11", + [aux_sym_command_name_token12] = "command_name_token12", [anon_sym_DQUOTE2] = "\"", [anon_sym_SQUOTE_SQUOTE] = "''", [sym_path_command_name_token] = "path_command_name_token", @@ -606,10 +628,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_PERCENT] = "%", [aux_sym_foreach_command_token1] = "foreach-object", [anon_sym_DASH_DASH_PERCENT] = "--%", - [aux_sym_class_attribute_token1] = "hidden", - [aux_sym_class_attribute_token2] = "static", - [aux_sym_class_statement_token1] = "class", - [aux_sym_enum_statement_token1] = "enum", + [aux_sym_class_attribute_token1] = "class_attribute_token1", + [aux_sym_class_attribute_token2] = "class_attribute_token2", + [aux_sym_class_statement_token1] = "class_statement_token1", + [aux_sym_enum_statement_token1] = "enum_statement_token1", [aux_sym_logical_expression_token1] = "-and", [aux_sym_logical_expression_token2] = "-or", [aux_sym_logical_expression_token3] = "-xor", @@ -848,6 +870,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_GT] = anon_sym_GT, [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_2_GT] = anon_sym_2_GT, @@ -963,7 +986,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_foreach_statement_token1] = aux_sym_foreach_statement_token1, [aux_sym_foreach_statement_token2] = aux_sym_foreach_statement_token2, [aux_sym_for_statement_token1] = aux_sym_for_statement_token1, - [anon_sym_LF] = anon_sym_LF, + [aux_sym_for_statement_token2] = aux_sym_for_statement_token2, [aux_sym_while_statement_token1] = aux_sym_while_statement_token1, [aux_sym_do_statement_token1] = aux_sym_do_statement_token1, [aux_sym_do_statement_token2] = aux_sym_do_statement_token2, @@ -995,6 +1018,16 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_command_name_token1] = aux_sym_command_name_token1, [aux_sym_command_name_token2] = aux_sym_command_name_token2, + [aux_sym_command_name_token3] = aux_sym_command_name_token3, + [aux_sym_command_name_token4] = aux_sym_command_name_token4, + [aux_sym_command_name_token5] = aux_sym_command_name_token5, + [aux_sym_command_name_token6] = aux_sym_command_name_token6, + [aux_sym_command_name_token7] = aux_sym_command_name_token7, + [aux_sym_command_name_token8] = aux_sym_command_name_token8, + [aux_sym_command_name_token9] = aux_sym_command_name_token9, + [aux_sym_command_name_token10] = aux_sym_command_name_token10, + [aux_sym_command_name_token11] = aux_sym_command_name_token11, + [aux_sym_command_name_token12] = aux_sym_command_name_token12, [anon_sym_DQUOTE2] = anon_sym_DQUOTE, [anon_sym_SQUOTE_SQUOTE] = anon_sym_SQUOTE_SQUOTE, [sym_path_command_name_token] = sym_path_command_name_token, @@ -1333,6 +1366,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_GT] = { .visible = true, .named = false, @@ -1793,8 +1830,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LF] = { - .visible = true, + [aux_sym_for_statement_token2] = { + .visible = false, .named = false, }, [aux_sym_while_statement_token1] = { @@ -1921,6 +1958,46 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_command_name_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token5] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token10] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token11] = { + .visible = false, + .named = false, + }, + [aux_sym_command_name_token12] = { + .visible = false, + .named = false, + }, [anon_sym_DQUOTE2] = { .visible = true, .named = false, @@ -1958,19 +2035,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_class_attribute_token1] = { - .visible = true, + .visible = false, .named = false, }, [aux_sym_class_attribute_token2] = { - .visible = true, + .visible = false, .named = false, }, [aux_sym_class_statement_token1] = { - .visible = true, + .visible = false, .named = false, }, [aux_sym_enum_statement_token1] = { - .visible = true, + .visible = false, .named = false, }, [aux_sym_logical_expression_token1] = { @@ -2957,10 +3034,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 8, [17] = 9, [18] = 8, - [19] = 9, - [20] = 8, - [21] = 9, - [22] = 7, + [19] = 8, + [20] = 9, + [21] = 7, + [22] = 9, [23] = 7, [24] = 7, [25] = 7, @@ -2981,55 +3058,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [40] = 40, [41] = 41, [42] = 42, - [43] = 42, + [43] = 43, [44] = 44, - [45] = 45, + [45] = 42, [46] = 46, - [47] = 45, + [47] = 42, [48] = 44, - [49] = 45, + [49] = 42, [50] = 46, - [51] = 44, - [52] = 45, - [53] = 46, - [54] = 44, - [55] = 45, - [56] = 46, + [51] = 46, + [52] = 44, + [53] = 44, + [54] = 42, + [55] = 46, + [56] = 44, [57] = 44, - [58] = 45, - [59] = 46, - [60] = 44, + [58] = 46, + [59] = 44, + [60] = 42, [61] = 44, - [62] = 44, - [63] = 63, - [64] = 46, - [65] = 46, + [62] = 42, + [63] = 46, + [64] = 44, + [65] = 44, [66] = 44, - [67] = 44, - [68] = 45, + [67] = 42, + [68] = 68, [69] = 46, - [70] = 45, + [70] = 46, [71] = 71, - [72] = 44, - [73] = 71, - [74] = 63, - [75] = 75, - [76] = 3, - [77] = 3, - [78] = 3, - [79] = 79, + [72] = 43, + [73] = 68, + [74] = 74, + [75] = 74, + [76] = 76, + [77] = 77, + [78] = 77, + [79] = 3, [80] = 3, - [81] = 81, - [82] = 79, + [81] = 3, + [82] = 3, [83] = 83, [84] = 84, - [85] = 85, + [85] = 83, [86] = 86, - [87] = 86, + [87] = 87, [88] = 88, [89] = 89, [90] = 90, - [91] = 86, + [91] = 91, [92] = 92, [93] = 93, [94] = 94, @@ -3040,2046 +3117,2020 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [99] = 99, [100] = 100, [101] = 101, - [102] = 83, + [102] = 102, [103] = 103, [104] = 104, [105] = 105, - [106] = 85, + [106] = 106, [107] = 107, - [108] = 86, + [108] = 108, [109] = 109, [110] = 110, [111] = 111, [112] = 112, [113] = 113, [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 118, + [115] = 83, + [116] = 84, + [117] = 83, + [118] = 86, [119] = 119, [120] = 120, [121] = 121, - [122] = 98, - [123] = 100, - [124] = 101, - [125] = 103, - [126] = 121, - [127] = 111, - [128] = 105, - [129] = 109, - [130] = 110, - [131] = 119, - [132] = 99, - [133] = 89, - [134] = 90, - [135] = 97, - [136] = 92, - [137] = 93, - [138] = 113, - [139] = 117, - [140] = 112, - [141] = 84, - [142] = 114, - [143] = 116, - [144] = 118, - [145] = 104, - [146] = 120, - [147] = 115, - [148] = 96, - [149] = 94, + [122] = 105, + [123] = 108, + [124] = 88, + [125] = 110, + [126] = 111, + [127] = 112, + [128] = 113, + [129] = 114, + [130] = 91, + [131] = 120, + [132] = 109, + [133] = 93, + [134] = 94, + [135] = 95, + [136] = 96, + [137] = 97, + [138] = 104, + [139] = 107, + [140] = 98, + [141] = 99, + [142] = 100, + [143] = 101, + [144] = 92, + [145] = 102, + [146] = 103, + [147] = 89, + [148] = 121, + [149] = 106, [150] = 150, - [151] = 150, - [152] = 107, - [153] = 88, - [154] = 95, + [151] = 90, + [152] = 119, + [153] = 150, + [154] = 87, [155] = 150, [156] = 150, - [157] = 100, + [157] = 157, [158] = 158, - [159] = 159, - [160] = 160, - [161] = 101, - [162] = 162, - [163] = 99, - [164] = 162, - [165] = 103, - [166] = 121, - [167] = 159, - [168] = 105, + [159] = 112, + [160] = 157, + [161] = 161, + [162] = 158, + [163] = 161, + [164] = 111, + [165] = 165, + [166] = 166, + [167] = 114, + [168] = 113, [169] = 169, - [170] = 170, - [171] = 160, - [172] = 101, - [173] = 121, - [174] = 170, - [175] = 105, - [176] = 100, - [177] = 103, - [178] = 99, + [170] = 109, + [171] = 110, + [172] = 109, + [173] = 166, + [174] = 113, + [175] = 114, + [176] = 112, + [177] = 111, + [178] = 110, [179] = 179, [180] = 180, - [181] = 180, + [181] = 169, [182] = 179, - [183] = 183, - [184] = 184, - [185] = 158, - [186] = 183, - [187] = 169, - [188] = 184, + [183] = 180, + [184] = 165, + [185] = 185, + [186] = 185, + [187] = 187, + [188] = 187, [189] = 189, [190] = 189, [191] = 191, [192] = 191, - [193] = 42, - [194] = 42, - [195] = 195, + [193] = 74, + [194] = 194, + [195] = 74, [196] = 196, [197] = 196, - [198] = 195, - [199] = 3, + [198] = 194, + [199] = 199, [200] = 200, - [201] = 201, - [202] = 3, + [201] = 200, + [202] = 199, [203] = 3, [204] = 3, [205] = 3, [206] = 3, - [207] = 201, - [208] = 200, - [209] = 3, + [207] = 3, + [208] = 3, + [209] = 209, [210] = 3, [211] = 3, - [212] = 3, + [212] = 209, [213] = 213, - [214] = 213, - [215] = 213, - [216] = 213, - [217] = 3, - [218] = 3, - [219] = 213, - [220] = 213, - [221] = 213, + [214] = 214, + [215] = 214, + [216] = 216, + [217] = 216, + [218] = 216, + [219] = 209, + [220] = 214, + [221] = 214, [222] = 213, - [223] = 3, - [224] = 3, - [225] = 3, - [226] = 3, - [227] = 213, - [228] = 213, + [223] = 209, + [224] = 213, + [225] = 213, + [226] = 216, + [227] = 227, + [228] = 228, [229] = 229, [230] = 230, - [231] = 231, - [232] = 229, - [233] = 230, - [234] = 231, + [231] = 230, + [232] = 230, + [233] = 227, + [234] = 228, [235] = 229, - [236] = 230, - [237] = 231, - [238] = 229, - [239] = 230, - [240] = 231, - [241] = 241, - [242] = 242, - [243] = 242, + [236] = 228, + [237] = 229, + [238] = 230, + [239] = 228, + [240] = 227, + [241] = 227, + [242] = 229, + [243] = 243, [244] = 244, - [245] = 244, - [246] = 246, - [247] = 246, - [248] = 241, - [249] = 242, - [250] = 244, - [251] = 246, - [252] = 241, - [253] = 242, + [245] = 3, + [246] = 3, + [247] = 247, + [248] = 3, + [249] = 3, + [250] = 243, + [251] = 243, + [252] = 243, + [253] = 244, [254] = 244, - [255] = 246, - [256] = 241, - [257] = 257, - [258] = 257, - [259] = 257, - [260] = 257, - [261] = 261, - [262] = 261, - [263] = 263, - [264] = 261, - [265] = 261, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 266, - [270] = 266, - [271] = 266, - [272] = 266, - [273] = 266, - [274] = 266, - [275] = 275, - [276] = 266, - [277] = 275, + [255] = 244, + [256] = 256, + [257] = 209, + [258] = 258, + [259] = 256, + [260] = 209, + [261] = 256, + [262] = 256, + [263] = 256, + [264] = 264, + [265] = 256, + [266] = 256, + [267] = 256, + [268] = 256, + [269] = 256, + [270] = 256, + [271] = 256, + [272] = 272, + [273] = 272, + [274] = 258, + [275] = 264, + [276] = 276, + [277] = 272, [278] = 278, - [279] = 267, - [280] = 268, - [281] = 281, - [282] = 267, - [283] = 275, - [284] = 268, - [285] = 268, - [286] = 281, - [287] = 267, - [288] = 275, - [289] = 281, - [290] = 281, - [291] = 150, - [292] = 150, - [293] = 150, - [294] = 150, - [295] = 160, + [279] = 258, + [280] = 264, + [281] = 276, + [282] = 272, + [283] = 276, + [284] = 258, + [285] = 264, + [286] = 276, + [287] = 287, + [288] = 288, + [289] = 287, + [290] = 288, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, [296] = 296, - [297] = 296, - [298] = 162, - [299] = 160, - [300] = 300, - [301] = 42, - [302] = 159, - [303] = 159, - [304] = 162, - [305] = 42, - [306] = 162, - [307] = 159, - [308] = 308, - [309] = 42, - [310] = 42, + [297] = 297, + [298] = 298, + [299] = 292, + [300] = 293, + [301] = 298, + [302] = 297, + [303] = 150, + [304] = 304, + [305] = 305, + [306] = 150, + [307] = 307, + [308] = 150, + [309] = 309, + [310] = 305, [311] = 311, - [312] = 183, - [313] = 311, - [314] = 184, - [315] = 315, - [316] = 316, - [317] = 308, - [318] = 315, - [319] = 300, - [320] = 180, - [321] = 179, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 311, - [326] = 315, - [327] = 311, - [328] = 315, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 307, + [316] = 305, + [317] = 150, + [318] = 312, + [319] = 314, + [320] = 311, + [321] = 305, + [322] = 309, + [323] = 313, + [324] = 307, + [325] = 307, + [326] = 326, + [327] = 327, + [328] = 328, [329] = 329, - [330] = 183, - [331] = 184, - [332] = 183, - [333] = 184, - [334] = 329, - [335] = 329, - [336] = 329, - [337] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, [338] = 338, - [339] = 329, - [340] = 329, - [341] = 329, - [342] = 329, - [343] = 329, - [344] = 329, - [345] = 180, - [346] = 179, - [347] = 322, - [348] = 180, - [349] = 179, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, - [355] = 329, + [355] = 355, [356] = 356, - [357] = 324, + [357] = 357, [358] = 358, [359] = 359, [360] = 360, - [361] = 351, - [362] = 191, - [363] = 322, - [364] = 323, - [365] = 356, - [366] = 356, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, [367] = 367, [368] = 368, - [369] = 356, + [369] = 369, [370] = 370, - [371] = 189, - [372] = 356, - [373] = 356, - [374] = 354, - [375] = 356, - [376] = 356, - [377] = 377, - [378] = 322, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 189, - [383] = 191, - [384] = 189, - [385] = 379, - [386] = 191, - [387] = 381, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 315, - [400] = 400, - [401] = 379, - [402] = 379, - [403] = 400, - [404] = 400, - [405] = 398, - [406] = 400, - [407] = 381, - [408] = 381, - [409] = 42, - [410] = 397, - [411] = 311, - [412] = 311, - [413] = 389, - [414] = 400, - [415] = 315, - [416] = 391, - [417] = 42, - [418] = 380, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 422, - [425] = 425, + [371] = 371, + [372] = 372, + [373] = 307, + [374] = 305, + [375] = 375, + [376] = 350, + [377] = 327, + [378] = 355, + [379] = 356, + [380] = 357, + [381] = 369, + [382] = 343, + [383] = 358, + [384] = 359, + [385] = 339, + [386] = 330, + [387] = 332, + [388] = 305, + [389] = 342, + [390] = 361, + [391] = 362, + [392] = 333, + [393] = 363, + [394] = 335, + [395] = 364, + [396] = 344, + [397] = 360, + [398] = 367, + [399] = 365, + [400] = 354, + [401] = 345, + [402] = 351, + [403] = 370, + [404] = 347, + [405] = 307, + [406] = 348, + [407] = 349, + [408] = 375, + [409] = 352, + [410] = 337, + [411] = 340, + [412] = 371, + [413] = 338, + [414] = 372, + [415] = 331, + [416] = 326, + [417] = 328, + [418] = 334, + [419] = 341, + [420] = 329, + [421] = 353, + [422] = 336, + [423] = 366, + [424] = 368, + [425] = 346, [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 422, - [431] = 379, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 421, - [437] = 437, - [438] = 381, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 421, - [443] = 443, - [444] = 421, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, + [427] = 291, + [428] = 294, + [429] = 295, + [430] = 430, + [431] = 158, + [432] = 430, + [433] = 161, + [434] = 161, + [435] = 158, + [436] = 157, + [437] = 74, + [438] = 157, + [439] = 157, + [440] = 74, + [441] = 161, + [442] = 442, + [443] = 74, + [444] = 74, + [445] = 442, + [446] = 187, + [447] = 185, + [448] = 180, [449] = 449, - [450] = 450, - [451] = 451, + [450] = 449, + [451] = 179, [452] = 452, [453] = 453, - [454] = 454, + [454] = 180, [455] = 455, - [456] = 422, - [457] = 457, - [458] = 458, - [459] = 421, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 422, - [464] = 464, - [465] = 422, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 422, - [472] = 472, - [473] = 473, - [474] = 474, + [456] = 453, + [457] = 453, + [458] = 453, + [459] = 185, + [460] = 442, + [461] = 187, + [462] = 449, + [463] = 453, + [464] = 179, + [465] = 442, + [466] = 179, + [467] = 185, + [468] = 180, + [469] = 453, + [470] = 187, + [471] = 455, + [472] = 449, + [473] = 453, + [474] = 453, [475] = 475, - [476] = 476, + [476] = 455, [477] = 477, - [478] = 422, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 451, - [485] = 423, - [486] = 481, - [487] = 479, - [488] = 482, - [489] = 425, - [490] = 443, - [491] = 426, - [492] = 427, - [493] = 322, - [494] = 437, - [495] = 440, - [496] = 441, - [497] = 455, + [478] = 191, + [479] = 455, + [480] = 475, + [481] = 475, + [482] = 475, + [483] = 475, + [484] = 484, + [485] = 475, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 475, + [490] = 189, + [491] = 491, + [492] = 475, + [493] = 191, + [494] = 494, + [495] = 495, + [496] = 189, + [497] = 497, [498] = 498, - [499] = 445, - [500] = 446, - [501] = 457, - [502] = 322, - [503] = 447, - [504] = 448, - [505] = 450, - [506] = 498, - [507] = 452, - [508] = 454, - [509] = 453, - [510] = 458, - [511] = 460, - [512] = 420, - [513] = 466, - [514] = 483, - [515] = 498, - [516] = 195, + [499] = 499, + [500] = 500, + [501] = 191, + [502] = 502, + [503] = 189, + [504] = 504, + [505] = 504, + [506] = 504, + [507] = 504, + [508] = 442, + [509] = 442, + [510] = 74, + [511] = 504, + [512] = 449, + [513] = 449, + [514] = 74, + [515] = 515, + [516] = 515, [517] = 517, - [518] = 428, - [519] = 498, - [520] = 480, - [521] = 429, - [522] = 498, - [523] = 433, - [524] = 467, - [525] = 468, - [526] = 196, - [527] = 434, - [528] = 435, - [529] = 469, - [530] = 432, - [531] = 379, - [532] = 470, - [533] = 533, - [534] = 419, - [535] = 472, - [536] = 473, - [537] = 475, - [538] = 476, - [539] = 477, - [540] = 449, - [541] = 461, - [542] = 381, - [543] = 464, - [544] = 544, - [545] = 350, - [546] = 546, - [547] = 196, - [548] = 196, - [549] = 353, - [550] = 338, - [551] = 195, - [552] = 546, + [518] = 517, + [519] = 517, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 517, + [524] = 515, + [525] = 515, + [526] = 515, + [527] = 517, + [528] = 517, + [529] = 517, + [530] = 517, + [531] = 531, + [532] = 532, + [533] = 455, + [534] = 534, + [535] = 534, + [536] = 534, + [537] = 534, + [538] = 455, + [539] = 534, + [540] = 194, + [541] = 196, + [542] = 194, + [543] = 543, + [544] = 194, + [545] = 543, + [546] = 543, + [547] = 543, + [548] = 3, + [549] = 3, + [550] = 3, + [551] = 543, + [552] = 199, [553] = 553, - [554] = 3, - [555] = 3, + [554] = 196, + [555] = 196, [556] = 200, [557] = 3, - [558] = 195, - [559] = 3, - [560] = 546, - [561] = 546, - [562] = 201, - [563] = 546, + [558] = 558, + [559] = 199, + [560] = 560, + [561] = 560, + [562] = 560, + [563] = 560, [564] = 564, - [565] = 565, - [566] = 565, - [567] = 201, + [565] = 199, + [566] = 566, + [567] = 200, [568] = 200, - [569] = 201, - [570] = 200, - [571] = 565, - [572] = 565, - [573] = 565, + [569] = 560, + [570] = 570, + [571] = 571, + [572] = 571, + [573] = 571, [574] = 574, [575] = 575, - [576] = 576, - [577] = 576, - [578] = 578, - [579] = 576, - [580] = 576, - [581] = 581, - [582] = 576, + [576] = 571, + [577] = 577, + [578] = 571, + [579] = 579, + [580] = 579, + [581] = 579, + [582] = 582, [583] = 583, - [584] = 583, - [585] = 583, - [586] = 586, + [584] = 579, + [585] = 585, + [586] = 583, [587] = 587, - [588] = 583, - [589] = 589, + [588] = 579, + [589] = 583, [590] = 583, [591] = 591, [592] = 592, [593] = 593, - [594] = 591, + [594] = 593, [595] = 593, - [596] = 591, + [596] = 592, [597] = 592, - [598] = 592, - [599] = 592, - [600] = 593, - [601] = 591, - [602] = 593, - [603] = 603, - [604] = 593, - [605] = 592, - [606] = 603, - [607] = 593, - [608] = 591, - [609] = 592, - [610] = 593, - [611] = 591, - [612] = 592, + [598] = 598, + [599] = 591, + [600] = 592, + [601] = 598, + [602] = 591, + [603] = 598, + [604] = 591, + [605] = 598, + [606] = 593, + [607] = 592, + [608] = 593, + [609] = 598, + [610] = 591, + [611] = 592, + [612] = 598, [613] = 591, - [614] = 592, + [614] = 591, [615] = 593, - [616] = 591, - [617] = 592, - [618] = 593, - [619] = 591, - [620] = 592, - [621] = 603, - [622] = 593, - [623] = 591, - [624] = 592, - [625] = 593, - [626] = 603, - [627] = 603, - [628] = 593, - [629] = 591, - [630] = 592, + [616] = 592, + [617] = 598, + [618] = 591, + [619] = 592, + [620] = 598, + [621] = 591, + [622] = 592, + [623] = 598, + [624] = 591, + [625] = 592, + [626] = 598, + [627] = 591, + [628] = 592, + [629] = 592, + [630] = 598, [631] = 592, - [632] = 603, - [633] = 593, - [634] = 591, - [635] = 592, - [636] = 591, - [637] = 603, - [638] = 603, - [639] = 593, - [640] = 593, - [641] = 591, - [642] = 592, - [643] = 643, - [644] = 591, + [632] = 598, + [633] = 591, + [634] = 598, + [635] = 591, + [636] = 598, + [637] = 591, + [638] = 592, + [639] = 598, + [640] = 591, + [641] = 592, + [642] = 598, + [643] = 591, + [644] = 593, [645] = 592, - [646] = 603, - [647] = 603, - [648] = 603, - [649] = 593, + [646] = 598, + [647] = 591, + [648] = 592, + [649] = 598, [650] = 591, [651] = 592, - [652] = 603, - [653] = 593, - [654] = 593, - [655] = 591, - [656] = 592, + [652] = 598, + [653] = 591, + [654] = 592, + [655] = 598, + [656] = 591, [657] = 593, - [658] = 591, - [659] = 591, - [660] = 592, + [658] = 592, + [659] = 598, + [660] = 591, [661] = 593, - [662] = 593, - [663] = 592, + [662] = 592, + [663] = 598, [664] = 591, - [665] = 591, - [666] = 592, - [667] = 591, - [668] = 603, - [669] = 593, + [665] = 665, + [666] = 593, + [667] = 592, + [668] = 592, + [669] = 598, [670] = 591, - [671] = 592, - [672] = 592, - [673] = 603, - [674] = 593, - [675] = 591, - [676] = 592, - [677] = 593, - [678] = 591, - [679] = 592, - [680] = 593, - [681] = 591, - [682] = 592, - [683] = 593, - [684] = 591, - [685] = 592, - [686] = 593, - [687] = 591, - [688] = 592, - [689] = 593, - [690] = 690, - [691] = 690, - [692] = 690, - [693] = 690, - [694] = 690, - [695] = 690, - [696] = 690, - [697] = 690, - [698] = 690, - [699] = 690, - [700] = 690, - [701] = 690, - [702] = 690, - [703] = 690, - [704] = 690, - [705] = 690, - [706] = 690, - [707] = 690, - [708] = 690, - [709] = 690, - [710] = 690, - [711] = 690, - [712] = 690, - [713] = 690, - [714] = 84, + [671] = 598, + [672] = 591, + [673] = 592, + [674] = 674, + [675] = 674, + [676] = 674, + [677] = 674, + [678] = 674, + [679] = 674, + [680] = 674, + [681] = 674, + [682] = 674, + [683] = 674, + [684] = 87, + [685] = 674, + [686] = 686, + [687] = 674, + [688] = 674, + [689] = 674, + [690] = 674, + [691] = 674, + [692] = 87, + [693] = 674, + [694] = 674, + [695] = 674, + [696] = 674, + [697] = 686, + [698] = 686, + [699] = 87, + [700] = 87, + [701] = 686, + [702] = 702, + [703] = 703, + [704] = 703, + [705] = 702, + [706] = 702, + [707] = 703, + [708] = 703, + [709] = 703, + [710] = 703, + [711] = 702, + [712] = 712, + [713] = 713, + [714] = 714, [715] = 715, - [716] = 715, - [717] = 84, - [718] = 718, - [719] = 84, - [720] = 715, - [721] = 84, - [722] = 715, + [716] = 716, + [717] = 74, + [718] = 712, + [719] = 713, + [720] = 716, + [721] = 714, + [722] = 722, [723] = 723, [724] = 724, - [725] = 725, - [726] = 726, - [727] = 726, - [728] = 724, - [729] = 724, - [730] = 725, - [731] = 726, + [725] = 713, + [726] = 723, + [727] = 712, + [728] = 714, + [729] = 713, + [730] = 714, + [731] = 716, [732] = 724, - [733] = 725, - [734] = 724, - [735] = 724, - [736] = 726, - [737] = 725, - [738] = 738, - [739] = 42, - [740] = 740, - [741] = 741, - [742] = 741, - [743] = 743, - [744] = 743, - [745] = 86, - [746] = 746, - [747] = 86, - [748] = 746, - [749] = 743, - [750] = 86, - [751] = 743, - [752] = 752, - [753] = 741, - [754] = 741, - [755] = 86, - [756] = 752, - [757] = 94, - [758] = 150, - [759] = 115, - [760] = 746, - [761] = 119, - [762] = 95, - [763] = 88, - [764] = 98, - [765] = 84, - [766] = 115, - [767] = 119, + [733] = 712, + [734] = 716, + [735] = 723, + [736] = 87, + [737] = 83, + [738] = 723, + [739] = 83, + [740] = 724, + [741] = 724, + [742] = 87, + [743] = 105, + [744] = 101, + [745] = 87, + [746] = 102, + [747] = 103, + [748] = 121, + [749] = 105, + [750] = 119, + [751] = 120, + [752] = 99, + [753] = 753, + [754] = 150, + [755] = 104, + [756] = 89, + [757] = 90, + [758] = 753, + [759] = 150, + [760] = 91, + [761] = 92, + [762] = 104, + [763] = 89, + [764] = 93, + [765] = 94, + [766] = 90, + [767] = 95, [768] = 96, - [769] = 97, - [770] = 752, - [771] = 101, - [772] = 86, - [773] = 84, - [774] = 99, - [775] = 150, - [776] = 776, - [777] = 83, - [778] = 84, - [779] = 779, - [780] = 117, - [781] = 112, - [782] = 114, - [783] = 97, - [784] = 116, - [785] = 746, - [786] = 118, - [787] = 776, - [788] = 104, - [789] = 752, - [790] = 114, - [791] = 120, - [792] = 116, - [793] = 111, - [794] = 86, - [795] = 88, - [796] = 113, - [797] = 98, - [798] = 118, - [799] = 107, - [800] = 779, - [801] = 112, - [802] = 120, - [803] = 85, - [804] = 94, - [805] = 86, - [806] = 107, - [807] = 109, - [808] = 103, + [769] = 84, + [770] = 98, + [771] = 99, + [772] = 100, + [773] = 101, + [774] = 120, + [775] = 102, + [776] = 103, + [777] = 86, + [778] = 121, + [779] = 109, + [780] = 91, + [781] = 92, + [782] = 106, + [783] = 100, + [784] = 97, + [785] = 785, + [786] = 107, + [787] = 83, + [788] = 93, + [789] = 94, + [790] = 87, + [791] = 95, + [792] = 96, + [793] = 106, + [794] = 84, + [795] = 97, + [796] = 107, + [797] = 86, + [798] = 798, + [799] = 108, + [800] = 88, + [801] = 110, + [802] = 111, + [803] = 119, + [804] = 112, + [805] = 113, + [806] = 114, + [807] = 807, + [808] = 83, [809] = 109, [810] = 110, - [811] = 811, - [812] = 110, - [813] = 89, - [814] = 121, - [815] = 89, - [816] = 100, - [817] = 90, - [818] = 90, - [819] = 101, - [820] = 92, - [821] = 93, - [822] = 83, - [823] = 96, - [824] = 103, - [825] = 111, - [826] = 105, - [827] = 121, - [828] = 85, - [829] = 92, - [830] = 93, - [831] = 105, - [832] = 113, - [833] = 86, - [834] = 117, - [835] = 84, - [836] = 99, - [837] = 95, - [838] = 100, - [839] = 104, - [840] = 104, - [841] = 776, - [842] = 779, - [843] = 776, + [811] = 111, + [812] = 98, + [813] = 112, + [814] = 113, + [815] = 114, + [816] = 108, + [817] = 88, + [818] = 785, + [819] = 807, + [820] = 87, + [821] = 87, + [822] = 105, + [823] = 110, + [824] = 111, + [825] = 112, + [826] = 113, + [827] = 98, + [828] = 99, + [829] = 100, + [830] = 101, + [831] = 102, + [832] = 103, + [833] = 121, + [834] = 108, + [835] = 119, + [836] = 120, + [837] = 114, + [838] = 74, + [839] = 110, + [840] = 150, + [841] = 104, + [842] = 89, + [843] = 90, [844] = 111, - [845] = 113, - [846] = 150, - [847] = 115, - [848] = 119, - [849] = 97, - [850] = 117, - [851] = 112, - [852] = 114, - [853] = 116, - [854] = 118, - [855] = 104, - [856] = 120, - [857] = 94, - [858] = 107, - [859] = 109, - [860] = 110, - [861] = 89, - [862] = 90, - [863] = 92, - [864] = 93, - [865] = 111, - [866] = 113, - [867] = 150, - [868] = 115, - [869] = 119, - [870] = 97, - [871] = 117, - [872] = 112, - [873] = 114, - [874] = 116, - [875] = 118, - [876] = 120, - [877] = 94, - [878] = 107, - [879] = 109, - [880] = 89, - [881] = 90, - [882] = 92, - [883] = 93, - [884] = 85, - [885] = 83, - [886] = 95, - [887] = 85, - [888] = 96, - [889] = 83, - [890] = 95, - [891] = 96, - [892] = 88, - [893] = 98, + [845] = 845, + [846] = 91, + [847] = 92, + [848] = 93, + [849] = 94, + [850] = 74, + [851] = 95, + [852] = 96, + [853] = 853, + [854] = 98, + [855] = 99, + [856] = 100, + [857] = 101, + [858] = 102, + [859] = 88, + [860] = 112, + [861] = 87, + [862] = 113, + [863] = 121, + [864] = 105, + [865] = 87, + [866] = 114, + [867] = 119, + [868] = 120, + [869] = 109, + [870] = 109, + [871] = 97, + [872] = 84, + [873] = 873, + [874] = 86, + [875] = 150, + [876] = 104, + [877] = 89, + [878] = 90, + [879] = 853, + [880] = 106, + [881] = 91, + [882] = 84, + [883] = 107, + [884] = 86, + [885] = 92, + [886] = 93, + [887] = 845, + [888] = 873, + [889] = 94, + [890] = 106, + [891] = 97, + [892] = 107, + [893] = 108, [894] = 88, - [895] = 98, - [896] = 99, - [897] = 100, - [898] = 101, - [899] = 103, - [900] = 121, - [901] = 105, - [902] = 99, - [903] = 100, - [904] = 101, - [905] = 103, - [906] = 121, - [907] = 105, - [908] = 84, - [909] = 84, - [910] = 84, - [911] = 84, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 914, - [916] = 912, - [917] = 913, - [918] = 150, - [919] = 150, - [920] = 779, - [921] = 110, - [922] = 42, - [923] = 86, - [924] = 86, - [925] = 925, - [926] = 926, - [927] = 42, - [928] = 150, - [929] = 150, - [930] = 925, - [931] = 926, - [932] = 93, - [933] = 925, - [934] = 934, - [935] = 113, - [936] = 114, - [937] = 116, - [938] = 118, - [939] = 42, - [940] = 104, - [941] = 120, - [942] = 94, - [943] = 107, - [944] = 109, - [945] = 110, - [946] = 926, - [947] = 89, - [948] = 90, - [949] = 99, - [950] = 100, + [895] = 95, + [896] = 96, + [897] = 103, + [898] = 873, + [899] = 899, + [900] = 900, + [901] = 899, + [902] = 74, + [903] = 853, + [904] = 904, + [905] = 900, + [906] = 904, + [907] = 83, + [908] = 845, + [909] = 845, + [910] = 873, + [911] = 853, + [912] = 74, + [913] = 83, + [914] = 97, + [915] = 93, + [916] = 94, + [917] = 95, + [918] = 96, + [919] = 904, + [920] = 107, + [921] = 98, + [922] = 99, + [923] = 108, + [924] = 88, + [925] = 100, + [926] = 101, + [927] = 102, + [928] = 103, + [929] = 121, + [930] = 105, + [931] = 899, + [932] = 900, + [933] = 109, + [934] = 106, + [935] = 119, + [936] = 120, + [937] = 111, + [938] = 112, + [939] = 113, + [940] = 899, + [941] = 114, + [942] = 942, + [943] = 84, + [944] = 104, + [945] = 904, + [946] = 89, + [947] = 90, + [948] = 900, + [949] = 91, + [950] = 950, [951] = 92, - [952] = 42, - [953] = 111, - [954] = 925, - [955] = 96, - [956] = 934, - [957] = 103, - [958] = 121, - [959] = 959, - [960] = 960, - [961] = 88, - [962] = 98, - [963] = 115, - [964] = 959, - [965] = 85, - [966] = 960, - [967] = 926, + [952] = 86, + [953] = 953, + [954] = 954, + [955] = 942, + [956] = 950, + [957] = 954, + [958] = 87, + [959] = 953, + [960] = 110, + [961] = 942, + [962] = 950, + [963] = 950, + [964] = 83, + [965] = 942, + [966] = 954, + [967] = 954, [968] = 83, - [969] = 105, - [970] = 84, - [971] = 119, - [972] = 97, - [973] = 95, - [974] = 117, - [975] = 112, - [976] = 101, - [977] = 977, - [978] = 86, - [979] = 979, - [980] = 980, - [981] = 979, - [982] = 934, - [983] = 977, - [984] = 984, - [985] = 980, - [986] = 934, - [987] = 960, - [988] = 984, - [989] = 960, - [990] = 959, - [991] = 86, - [992] = 959, - [993] = 85, - [994] = 98, - [995] = 984, - [996] = 980, + [969] = 93, + [970] = 161, + [971] = 158, + [972] = 109, + [973] = 110, + [974] = 97, + [975] = 101, + [976] = 161, + [977] = 84, + [978] = 111, + [979] = 112, + [980] = 113, + [981] = 158, + [982] = 74, + [983] = 107, + [984] = 114, + [985] = 102, + [986] = 103, + [987] = 98, + [988] = 87, + [989] = 86, + [990] = 95, + [991] = 106, + [992] = 108, + [993] = 99, + [994] = 96, + [995] = 121, + [996] = 88, [997] = 105, - [998] = 84, - [999] = 162, - [1000] = 980, - [1001] = 95, - [1002] = 92, - [1003] = 159, - [1004] = 42, - [1005] = 99, - [1006] = 100, - [1007] = 111, - [1008] = 113, - [1009] = 93, - [1010] = 162, - [1011] = 115, - [1012] = 119, - [1013] = 979, - [1014] = 96, - [1015] = 117, - [1016] = 112, - [1017] = 150, - [1018] = 150, - [1019] = 979, - [1020] = 159, - [1021] = 114, - [1022] = 116, - [1023] = 160, - [1024] = 118, - [1025] = 104, - [1026] = 120, - [1027] = 83, - [1028] = 984, - [1029] = 101, - [1030] = 94, - [1031] = 107, - [1032] = 103, - [1033] = 121, - [1034] = 160, - [1035] = 109, - [1036] = 110, - [1037] = 88, - [1038] = 89, - [1039] = 90, - [1040] = 97, - [1041] = 160, - [1042] = 159, - [1043] = 162, - [1044] = 160, - [1045] = 159, - [1046] = 170, - [1047] = 162, + [998] = 100, + [999] = 94, + [1000] = 150, + [1001] = 150, + [1002] = 119, + [1003] = 120, + [1004] = 157, + [1005] = 104, + [1006] = 89, + [1007] = 90, + [1008] = 91, + [1009] = 92, + [1010] = 157, + [1011] = 114, + [1012] = 1012, + [1013] = 111, + [1014] = 166, + [1015] = 157, + [1016] = 1012, + [1017] = 114, + [1018] = 158, + [1019] = 161, + [1020] = 157, + [1021] = 109, + [1022] = 109, + [1023] = 110, + [1024] = 110, + [1025] = 166, + [1026] = 161, + [1027] = 111, + [1028] = 112, + [1029] = 113, + [1030] = 158, + [1031] = 150, + [1032] = 112, + [1033] = 113, + [1034] = 150, + [1035] = 1012, + [1036] = 1012, + [1037] = 166, + [1038] = 845, + [1039] = 873, + [1040] = 111, + [1041] = 1041, + [1042] = 97, + [1043] = 1043, + [1044] = 109, + [1045] = 108, + [1046] = 166, + [1047] = 74, [1048] = 1048, - [1049] = 162, - [1050] = 99, - [1051] = 150, - [1052] = 150, - [1053] = 99, - [1054] = 100, - [1055] = 100, - [1056] = 101, - [1057] = 103, - [1058] = 121, - [1059] = 101, - [1060] = 160, - [1061] = 103, - [1062] = 121, - [1063] = 105, - [1064] = 159, - [1065] = 160, - [1066] = 162, - [1067] = 1048, - [1068] = 159, - [1069] = 170, - [1070] = 105, - [1071] = 926, - [1072] = 159, - [1073] = 170, - [1074] = 1074, - [1075] = 926, - [1076] = 1074, - [1077] = 170, - [1078] = 99, - [1079] = 1048, - [1080] = 42, - [1081] = 99, - [1082] = 100, - [1083] = 1048, - [1084] = 101, - [1085] = 103, - [1086] = 121, - [1087] = 105, - [1088] = 100, - [1089] = 101, - [1090] = 103, - [1091] = 121, - [1092] = 162, - [1093] = 162, - [1094] = 160, - [1095] = 105, - [1096] = 159, - [1097] = 160, - [1098] = 1098, - [1099] = 88, - [1100] = 98, - [1101] = 1074, - [1102] = 88, - [1103] = 1103, + [1049] = 845, + [1050] = 873, + [1051] = 1051, + [1052] = 1052, + [1053] = 88, + [1054] = 1041, + [1055] = 113, + [1056] = 114, + [1057] = 108, + [1058] = 88, + [1059] = 1059, + [1060] = 1060, + [1061] = 97, + [1062] = 1059, + [1063] = 1060, + [1064] = 109, + [1065] = 1051, + [1066] = 1052, + [1067] = 110, + [1068] = 111, + [1069] = 112, + [1070] = 113, + [1071] = 114, + [1072] = 110, + [1073] = 1043, + [1074] = 1048, + [1075] = 112, + [1076] = 108, + [1077] = 97, + [1078] = 1048, + [1079] = 1079, + [1080] = 97, + [1081] = 1052, + [1082] = 74, + [1083] = 1043, + [1084] = 1041, + [1085] = 1048, + [1086] = 1043, + [1087] = 88, + [1088] = 1051, + [1089] = 1089, + [1090] = 1052, + [1091] = 108, + [1092] = 88, + [1093] = 1059, + [1094] = 1060, + [1095] = 1059, + [1096] = 1060, + [1097] = 296, + [1098] = 1051, + [1099] = 1041, + [1100] = 1100, + [1101] = 1101, + [1102] = 1101, + [1103] = 1100, [1104] = 1104, - [1105] = 1105, - [1106] = 1105, - [1107] = 1107, - [1108] = 42, - [1109] = 1103, - [1110] = 1110, - [1111] = 1104, - [1112] = 1107, - [1113] = 1113, - [1114] = 1114, - [1115] = 352, - [1116] = 1110, - [1117] = 1074, - [1118] = 98, - [1119] = 1114, - [1120] = 1120, - [1121] = 1104, - [1122] = 1122, - [1123] = 1103, - [1124] = 88, - [1125] = 88, - [1126] = 1107, - [1127] = 1105, - [1128] = 1105, - [1129] = 98, - [1130] = 98, - [1131] = 1110, - [1132] = 1114, - [1133] = 1110, - [1134] = 1103, - [1135] = 1104, - [1136] = 1107, - [1137] = 1114, - [1138] = 1122, - [1139] = 1120, - [1140] = 159, - [1141] = 162, - [1142] = 160, - [1143] = 159, - [1144] = 160, - [1145] = 162, - [1146] = 1146, - [1147] = 1147, - [1148] = 1074, - [1149] = 1103, - [1150] = 1107, - [1151] = 1114, - [1152] = 1103, - [1153] = 1104, - [1154] = 1104, - [1155] = 1107, - [1156] = 1114, - [1157] = 1074, - [1158] = 352, + [1105] = 161, + [1106] = 158, + [1107] = 157, + [1108] = 158, + [1109] = 161, + [1110] = 157, + [1111] = 1111, + [1112] = 1112, + [1113] = 1059, + [1114] = 1048, + [1115] = 1051, + [1116] = 1060, + [1117] = 1059, + [1118] = 1060, + [1119] = 1043, + [1120] = 1048, + [1121] = 1043, + [1122] = 1051, + [1123] = 1123, + [1124] = 296, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1129, + [1133] = 1127, + [1134] = 1129, + [1135] = 1135, + [1136] = 1127, + [1137] = 1135, + [1138] = 1130, + [1139] = 1130, + [1140] = 1135, + [1141] = 1141, + [1142] = 1129, + [1143] = 1128, + [1144] = 1131, + [1145] = 1131, + [1146] = 1127, + [1147] = 1130, + [1148] = 1135, + [1149] = 1128, + [1150] = 1128, + [1151] = 1131, + [1152] = 1152, + [1153] = 1152, + [1154] = 1152, + [1155] = 1152, + [1156] = 1156, + [1157] = 1156, + [1158] = 1152, [1159] = 1159, - [1160] = 1160, + [1160] = 1159, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1164, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1164, - [1170] = 1170, - [1171] = 1167, - [1172] = 1163, - [1173] = 1170, - [1174] = 1166, - [1175] = 1167, - [1176] = 1168, - [1177] = 1167, - [1178] = 1168, - [1179] = 1163, - [1180] = 1166, - [1181] = 1166, - [1182] = 1168, - [1183] = 1170, - [1184] = 1170, - [1185] = 1185, - [1186] = 1164, - [1187] = 1163, - [1188] = 1188, - [1189] = 1188, - [1190] = 1188, - [1191] = 1188, - [1192] = 1188, - [1193] = 1193, - [1194] = 1194, - [1195] = 1193, - [1196] = 1194, - [1197] = 1197, - [1198] = 1193, - [1199] = 1197, - [1200] = 1194, - [1201] = 1197, - [1202] = 1194, - [1203] = 1197, - [1204] = 1193, - [1205] = 1194, - [1206] = 1197, - [1207] = 1194, - [1208] = 1197, - [1209] = 1194, - [1210] = 1193, - [1211] = 1194, - [1212] = 1197, - [1213] = 1197, - [1214] = 1214, - [1215] = 1214, - [1216] = 1214, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1214, - [1221] = 1221, - [1222] = 1218, - [1223] = 1218, - [1224] = 1214, - [1225] = 1218, - [1226] = 1218, - [1227] = 1214, - [1228] = 1218, - [1229] = 1214, - [1230] = 1214, - [1231] = 1218, - [1232] = 1218, + [1162] = 1161, + [1163] = 1159, + [1164] = 1161, + [1165] = 1159, + [1166] = 1161, + [1167] = 1159, + [1168] = 1161, + [1169] = 1161, + [1170] = 1159, + [1171] = 1171, + [1172] = 1161, + [1173] = 1161, + [1174] = 1171, + [1175] = 1159, + [1176] = 1171, + [1177] = 1171, + [1178] = 1171, + [1179] = 1159, + [1180] = 1180, + [1181] = 1180, + [1182] = 1182, + [1183] = 1180, + [1184] = 1182, + [1185] = 1180, + [1186] = 1182, + [1187] = 1187, + [1188] = 1182, + [1189] = 1180, + [1190] = 1190, + [1191] = 1182, + [1192] = 1180, + [1193] = 1182, + [1194] = 1182, + [1195] = 1180, + [1196] = 1196, + [1197] = 1180, + [1198] = 1182, + [1199] = 1199, + [1200] = 686, + [1201] = 1199, + [1202] = 1202, + [1203] = 1202, + [1204] = 1199, + [1205] = 1202, + [1206] = 87, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 106, + [1212] = 1212, + [1213] = 1213, + [1214] = 107, + [1215] = 107, + [1216] = 1216, + [1217] = 87, + [1218] = 296, + [1219] = 107, + [1220] = 87, + [1221] = 106, + [1222] = 1222, + [1223] = 87, + [1224] = 106, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 305, + [1231] = 1231, + [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1233, + [1235] = 1235, [1236] = 1236, - [1237] = 715, - [1238] = 1236, - [1239] = 84, - [1240] = 1236, - [1241] = 1233, - [1242] = 1242, + [1237] = 714, + [1238] = 1238, + [1239] = 1239, + [1240] = 307, + [1241] = 1241, + [1242] = 713, [1243] = 1243, [1244] = 1244, - [1245] = 84, - [1246] = 95, - [1247] = 352, - [1248] = 84, - [1249] = 96, - [1250] = 84, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 95, - [1255] = 1255, - [1256] = 96, - [1257] = 96, - [1258] = 95, + [1245] = 1243, + [1246] = 1243, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1250, + [1252] = 1250, + [1253] = 1250, + [1254] = 1243, + [1255] = 87, + [1256] = 150, + [1257] = 1249, + [1258] = 1258, [1259] = 1259, [1260] = 1260, [1261] = 1261, - [1262] = 1262, + [1262] = 1248, [1263] = 1263, [1264] = 1264, - [1265] = 1265, - [1266] = 381, + [1265] = 807, + [1266] = 1266, [1267] = 1267, [1268] = 1268, [1269] = 1269, - [1270] = 743, - [1271] = 379, - [1272] = 1272, - [1273] = 741, - [1274] = 1274, + [1270] = 1264, + [1271] = 1271, + [1272] = 853, + [1273] = 150, + [1274] = 753, [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1278, - [1280] = 1277, - [1281] = 1281, - [1282] = 1282, - [1283] = 1278, - [1284] = 1284, - [1285] = 1277, - [1286] = 1286, - [1287] = 1278, - [1288] = 1277, - [1289] = 84, + [1276] = 1269, + [1277] = 1267, + [1278] = 1264, + [1279] = 1267, + [1280] = 1264, + [1281] = 1267, + [1282] = 753, + [1283] = 288, + [1284] = 150, + [1285] = 807, + [1286] = 288, + [1287] = 287, + [1288] = 287, + [1289] = 900, [1290] = 150, - [1291] = 1284, + [1291] = 904, [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1286, + [1293] = 807, + [1294] = 899, + [1295] = 1295, [1296] = 1296, - [1297] = 1297, - [1298] = 1296, - [1299] = 1299, + [1297] = 753, + [1298] = 1298, + [1299] = 954, [1300] = 1300, - [1301] = 150, + [1301] = 1301, [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 925, - [1306] = 1306, - [1307] = 914, - [1308] = 1308, + [1305] = 1305, + [1306] = 1305, + [1307] = 942, + [1308] = 1305, [1309] = 1300, - [1310] = 913, - [1311] = 1306, - [1312] = 1300, - [1313] = 1306, - [1314] = 1300, - [1315] = 1306, - [1316] = 914, - [1317] = 300, + [1310] = 1303, + [1311] = 1302, + [1312] = 1304, + [1313] = 1298, + [1314] = 1305, + [1315] = 1300, + [1316] = 950, + [1317] = 1303, [1318] = 1318, [1319] = 1319, - [1320] = 960, - [1321] = 1321, - [1322] = 913, - [1323] = 1321, + [1320] = 1320, + [1321] = 293, + [1322] = 1322, + [1323] = 1319, [1324] = 1324, - [1325] = 913, - [1326] = 150, - [1327] = 300, - [1328] = 959, - [1329] = 308, - [1330] = 308, - [1331] = 150, - [1332] = 914, - [1333] = 934, + [1325] = 292, + [1326] = 297, + [1327] = 298, + [1328] = 1324, + [1329] = 1319, + [1330] = 1324, + [1331] = 1319, + [1332] = 1324, + [1333] = 1333, [1334] = 1334, [1335] = 1335, [1336] = 1336, - [1337] = 1335, - [1338] = 980, - [1339] = 1339, - [1340] = 1334, - [1341] = 1336, - [1342] = 1342, - [1343] = 1343, - [1344] = 984, - [1345] = 979, - [1346] = 1342, - [1347] = 1343, - [1348] = 1336, - [1349] = 1342, - [1350] = 1350, - [1351] = 1350, - [1352] = 1350, - [1353] = 1350, - [1354] = 1350, - [1355] = 1350, - [1356] = 1350, - [1357] = 1350, - [1358] = 354, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1350, - [1363] = 1363, - [1364] = 1350, - [1365] = 1334, - [1366] = 323, - [1367] = 1350, - [1368] = 1342, - [1369] = 351, - [1370] = 1334, - [1371] = 1350, - [1372] = 379, - [1373] = 1350, - [1374] = 1359, - [1375] = 1350, - [1376] = 1376, - [1377] = 324, - [1378] = 381, - [1379] = 354, - [1380] = 1380, - [1381] = 1350, - [1382] = 1376, - [1383] = 1383, - [1384] = 351, - [1385] = 1385, - [1386] = 1386, - [1387] = 1376, - [1388] = 1350, - [1389] = 324, - [1390] = 1376, - [1391] = 1350, - [1392] = 977, - [1393] = 1393, - [1394] = 1350, - [1395] = 323, - [1396] = 977, - [1397] = 83, + [1337] = 305, + [1338] = 1319, + [1339] = 1319, + [1340] = 1319, + [1341] = 1319, + [1342] = 1319, + [1343] = 1319, + [1344] = 1319, + [1345] = 1319, + [1346] = 1319, + [1347] = 1319, + [1348] = 1319, + [1349] = 1319, + [1350] = 1319, + [1351] = 1319, + [1352] = 293, + [1353] = 1298, + [1354] = 1354, + [1355] = 292, + [1356] = 953, + [1357] = 1357, + [1358] = 297, + [1359] = 298, + [1360] = 1334, + [1361] = 1303, + [1362] = 1298, + [1363] = 307, + [1364] = 86, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 84, + [1371] = 1371, + [1372] = 1371, + [1373] = 1373, + [1374] = 1369, + [1375] = 1369, + [1376] = 1371, + [1377] = 1365, + [1378] = 1378, + [1379] = 953, + [1380] = 86, + [1381] = 1373, + [1382] = 1371, + [1383] = 1373, + [1384] = 953, + [1385] = 1373, + [1386] = 84, + [1387] = 1387, + [1388] = 1365, + [1389] = 1365, + [1390] = 1390, + [1391] = 1391, + [1392] = 1391, + [1393] = 1369, + [1394] = 1394, + [1395] = 1395, + [1396] = 313, + [1397] = 1397, [1398] = 1398, - [1399] = 85, - [1400] = 83, + [1399] = 1399, + [1400] = 1400, [1401] = 1401, [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 85, - [1406] = 1403, + [1405] = 1405, + [1406] = 1406, [1407] = 1407, [1408] = 1408, - [1409] = 977, - [1410] = 1407, + [1409] = 1409, + [1410] = 1410, [1411] = 1411, - [1412] = 1408, - [1413] = 1404, - [1414] = 1414, - [1415] = 1407, + [1412] = 1412, + [1413] = 1413, + [1414] = 1407, + [1415] = 1406, [1416] = 1416, - [1417] = 1408, - [1418] = 1408, + [1417] = 1411, + [1418] = 1413, [1419] = 1419, - [1420] = 1407, - [1421] = 1398, - [1422] = 1398, - [1423] = 1404, - [1424] = 1404, - [1425] = 1398, - [1426] = 398, - [1427] = 1427, + [1420] = 1400, + [1421] = 1401, + [1422] = 1402, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1407, [1428] = 1428, - [1429] = 397, + [1429] = 1403, [1430] = 1430, - [1431] = 380, + [1431] = 1412, [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, + [1433] = 1405, + [1434] = 1406, + [1435] = 1408, + [1436] = 1423, [1437] = 1437, - [1438] = 1438, + [1438] = 1411, [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 391, - [1445] = 1445, + [1444] = 1407, + [1445] = 1412, [1446] = 1446, [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 397, - [1452] = 1434, - [1453] = 1453, - [1454] = 1454, - [1455] = 1427, - [1456] = 398, - [1457] = 1441, - [1458] = 1430, - [1459] = 1459, + [1448] = 1412, + [1449] = 1406, + [1450] = 1411, + [1451] = 1407, + [1452] = 1452, + [1453] = 1412, + [1454] = 312, + [1455] = 1455, + [1456] = 1407, + [1457] = 1412, + [1458] = 1458, + [1459] = 1412, [1460] = 1460, - [1461] = 380, - [1462] = 1462, - [1463] = 1439, - [1464] = 1440, - [1465] = 1442, + [1461] = 1407, + [1462] = 1412, + [1463] = 1463, + [1464] = 1406, + [1465] = 314, [1466] = 1466, - [1467] = 1446, - [1468] = 1448, + [1467] = 311, + [1468] = 1411, [1469] = 1469, - [1470] = 1470, - [1471] = 1434, - [1472] = 1472, - [1473] = 1473, - [1474] = 1427, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1446, - [1480] = 1446, - [1481] = 1448, - [1482] = 1434, - [1483] = 1427, - [1484] = 1484, - [1485] = 1446, - [1486] = 1436, - [1487] = 1446, - [1488] = 1448, - [1489] = 389, + [1470] = 1408, + [1471] = 311, + [1472] = 1424, + [1473] = 1428, + [1474] = 1474, + [1475] = 1466, + [1476] = 1397, + [1477] = 1409, + [1478] = 1443, + [1479] = 1479, + [1480] = 1480, + [1481] = 1424, + [1482] = 1428, + [1483] = 1483, + [1484] = 1474, + [1485] = 1466, + [1486] = 1397, + [1487] = 314, + [1488] = 1409, + [1489] = 1443, [1490] = 1490, - [1491] = 1446, - [1492] = 1448, - [1493] = 1493, - [1494] = 1494, - [1495] = 391, - [1496] = 1496, - [1497] = 1493, - [1498] = 1498, - [1499] = 1432, - [1500] = 1454, - [1501] = 1501, - [1502] = 1490, - [1503] = 1503, - [1504] = 1478, - [1505] = 1427, - [1506] = 1470, + [1491] = 309, + [1492] = 1424, + [1493] = 1428, + [1494] = 1474, + [1495] = 1474, + [1496] = 1466, + [1497] = 1397, + [1498] = 312, + [1499] = 1409, + [1500] = 1443, + [1501] = 313, + [1502] = 1408, + [1503] = 1458, + [1504] = 309, + [1505] = 1505, + [1506] = 1506, [1507] = 1507, - [1508] = 1469, - [1509] = 1509, - [1510] = 1503, - [1511] = 1437, - [1512] = 1432, - [1513] = 1454, - [1514] = 1438, - [1515] = 1490, - [1516] = 1448, - [1517] = 1503, - [1518] = 1478, - [1519] = 1470, - [1520] = 1469, + [1508] = 1423, + [1509] = 1423, + [1510] = 1407, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1512, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, [1521] = 1521, [1522] = 1522, - [1523] = 1432, - [1524] = 1454, - [1525] = 1493, + [1523] = 1523, + [1524] = 1524, + [1525] = 1512, [1526] = 1526, - [1527] = 1490, - [1528] = 1503, - [1529] = 1478, - [1530] = 1470, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, [1531] = 1531, - [1532] = 1469, - [1533] = 1446, - [1534] = 389, - [1535] = 1448, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, [1536] = 1536, - [1537] = 1436, + [1537] = 1537, [1538] = 1538, - [1539] = 1434, - [1540] = 1493, - [1541] = 1436, - [1542] = 1448, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, [1547] = 1547, - [1548] = 1548, + [1548] = 1518, [1549] = 1549, - [1550] = 1543, + [1550] = 1550, [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, + [1552] = 1513, + [1553] = 1515, + [1554] = 1538, + [1555] = 1539, + [1556] = 1540, + [1557] = 1516, + [1558] = 1541, [1559] = 1559, [1560] = 1560, - [1561] = 1553, + [1561] = 1518, [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, + [1563] = 1521, + [1564] = 1521, + [1565] = 1517, + [1566] = 1522, + [1567] = 1518, + [1568] = 1523, + [1569] = 1524, + [1570] = 1526, [1571] = 1571, [1572] = 1572, - [1573] = 1573, + [1573] = 1512, [1574] = 1574, - [1575] = 1575, + [1575] = 1518, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1562, - [1580] = 1580, - [1581] = 1581, + [1579] = 1041, + [1580] = 1529, + [1581] = 1530, [1582] = 1582, [1583] = 1583, - [1584] = 1556, - [1585] = 1585, + [1584] = 1518, + [1585] = 1532, [1586] = 1586, - [1587] = 1587, - [1588] = 1544, - [1589] = 1544, - [1590] = 1564, - [1591] = 1546, - [1592] = 1592, - [1593] = 1549, - [1594] = 1594, - [1595] = 1547, - [1596] = 1544, - [1597] = 1597, - [1598] = 1557, - [1599] = 1565, - [1600] = 1544, - [1601] = 1549, - [1602] = 1543, - [1603] = 1581, - [1604] = 1543, - [1605] = 1573, - [1606] = 1544, - [1607] = 1566, - [1608] = 1562, - [1609] = 1558, - [1610] = 1560, - [1611] = 1611, - [1612] = 1612, - [1613] = 1556, - [1614] = 1614, - [1615] = 1557, + [1587] = 1533, + [1588] = 1534, + [1589] = 1542, + [1590] = 1535, + [1591] = 1538, + [1592] = 1515, + [1593] = 1593, + [1594] = 1518, + [1595] = 1539, + [1596] = 1540, + [1597] = 1516, + [1598] = 1541, + [1599] = 1542, + [1600] = 1543, + [1601] = 1544, + [1602] = 1522, + [1603] = 1523, + [1604] = 1524, + [1605] = 1526, + [1606] = 1545, + [1607] = 1521, + [1608] = 1529, + [1609] = 1546, + [1610] = 1547, + [1611] = 1530, + [1612] = 1520, + [1613] = 1543, + [1614] = 1532, + [1615] = 1544, [1616] = 1616, - [1617] = 1558, - [1618] = 1559, - [1619] = 1619, - [1620] = 1567, - [1621] = 1564, - [1622] = 1544, - [1623] = 1559, - [1624] = 1569, - [1625] = 1553, - [1626] = 1562, - [1627] = 1582, - [1628] = 1564, - [1629] = 1629, - [1630] = 1565, - [1631] = 1565, - [1632] = 1566, - [1633] = 1567, - [1634] = 1569, - [1635] = 1570, - [1636] = 1571, - [1637] = 1572, - [1638] = 1638, - [1639] = 1559, - [1640] = 1567, - [1641] = 1573, - [1642] = 1574, - [1643] = 1548, - [1644] = 1644, - [1645] = 1575, - [1646] = 1574, - [1647] = 1575, - [1648] = 1619, - [1649] = 1576, - [1650] = 1576, - [1651] = 1577, - [1652] = 1582, - [1653] = 1577, - [1654] = 1578, - [1655] = 1585, - [1656] = 1656, - [1657] = 1657, - [1658] = 1570, - [1659] = 1571, + [1617] = 1617, + [1618] = 1550, + [1619] = 1533, + [1620] = 1620, + [1621] = 1545, + [1622] = 1546, + [1623] = 1534, + [1624] = 1624, + [1625] = 1535, + [1626] = 1520, + [1627] = 1532, + [1628] = 1522, + [1629] = 1560, + [1630] = 1529, + [1631] = 1538, + [1632] = 1516, + [1633] = 1633, + [1634] = 1634, + [1635] = 1547, + [1636] = 1533, + [1637] = 1616, + [1638] = 1620, + [1639] = 1576, + [1640] = 1534, + [1641] = 1535, + [1642] = 1642, + [1643] = 1643, + [1644] = 1562, + [1645] = 1645, + [1646] = 1539, + [1647] = 1540, + [1648] = 1517, + [1649] = 1523, + [1650] = 1531, + [1651] = 1517, + [1652] = 1541, + [1653] = 1550, + [1654] = 1620, + [1655] = 1520, + [1656] = 1560, + [1657] = 1511, + [1658] = 1658, + [1659] = 1659, [1660] = 1660, - [1661] = 1661, - [1662] = 1552, - [1663] = 1663, - [1664] = 1572, - [1665] = 1665, - [1666] = 1545, - [1667] = 1548, - [1668] = 1619, - [1669] = 1551, - [1670] = 1670, - [1671] = 1552, - [1672] = 1672, - [1673] = 1582, - [1674] = 1569, - [1675] = 1570, - [1676] = 1573, - [1677] = 1670, - [1678] = 1571, - [1679] = 1574, - [1680] = 1105, - [1681] = 1545, - [1682] = 1548, - [1683] = 1551, + [1661] = 1542, + [1662] = 1550, + [1663] = 1543, + [1664] = 1576, + [1665] = 1524, + [1666] = 1544, + [1667] = 1583, + [1668] = 1545, + [1669] = 1546, + [1670] = 1547, + [1671] = 1530, + [1672] = 1583, + [1673] = 1620, + [1674] = 1576, + [1675] = 1531, + [1676] = 1583, + [1677] = 1526, + [1678] = 1513, + [1679] = 1513, + [1680] = 1511, + [1681] = 1531, + [1682] = 1511, + [1683] = 1574, [1684] = 1560, - [1685] = 1545, - [1686] = 1581, - [1687] = 1585, - [1688] = 1546, - [1689] = 1611, - [1690] = 1619, - [1691] = 1552, + [1685] = 1574, + [1686] = 1562, + [1687] = 1574, + [1688] = 1518, + [1689] = 1515, + [1690] = 1690, + [1691] = 1691, [1692] = 1692, - [1693] = 1578, - [1694] = 1551, - [1695] = 1544, - [1696] = 1575, - [1697] = 1546, - [1698] = 1547, - [1699] = 1576, - [1700] = 1549, - [1701] = 1577, - [1702] = 1578, - [1703] = 1581, - [1704] = 1704, - [1705] = 1572, - [1706] = 1611, + [1693] = 1693, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 335, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 360, + [1705] = 367, + [1706] = 1706, [1707] = 1707, - [1708] = 1547, - [1709] = 1611, + [1708] = 1708, + [1709] = 1709, [1710] = 1710, - [1711] = 1583, - [1712] = 1583, - [1713] = 1583, - [1714] = 1594, - [1715] = 1594, - [1716] = 1556, - [1717] = 1594, - [1718] = 1557, - [1719] = 1558, - [1720] = 1585, - [1721] = 1553, - [1722] = 1566, + [1711] = 370, + [1712] = 1712, + [1713] = 1699, + [1714] = 1714, + [1715] = 371, + [1716] = 372, + [1717] = 1717, + [1718] = 1706, + [1719] = 1719, + [1720] = 1720, + [1721] = 1720, + [1722] = 1722, [1723] = 1723, - [1724] = 437, + [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 447, - [1728] = 440, + [1727] = 1727, + [1728] = 340, [1729] = 1729, [1730] = 1730, - [1731] = 1731, + [1731] = 1708, [1732] = 1732, - [1733] = 1726, - [1734] = 1723, - [1735] = 1735, - [1736] = 1736, - [1737] = 481, - [1738] = 1738, + [1733] = 1733, + [1734] = 1709, + [1735] = 1729, + [1736] = 1691, + [1737] = 1737, + [1738] = 1694, [1739] = 1739, - [1740] = 1738, - [1741] = 1731, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 482, - [1749] = 1749, + [1740] = 1699, + [1741] = 1741, + [1742] = 1714, + [1743] = 1717, + [1744] = 1706, + [1745] = 1730, + [1746] = 1699, + [1747] = 1729, + [1748] = 1730, + [1749] = 1708, [1750] = 1750, - [1751] = 1723, - [1752] = 455, - [1753] = 441, + [1751] = 1751, + [1752] = 1694, + [1753] = 1714, [1754] = 1754, - [1755] = 1755, - [1756] = 1739, - [1757] = 1730, - [1758] = 1731, - [1759] = 1759, - [1760] = 1723, - [1761] = 1735, - [1762] = 1736, - [1763] = 448, - [1764] = 450, - [1765] = 1739, - [1766] = 1738, - [1767] = 1735, - [1768] = 1744, - [1769] = 1746, - [1770] = 1726, - [1771] = 449, - [1772] = 452, - [1773] = 445, - [1774] = 1774, - [1775] = 1775, + [1755] = 1697, + [1756] = 344, + [1757] = 1720, + [1758] = 1758, + [1759] = 1697, + [1760] = 345, + [1761] = 1761, + [1762] = 347, + [1763] = 348, + [1764] = 349, + [1765] = 375, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1717, + [1771] = 1706, + [1772] = 1720, + [1773] = 1729, + [1774] = 1730, + [1775] = 1708, [1776] = 1776, - [1777] = 451, - [1778] = 1778, - [1779] = 1730, - [1780] = 1731, - [1781] = 1781, - [1782] = 1723, - [1783] = 1735, - [1784] = 1736, - [1785] = 455, + [1777] = 1700, + [1778] = 1694, + [1779] = 1714, + [1780] = 1725, + [1781] = 1720, + [1782] = 1697, + [1783] = 1783, + [1784] = 1727, + [1785] = 1701, [1786] = 1786, - [1787] = 1739, - [1788] = 1738, - [1789] = 1789, - [1790] = 1744, - [1791] = 1746, - [1792] = 454, - [1793] = 453, - [1794] = 446, - [1795] = 1795, - [1796] = 457, - [1797] = 483, - [1798] = 1798, - [1799] = 1726, - [1800] = 447, - [1801] = 1730, - [1802] = 1731, - [1803] = 448, - [1804] = 1723, - [1805] = 1735, - [1806] = 1736, - [1807] = 1744, - [1808] = 1808, - [1809] = 1739, - [1810] = 1738, - [1811] = 1811, - [1812] = 1744, - [1813] = 1746, - [1814] = 1814, - [1815] = 1815, - [1816] = 1731, - [1817] = 1723, - [1818] = 1739, - [1819] = 450, - [1820] = 1746, - [1821] = 457, - [1822] = 1726, - [1823] = 1731, - [1824] = 1723, - [1825] = 1739, - [1826] = 1826, - [1827] = 1746, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, - [1831] = 1736, - [1832] = 1746, - [1833] = 1833, - [1834] = 452, - [1835] = 1746, - [1836] = 432, - [1837] = 338, - [1838] = 458, - [1839] = 454, - [1840] = 460, + [1787] = 1787, + [1788] = 1788, + [1789] = 1739, + [1790] = 1790, + [1791] = 1791, + [1792] = 1717, + [1793] = 1706, + [1794] = 1758, + [1795] = 1729, + [1796] = 1730, + [1797] = 1708, + [1798] = 1717, + [1799] = 1706, + [1800] = 1694, + [1801] = 1714, + [1802] = 1697, + [1803] = 1720, + [1804] = 1697, + [1805] = 1805, + [1806] = 1758, + [1807] = 1807, + [1808] = 350, + [1809] = 327, + [1810] = 1700, + [1811] = 1701, + [1812] = 1812, + [1813] = 1699, + [1814] = 1717, + [1815] = 1706, + [1816] = 1816, + [1817] = 1729, + [1818] = 1730, + [1819] = 1708, + [1820] = 1697, + [1821] = 1699, + [1822] = 1694, + [1823] = 1714, + [1824] = 1720, + [1825] = 1697, + [1826] = 328, + [1827] = 1827, + [1828] = 1717, + [1829] = 1706, + [1830] = 1729, + [1831] = 1694, + [1832] = 1699, + [1833] = 1697, + [1834] = 1834, + [1835] = 1699, + [1836] = 1717, + [1837] = 1706, + [1838] = 1729, + [1839] = 1694, + [1840] = 1697, [1841] = 1841, - [1842] = 458, - [1843] = 1843, - [1844] = 1830, - [1845] = 1845, - [1846] = 1846, - [1847] = 464, - [1848] = 1848, + [1842] = 1729, + [1843] = 1717, + [1844] = 1729, + [1845] = 1697, + [1846] = 1730, + [1847] = 1717, + [1848] = 1697, [1849] = 1849, - [1850] = 1850, - [1851] = 1726, - [1852] = 1852, - [1853] = 460, - [1854] = 1848, + [1850] = 1708, + [1851] = 1851, + [1852] = 329, + [1853] = 1853, + [1854] = 1854, [1855] = 1855, - [1856] = 466, + [1856] = 1834, [1857] = 1857, [1858] = 1858, - [1859] = 1859, - [1860] = 1726, + [1859] = 331, + [1860] = 326, [1861] = 1861, - [1862] = 432, - [1863] = 464, - [1864] = 1864, - [1865] = 1865, - [1866] = 443, - [1867] = 1867, - [1868] = 1868, + [1862] = 1699, + [1863] = 1699, + [1864] = 291, + [1865] = 1699, + [1866] = 334, + [1867] = 364, + [1868] = 1767, [1869] = 1869, - [1870] = 1867, - [1871] = 1871, - [1872] = 1829, - [1873] = 466, - [1874] = 1874, - [1875] = 476, - [1876] = 480, + [1870] = 366, + [1871] = 336, + [1872] = 337, + [1873] = 368, + [1874] = 338, + [1875] = 339, + [1876] = 341, [1877] = 1877, - [1878] = 1746, - [1879] = 1879, - [1880] = 470, - [1881] = 1730, - [1882] = 1731, - [1883] = 1877, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 480, - [1888] = 1749, - [1889] = 1775, - [1890] = 1789, - [1891] = 1891, + [1878] = 369, + [1879] = 1724, + [1880] = 342, + [1881] = 1841, + [1882] = 1882, + [1883] = 1851, + [1884] = 1854, + [1885] = 343, + [1886] = 1787, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 346, + [1891] = 1786, [1892] = 1892, - [1893] = 1726, + [1893] = 351, [1894] = 1894, - [1895] = 1884, - [1896] = 1879, + [1895] = 1882, + [1896] = 1888, [1897] = 1897, - [1898] = 1745, - [1899] = 470, - [1900] = 472, - [1901] = 1848, - [1902] = 479, + [1898] = 1898, + [1899] = 352, + [1900] = 1788, + [1901] = 1805, + [1902] = 1807, [1903] = 1903, - [1904] = 1843, - [1905] = 481, - [1906] = 1726, - [1907] = 420, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, [1908] = 1908, - [1909] = 461, - [1910] = 1730, - [1911] = 1911, - [1912] = 1869, - [1913] = 1726, + [1909] = 1909, + [1910] = 1910, + [1911] = 1727, + [1912] = 1904, + [1913] = 353, [1914] = 1914, - [1915] = 1731, - [1916] = 1843, - [1917] = 428, - [1918] = 461, - [1919] = 1726, - [1920] = 429, - [1921] = 1723, - [1922] = 1922, - [1923] = 423, - [1924] = 473, - [1925] = 1735, - [1926] = 1723, - [1927] = 1865, - [1928] = 1735, - [1929] = 1867, - [1930] = 1869, - [1931] = 1736, - [1932] = 1871, - [1933] = 1829, - [1934] = 1726, + [1915] = 354, + [1916] = 1916, + [1917] = 1834, + [1918] = 1918, + [1919] = 1919, + [1920] = 295, + [1921] = 1921, + [1922] = 330, + [1923] = 355, + [1924] = 332, + [1925] = 356, + [1926] = 1926, + [1927] = 375, + [1928] = 333, + [1929] = 1724, + [1930] = 1841, + [1931] = 1699, + [1932] = 1851, + [1933] = 1854, + [1934] = 1934, [1935] = 1935, - [1936] = 1736, - [1937] = 1894, - [1938] = 1879, - [1939] = 1739, - [1940] = 1940, - [1941] = 479, - [1942] = 1877, - [1943] = 1884, - [1944] = 1726, - [1945] = 1945, - [1946] = 1808, - [1947] = 1749, - [1948] = 1775, - [1949] = 1789, - [1950] = 419, - [1951] = 1892, - [1952] = 1738, - [1953] = 1953, - [1954] = 1945, - [1955] = 1955, - [1956] = 1746, - [1957] = 428, - [1958] = 429, + [1936] = 335, + [1937] = 357, + [1938] = 1786, + [1939] = 358, + [1940] = 1709, + [1941] = 359, + [1942] = 1882, + [1943] = 1888, + [1944] = 360, + [1945] = 367, + [1946] = 364, + [1947] = 1788, + [1948] = 1805, + [1949] = 1807, + [1950] = 361, + [1951] = 1904, + [1952] = 1952, + [1953] = 370, + [1954] = 1954, + [1955] = 371, + [1956] = 372, + [1957] = 362, + [1958] = 1958, [1959] = 1959, - [1960] = 1739, + [1960] = 1960, [1961] = 1961, - [1962] = 433, - [1963] = 434, - [1964] = 420, - [1965] = 423, - [1966] = 435, - [1967] = 1738, - [1968] = 425, - [1969] = 1969, - [1970] = 1744, - [1971] = 426, - [1972] = 1865, - [1973] = 1743, - [1974] = 1869, - [1975] = 427, - [1976] = 1871, - [1977] = 1829, - [1978] = 1978, - [1979] = 1730, - [1980] = 1980, - [1981] = 1830, - [1982] = 1879, - [1983] = 1983, + [1962] = 350, + [1963] = 327, + [1964] = 328, + [1965] = 329, + [1966] = 363, + [1967] = 365, + [1968] = 1709, + [1969] = 1699, + [1970] = 1970, + [1971] = 1877, + [1972] = 331, + [1973] = 1841, + [1974] = 326, + [1975] = 1851, + [1976] = 1854, + [1977] = 1977, + [1978] = 1717, + [1979] = 294, + [1980] = 1717, + [1981] = 1786, + [1982] = 1706, + [1983] = 366, [1984] = 1984, - [1985] = 1871, - [1986] = 1877, - [1987] = 1884, - [1988] = 437, - [1989] = 1989, - [1990] = 425, - [1991] = 1749, - [1992] = 1775, - [1993] = 1789, - [1994] = 1994, - [1995] = 1892, - [1996] = 1848, - [1997] = 1815, - [1998] = 1726, - [1999] = 1746, - [2000] = 2000, - [2001] = 433, - [2002] = 467, - [2003] = 2003, - [2004] = 468, - [2005] = 1730, - [2006] = 1731, - [2007] = 440, - [2008] = 1894, - [2009] = 469, - [2010] = 1808, - [2011] = 2011, - [2012] = 2012, - [2013] = 1723, - [2014] = 1735, - [2015] = 1736, - [2016] = 1726, - [2017] = 350, - [2018] = 1744, - [2019] = 1811, - [2020] = 434, - [2021] = 2021, - [2022] = 1750, - [2023] = 2023, - [2024] = 1859, - [2025] = 419, - [2026] = 449, + [1985] = 1882, + [1986] = 1888, + [1987] = 334, + [1988] = 1988, + [1989] = 368, + [1990] = 1788, + [1991] = 1805, + [1992] = 1807, + [1993] = 336, + [1994] = 1904, + [1995] = 1699, + [1996] = 337, + [1997] = 338, + [1998] = 339, + [1999] = 341, + [2000] = 342, + [2001] = 343, + [2002] = 2002, + [2003] = 346, + [2004] = 351, + [2005] = 352, + [2006] = 353, + [2007] = 354, + [2008] = 355, + [2009] = 356, + [2010] = 357, + [2011] = 358, + [2012] = 359, + [2013] = 1699, + [2014] = 2014, + [2015] = 361, + [2016] = 362, + [2017] = 363, + [2018] = 365, + [2019] = 1729, + [2020] = 1730, + [2021] = 1699, + [2022] = 1723, + [2023] = 1708, + [2024] = 1750, + [2025] = 1707, + [2026] = 1952, [2027] = 2027, [2028] = 2028, - [2029] = 1798, - [2030] = 1969, - [2031] = 451, - [2032] = 1774, - [2033] = 1743, - [2034] = 1983, - [2035] = 1903, - [2036] = 453, - [2037] = 1868, - [2038] = 1935, - [2039] = 1940, - [2040] = 469, - [2041] = 2041, - [2042] = 441, - [2043] = 483, - [2044] = 1892, - [2045] = 472, - [2046] = 2046, - [2047] = 473, - [2048] = 2048, - [2049] = 2049, + [2029] = 340, + [2030] = 1751, + [2031] = 1719, + [2032] = 1761, + [2033] = 1695, + [2034] = 1960, + [2035] = 1700, + [2036] = 1970, + [2037] = 1894, + [2038] = 2038, + [2039] = 1733, + [2040] = 1691, + [2041] = 1887, + [2042] = 2042, + [2043] = 2043, + [2044] = 1694, + [2045] = 1723, + [2046] = 1701, + [2047] = 1750, + [2048] = 1707, + [2049] = 1952, [2050] = 2050, - [2051] = 2051, - [2052] = 1830, - [2053] = 2053, - [2054] = 1945, + [2051] = 330, + [2052] = 1751, + [2053] = 1719, + [2054] = 1761, [2055] = 1739, - [2056] = 2056, - [2057] = 2057, - [2058] = 482, - [2059] = 1738, - [2060] = 475, - [2061] = 2061, - [2062] = 435, - [2063] = 1786, - [2064] = 1746, - [2065] = 1745, - [2066] = 2066, - [2067] = 1855, - [2068] = 476, - [2069] = 445, - [2070] = 1811, - [2071] = 426, - [2072] = 2021, - [2073] = 1750, - [2074] = 2023, - [2075] = 1874, - [2076] = 2076, - [2077] = 2028, - [2078] = 1798, - [2079] = 1969, - [2080] = 477, - [2081] = 1774, - [2082] = 2082, - [2083] = 1983, - [2084] = 1903, - [2085] = 1894, - [2086] = 1868, - [2087] = 1935, - [2088] = 1940, - [2089] = 1811, - [2090] = 2023, - [2091] = 2021, - [2092] = 1750, - [2093] = 2028, - [2094] = 353, - [2095] = 2028, - [2096] = 1798, - [2097] = 1969, - [2098] = 1808, - [2099] = 1774, - [2100] = 467, - [2101] = 1983, - [2102] = 1903, - [2103] = 468, - [2104] = 1868, - [2105] = 1935, - [2106] = 1940, - [2107] = 1864, - [2108] = 1814, + [2056] = 1960, + [2057] = 1714, + [2058] = 1970, + [2059] = 1894, + [2060] = 1699, + [2061] = 1733, + [2062] = 349, + [2063] = 1887, + [2064] = 1723, + [2065] = 332, + [2066] = 1750, + [2067] = 1707, + [2068] = 1737, + [2069] = 1699, + [2070] = 1751, + [2071] = 1719, + [2072] = 1761, + [2073] = 2027, + [2074] = 1960, + [2075] = 1849, + [2076] = 1970, + [2077] = 1894, + [2078] = 1877, + [2079] = 1733, + [2080] = 1691, + [2081] = 1887, + [2082] = 1827, + [2083] = 1702, + [2084] = 1737, + [2085] = 1703, + [2086] = 1954, + [2087] = 1869, + [2088] = 1827, + [2089] = 1702, + [2090] = 1694, + [2091] = 1703, + [2092] = 1954, + [2093] = 1869, + [2094] = 1827, + [2095] = 1702, + [2096] = 369, + [2097] = 1703, + [2098] = 1954, + [2099] = 1869, + [2100] = 333, + [2101] = 2101, + [2102] = 344, + [2103] = 1720, + [2104] = 345, + [2105] = 1714, + [2106] = 1727, + [2107] = 347, + [2108] = 348, [2109] = 2109, - [2110] = 2057, - [2111] = 1759, - [2112] = 1849, - [2113] = 1744, - [2114] = 1864, - [2115] = 1814, - [2116] = 1726, - [2117] = 2057, - [2118] = 1759, - [2119] = 1849, - [2120] = 1864, - [2121] = 1814, - [2122] = 2021, - [2123] = 2057, - [2124] = 1759, - [2125] = 1849, - [2126] = 1726, - [2127] = 475, - [2128] = 1953, - [2129] = 443, - [2130] = 2130, - [2131] = 1743, - [2132] = 1865, - [2133] = 1726, - [2134] = 446, - [2135] = 427, - [2136] = 2050, - [2137] = 477, - [2138] = 2050, - [2139] = 2139, - [2140] = 2050, - [2141] = 2141, + [2110] = 1910, + [2111] = 2111, + [2112] = 1910, + [2113] = 1739, + [2114] = 1910, + [2115] = 1877, }; static TSCharacterRange sym_generic_token_character_set_1[] = { @@ -5097,2290 +5148,2719 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(461); + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1797, - '"', 1720, - '#', 463, - '$', 592, - '%', 1757, - '&', 1511, - '\'', 123, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1777, - '.', 1820, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - ';', 1453, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 1709, + '#', 527, + '$', 658, + '%', 1744, + '&', 1389, + '\'', 177, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1764, + '.', 1808, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + ';', 1323, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(446); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(504); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(675); + lookahead == 'b') ADVANCE(740); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(650); + lookahead == 'c') ADVANCE(717); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(654); + lookahead == 'd') ADVANCE(721); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(773); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(697); + lookahead == 'f') ADVANCE(759); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(688); + lookahead == 'i') ADVANCE(751); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(656); + lookahead == 'p') ADVANCE(723); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(681); + lookahead == 'r') ADVANCE(742); if (lookahead == 'S' || - lookahead == 's') ADVANCE(676); + lookahead == 's') ADVANCE(741); if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(756); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(787); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(696); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(757); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(453); + lookahead == 0xfeff) SKIP(517); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(80); + lookahead == ' ') ADVANCE(129); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); case 1: - if (lookahead == '\n') SKIP(81); + if (lookahead == '\n') ADVANCE(171); + if (lookahead == '#') ADVANCE(170); + if (lookahead == '`') ADVANCE(103); + if (lookahead != 0) ADVANCE(171); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(596); - if (lookahead == ' ') ADVANCE(2); + if (lookahead == '\n') SKIP(130); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(5); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3); + if (lookahead == '\n') SKIP(130); + if (lookahead == '\r') SKIP(2); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(4); - if (lookahead == '\'') ADVANCE(40); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(5); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(662); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(5); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == ' ') ADVANCE(5); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(48); - if (lookahead == '\'') ADVANCE(40); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(9); + if (lookahead == '\r') ADVANCE(6); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(6); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(48); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(8); + if (lookahead == '\r') ADVANCE(6); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(6); END_STATE(); case 8: - if (lookahead == '\n') SKIP(89); + if (lookahead == '\n') ADVANCE(8); + if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\'') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(9); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 9: - if (lookahead == '\n') SKIP(90); + if (lookahead == '\n') ADVANCE(8); + if (lookahead == '\r') ADVANCE(7); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(9); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 10: - if (lookahead == '\n') SKIP(94); + if (lookahead == '\n') ADVANCE(85); END_STATE(); case 11: - if (lookahead == '\n') SKIP(58); + if (lookahead == '\n') ADVANCE(85); + if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\'') ADVANCE(73); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 12: - if (lookahead == '\n') SKIP(95); + if (lookahead == '\n') ADVANCE(85); + if (lookahead == '\r') ADVANCE(10); + if (lookahead != 0) ADVANCE(12); END_STATE(); case 13: - if (lookahead == '\n') SKIP(14); + if (lookahead == '\n') SKIP(139); END_STATE(); case 14: - ADVANCE_MAP( - '\n', 1486, - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, - ); - if (lookahead == '`') SKIP(13); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1653); - if (lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1530); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if (lookahead != 0 && - (lookahead < ' ' || '9' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == '\n') SKIP(139); + if (lookahead == '\r') SKIP(13); END_STATE(); case 15: - if (lookahead == '\n') SKIP(88); + if (lookahead == '\n') SKIP(140); END_STATE(); case 16: - if (lookahead == '\n') SKIP(77); + if (lookahead == '\n') SKIP(140); + if (lookahead == '\r') SKIP(15); END_STATE(); case 17: - if (lookahead == '\n') SKIP(63); + if (lookahead == '\n') SKIP(144); END_STATE(); case 18: - if (lookahead == '\n') SKIP(100); + if (lookahead == '\n') SKIP(144); + if (lookahead == '\r') SKIP(17); END_STATE(); case 19: - if (lookahead == '\n') SKIP(59); + if (lookahead == '\n') SKIP(126); END_STATE(); case 20: - if (lookahead == '\n') SKIP(107); + if (lookahead == '\n') SKIP(126); + if (lookahead == '\r') SKIP(19); END_STATE(); case 21: - if (lookahead == '\n') SKIP(66); + ADVANCE_MAP( + '\n', 1361, + '\r', 23, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, + ); + if (lookahead == '`') SKIP(26); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1625); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1579); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1659); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1608); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1540); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1550); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(137); + if (lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (lookahead != 0 && + (lookahead < ' ' || '9' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); case 22: - if (lookahead == '\n') SKIP(69); + if (lookahead == '\n') ADVANCE(1361); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(537); + if (lookahead == ')') ADVANCE(1327); + if (lookahead == ';') ADVANCE(1323); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(68); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(165); END_STATE(); case 23: - if (lookahead == '\n') SKIP(72); + ADVANCE_MAP( + '\n', 1361, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, + ); + if (lookahead == '`') SKIP(26); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1625); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1579); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1659); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1608); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1540); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1550); + if (lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1417); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (lookahead != 0 && + (lookahead < ' ' || '9' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); case 24: - if (lookahead == '\n') SKIP(74); + if (lookahead == '\n') ADVANCE(1361); + if (lookahead == '#') ADVANCE(537); + if (lookahead == ')') ADVANCE(1327); + if (lookahead == ';') ADVANCE(1323); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(68); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(165); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(1523); - if (lookahead != 0) ADVANCE(1522); + if (lookahead == '\n') SKIP(137); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(588); - if (lookahead != 0) ADVANCE(588); + if (lookahead == '\n') SKIP(137); + if (lookahead == '\r') SKIP(25); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(27); - if (lookahead == '"') ADVANCE(157); - if (lookahead == '#') ADVANCE(642); - if (lookahead == '$') ADVANCE(640); - if (lookahead == '<') ADVANCE(639); - if (lookahead == '@') ADVANCE(641); - if (lookahead == '`') ADVANCE(638); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(638); - if (lookahead != 0) ADVANCE(638); + if (lookahead == '\n') SKIP(138); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(27); - if (lookahead == '#') ADVANCE(635); - if (lookahead == '$') ADVANCE(592); - if (lookahead == '<') ADVANCE(598); - if (lookahead == '@') ADVANCE(633); - if (lookahead == '`') ADVANCE(26); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(597); - if (lookahead != 0) ADVANCE(637); + if (lookahead == '\n') SKIP(138); + if (lookahead == '\r') SKIP(27); END_STATE(); case 29: - if (lookahead == '\n') SKIP(110); + if (lookahead == '\n') SKIP(145); END_STATE(); case 30: - if (lookahead == '\n') SKIP(108); + if (lookahead == '\n') SKIP(145); + if (lookahead == '\r') SKIP(29); END_STATE(); case 31: - if (lookahead == '\n') SKIP(118); + if (lookahead == '\n') SKIP(127); END_STATE(); case 32: - if (lookahead == '\n') SKIP(112); + if (lookahead == '\n') SKIP(127); + if (lookahead == '\r') SKIP(31); END_STATE(); case 33: - if (lookahead == '\n') SKIP(33); - if (lookahead == '"') ADVANCE(1447); - if (lookahead == '#') ADVANCE(465); - if (lookahead == '&') ADVANCE(1443); - if (lookahead == ')') ADVANCE(1457); - if (lookahead == '<') ADVANCE(1448); - if (lookahead == '`') ADVANCE(1452); - if (lookahead == '|') ADVANCE(1510); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1445); - if (lookahead != 0) ADVANCE(1452); + if (lookahead == '\n') SKIP(150); END_STATE(); case 34: - if (lookahead == '\n') SKIP(111); + if (lookahead == '\n') SKIP(150); + if (lookahead == '\r') SKIP(33); END_STATE(); case 35: - if (lookahead == '\n') SKIP(35); - if (lookahead == '"') ADVANCE(1447); - if (lookahead == '#') ADVANCE(465); - if (lookahead == '&') ADVANCE(1443); - if (lookahead == '<') ADVANCE(1448); - if (lookahead == '`') ADVANCE(1452); - if (lookahead == '|') ADVANCE(1510); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1446); - if (lookahead != 0) ADVANCE(1452); + if (lookahead == '\n') SKIP(113); END_STATE(); case 36: - if (lookahead == '\n') SKIP(114); + if (lookahead == '\n') SKIP(113); + if (lookahead == '\r') SKIP(35); END_STATE(); case 37: - if (lookahead == '\n') SKIP(38); + if (lookahead == '\n') SKIP(109); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(1487); - if (lookahead == '#') ADVANCE(473); - if (lookahead == ')') ADVANCE(1456); - if (lookahead == ';') ADVANCE(1453); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(37); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(38); + if (lookahead == '\n') SKIP(109); + if (lookahead == '\r') SKIP(37); END_STATE(); case 39: - if (lookahead == '\n') SKIP(113); + if (lookahead == '\n') SKIP(122); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(6); - if (lookahead == '@') ADVANCE(649); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') SKIP(122); + if (lookahead == '\r') SKIP(39); END_STATE(); case 41: - if (lookahead == '\n') SKIP(83); + if (lookahead == '\n') SKIP(116); END_STATE(); case 42: - if (lookahead == '\n') SKIP(93); + if (lookahead == '\n') SKIP(116); + if (lookahead == '\r') SKIP(41); END_STATE(); case 43: - if (lookahead == '\n') SKIP(56); + if (lookahead == '\n') SKIP(160); END_STATE(); case 44: - if (lookahead == '\n') SKIP(76); + if (lookahead == '\n') SKIP(160); + if (lookahead == '\r') SKIP(43); END_STATE(); case 45: - if (lookahead == '\n') SKIP(84); + if (lookahead == '\n') SKIP(119); END_STATE(); case 46: - if (lookahead == '\n') SKIP(86); + if (lookahead == '\n') SKIP(119); + if (lookahead == '\r') SKIP(45); END_STATE(); case 47: - if (lookahead == '\n') SKIP(71); + if (lookahead == '\n') SKIP(124); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(49); - if (lookahead == '\'') ADVANCE(156); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') SKIP(124); + if (lookahead == '\r') SKIP(47); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(49); - if (lookahead == '\'') ADVANCE(155); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(1402); + if (lookahead == '\r') ADVANCE(1401); + if (lookahead != 0) ADVANCE(1400); END_STATE(); case 50: - if (lookahead == '\n') SKIP(78); + if (lookahead == '\n') ADVANCE(1398); END_STATE(); case 51: - if (lookahead == '\n') SKIP(65); + if (lookahead == '\n') SKIP(172); END_STATE(); case 52: - if (lookahead == '\n') SKIP(67); + if (lookahead == '\n') SKIP(172); + if (lookahead == '\r') SKIP(51); END_STATE(); case 53: - if (lookahead == '\n') SKIP(73); + if (lookahead == '\n') ADVANCE(653); + if (lookahead == '\r') ADVANCE(654); + if (lookahead != 0) ADVANCE(653); END_STATE(); case 54: - if (lookahead == '\n') SKIP(75); + ADVANCE_MAP( + '\n', 54, + '\r', 56, + '"', 211, + '#', 708, + '$', 706, + '<', 705, + '@', 707, + '`', 704, + '\t', 704, + 0x0b, 704, + '\f', 704, + ' ', 704, + 0xa0, 704, + 0x200b, 704, + 0x2060, 704, + 0xfeff, 704, + ); + if (lookahead != 0) ADVANCE(704); END_STATE(); case 55: - if (lookahead == '\n') SKIP(91); + ADVANCE_MAP( + '\n', 54, + '\r', 56, + '#', 701, + '$', 658, + '<', 664, + '@', 699, + '`', 53, + '\t', 663, + 0x0b, 663, + '\f', 663, + ' ', 663, + 0xa0, 663, + 0x200b, 663, + 0x2060, 663, + 0xfeff, 663, + ); + if (lookahead != 0) ADVANCE(703); END_STATE(); case 56: + if (lookahead == '\n') ADVANCE(54); + if (lookahead == '#') ADVANCE(537); + if (lookahead == '$') ADVANCE(174); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '@') ADVANCE(206); + if (lookahead == '`') SKIP(58); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(158); + END_STATE(); + case 57: + if (lookahead == '\n') SKIP(158); + END_STATE(); + case 58: + if (lookahead == '\n') SKIP(158); + if (lookahead == '\r') SKIP(57); + END_STATE(); + case 59: + if (lookahead == '\n') SKIP(163); + END_STATE(); + case 60: + if (lookahead == '\n') SKIP(163); + if (lookahead == '\r') SKIP(59); + END_STATE(); + case 61: + if (lookahead == '\n') SKIP(161); + END_STATE(); + case 62: + if (lookahead == '\n') SKIP(161); + if (lookahead == '\r') SKIP(61); + END_STATE(); + case 63: + if (lookahead == '\n') SKIP(166); + END_STATE(); + case 64: + if (lookahead == '\n') SKIP(166); + if (lookahead == '\r') SKIP(63); + END_STATE(); + case 65: + if (lookahead == '\n') SKIP(164); + END_STATE(); + case 66: + if (lookahead == '\n') SKIP(164); + if (lookahead == '\r') SKIP(65); + END_STATE(); + case 67: + if (lookahead == '\n') SKIP(165); + END_STATE(); + case 68: + if (lookahead == '\n') SKIP(165); + if (lookahead == '\r') SKIP(67); + END_STATE(); + case 69: + if (lookahead == '\n') SKIP(168); + END_STATE(); + case 70: + if (lookahead == '\n') SKIP(168); + if (lookahead == '\r') SKIP(69); + END_STATE(); + case 71: + if (lookahead == '\n') SKIP(167); + END_STATE(); + case 72: + if (lookahead == '\n') SKIP(167); + if (lookahead == '\r') SKIP(71); + END_STATE(); + case 73: + if (lookahead == '\n') ADVANCE(11); + if (lookahead == '\r') ADVANCE(12); + if (lookahead == '@') ADVANCE(715); + if (lookahead != 0) ADVANCE(12); + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(132); + END_STATE(); + case 75: + if (lookahead == '\n') SKIP(132); + if (lookahead == '\r') SKIP(74); + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(143); + END_STATE(); + case 77: + if (lookahead == '\n') SKIP(143); + if (lookahead == '\r') SKIP(76); + END_STATE(); + case 78: + if (lookahead == '\n') SKIP(105); + END_STATE(); + case 79: + if (lookahead == '\n') SKIP(105); + if (lookahead == '\r') SKIP(78); + END_STATE(); + case 80: + if (lookahead == '\n') SKIP(133); + END_STATE(); + case 81: + if (lookahead == '\n') SKIP(133); + if (lookahead == '\r') SKIP(80); + END_STATE(); + case 82: + if (lookahead == '\n') SKIP(135); + END_STATE(); + case 83: + if (lookahead == '\n') SKIP(135); + if (lookahead == '\r') SKIP(82); + END_STATE(); + case 84: + if (lookahead == '\n') ADVANCE(86); + END_STATE(); + case 85: + if (lookahead == '\n') ADVANCE(86); + if (lookahead == '\r') ADVANCE(84); + if (lookahead == '\'') ADVANCE(210); + if (lookahead != 0) ADVANCE(12); + END_STATE(); + case 86: + if (lookahead == '\n') ADVANCE(86); + if (lookahead == '\r') ADVANCE(84); + if (lookahead == '\'') ADVANCE(209); + if (lookahead != 0) ADVANCE(12); + END_STATE(); + case 87: + if (lookahead == '\n') SKIP(128); + END_STATE(); + case 88: + if (lookahead == '\n') SKIP(128); + if (lookahead == '\r') SKIP(87); + END_STATE(); + case 89: + if (lookahead == '\n') SKIP(115); + END_STATE(); + case 90: + if (lookahead == '\n') SKIP(115); + if (lookahead == '\r') SKIP(89); + END_STATE(); + case 91: + if (lookahead == '\n') SKIP(117); + END_STATE(); + case 92: + if (lookahead == '\n') SKIP(117); + if (lookahead == '\r') SKIP(91); + END_STATE(); + case 93: + if (lookahead == '\n') SKIP(121); + END_STATE(); + case 94: + if (lookahead == '\n') SKIP(121); + if (lookahead == '\r') SKIP(93); + END_STATE(); + case 95: + if (lookahead == '\n') SKIP(125); + END_STATE(); + case 96: + if (lookahead == '\n') SKIP(125); + if (lookahead == '\r') SKIP(95); + END_STATE(); + case 97: + if (lookahead == '\n') SKIP(107); + END_STATE(); + case 98: + if (lookahead == '\n') SKIP(107); + if (lookahead == '\r') SKIP(97); + END_STATE(); + case 99: + if (lookahead == '\n') SKIP(123); + END_STATE(); + case 100: + if (lookahead == '\n') SKIP(123); + if (lookahead == '\r') SKIP(99); + END_STATE(); + case 101: + if (lookahead == '\n') SKIP(141); + END_STATE(); + case 102: + if (lookahead == '\n') SKIP(141); + if (lookahead == '\r') SKIP(101); + END_STATE(); + case 103: + if (lookahead == '\r') ADVANCE(1); + if (lookahead != 0) ADVANCE(171); + END_STATE(); + case 104: + if (lookahead == '\r') ADVANCE(652); + if (lookahead != 0) ADVANCE(651); + END_STATE(); + case 105: ADVANCE_MAP( - ' ', 1746, - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1778, - '.', 440, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - '<', 826, - '>', 784, - '@', 96, - '[', 775, + ' ', 1735, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1769, + '.', 499, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(43); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(79); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(56); + lookahead == 0xfeff) SKIP(105); END_STATE(); - case 57: + case 106: ADVANCE_MAP( - ' ', 1746, - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1778, - '.', 1819, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - '<', 826, - '>', 784, - '@', 96, - '[', 775, + ' ', 1735, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1769, + '.', 1807, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(43); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(79); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(56); + lookahead == 0xfeff) SKIP(105); END_STATE(); - case 58: + case 107: ADVANCE_MAP( - ' ', 1747, - '!', 1798, - '"', 540, - '#', 467, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1778, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ':', 1755, - '<', 827, - '>', 785, - '@', 96, - '[', 775, + ' ', 1735, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1772, + '.', 499, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(11); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); - if (lookahead == 0xa0 || + if (lookahead == '`') SKIP(98); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1153); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(58); - if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + lookahead == 0xfeff) SKIP(107); END_STATE(); - case 59: + case 108: ADVANCE_MAP( - ' ', 1748, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - '.', 440, - '0', 485, - ':', 1752, - '<', 115, - '@', 96, - '[', 775, + ' ', 1735, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1772, + '.', 1807, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(19); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(98); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(59); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 0xfeff) SKIP(107); END_STATE(); - case 60: + case 109: + ADVANCE_MAP( + ' ', 1735, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + '.', 499, + '0', 549, + ':', 1739, + '<', 169, + '@', 146, + '[', 831, + ); + if (lookahead == '`') SKIP(38); + if (lookahead == '{') ADVANCE(1339); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(550); + END_STATE(); + case 110: ADVANCE_MAP( - ' ', 1748, - '"', 1721, - '#', 1715, - '\'', 123, - ')', 1456, - '*', 1708, - '-', 1705, - '1', 1709, - '2', 1710, - '3', 1711, - '4', 1712, - '5', 1713, - '6', 1714, - ':', 1754, - '<', 828, - '>', 786, - '`', 1719, - '|', 1510, - 0xa0, 1696, - 0x200b, 1696, - 0x2060, 1696, - 0xfeff, 1696, + ' ', 1735, + '"', 1710, + '#', 1705, + '\'', 177, + '(', 1326, + ')', 1327, + '*', 1698, + '-', 1695, + '1', 1699, + '2', 1700, + '3', 1701, + '4', 1702, + '5', 1703, + '6', 1704, + ':', 1741, + '<', 885, + '>', 843, + '`', 1708, + '|', 1388, + 0xa0, 1686, + 0x200b, 1686, + 0x2060, 1686, + 0xfeff, 1686, ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(74); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(124); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ',' && lookahead != '-' && (lookahead < ':' || '<' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 61: + case 111: ADVANCE_MAP( - ' ', 1748, - '"', 1721, - '#', 1715, - '\'', 123, - ')', 1456, - '*', 1708, - '-', 1707, - '1', 1709, - '2', 1710, - '3', 1711, - '4', 1712, - '5', 1713, - '6', 1714, - ':', 1754, - '<', 828, - '>', 786, - '`', 1719, - '|', 1510, - 0xa0, 1697, - 0x200b, 1697, - 0x2060, 1697, - 0xfeff, 1697, + ' ', 1735, + '"', 1710, + '#', 1705, + '\'', 177, + '(', 1326, + ')', 1327, + '*', 1698, + '-', 1697, + '1', 1699, + '2', 1700, + '3', 1701, + '4', 1702, + '5', 1703, + '6', 1704, + ':', 1741, + '<', 885, + '>', 843, + '`', 1708, + '|', 1388, + 0xa0, 1687, + 0x200b, 1687, + 0x2060, 1687, + 0xfeff, 1687, ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(75); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(125); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ',' && lookahead != '-' && (lookahead < ':' || '<' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 62: + case 112: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '+', 125, - '-', 1724, - '.', 1817, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1753, - '<', 826, - '>', 784, - '@', 152, - '[', 775, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + '-', 1713, + '.', 1805, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1740, + '<', 883, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(17); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(36); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(63); + lookahead == 0xfeff) SKIP(113); if (('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 63: + case 113: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '+', 125, - '-', 1724, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1753, - '<', 826, - '>', 784, - '@', 152, - '[', 775, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + '-', 1713, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1740, + '<', 883, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(17); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(36); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(63); + lookahead == 0xfeff) SKIP(113); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 64: + case 114: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '+', 125, - '-', 1728, - '.', 1817, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1753, - '<', 826, - '>', 784, - '@', 152, - '[', 775, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + '-', 1717, + '.', 1805, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1740, + '<', 883, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(51); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(90); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(65); + lookahead == 0xfeff) SKIP(115); if (('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 65: + case 115: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '+', 125, - '-', 1728, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1753, - '<', 826, - '>', 784, - '@', 152, - '[', 775, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + '-', 1717, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1740, + '<', 883, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(51); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(90); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(65); + lookahead == 0xfeff) SKIP(115); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 66: + case 116: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '-', 1725, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1752, - '<', 826, - '>', 784, - '@', 152, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '-', 1714, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1739, + '<', 883, + '>', 841, + '@', 206, ); - if (lookahead == '`') SKIP(21); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(42); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(66); + lookahead == 0xfeff) SKIP(116); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 67: + case 117: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '$', 121, - ')', 1456, - '*', 145, - '-', 1729, - '1', 1730, - '2', 1731, - '3', 1732, - '4', 1733, - '5', 1734, - '6', 1735, - ':', 1752, - '<', 826, - '>', 784, - '@', 152, + ' ', 1735, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '-', 1718, + '1', 1719, + '2', 1720, + '3', 1721, + '4', 1722, + '5', 1723, + '6', 1724, + ':', 1739, + '<', 883, + '>', 841, + '@', 206, ); - if (lookahead == '`') SKIP(52); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(92); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(67); + lookahead == 0xfeff) SKIP(117); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 68: + case 118: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 126, - '.', 1818, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1753, - '<', 826, - '>', 784, - '[', 775, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 181, + '.', 1806, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1740, + '<', 883, + '>', 841, + '[', 831, ); - if (lookahead == '`') SKIP(22); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(46); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(69); + lookahead == 0xfeff) SKIP(119); END_STATE(); - case 69: + case 119: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 126, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1753, - '<', 826, - '>', 784, - '[', 775, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 181, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1740, + '<', 883, + '>', 841, + '[', 831, ); - if (lookahead == '`') SKIP(22); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(46); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(69); + lookahead == 0xfeff) SKIP(119); END_STATE(); - case 70: + case 120: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 129, - '.', 1818, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1753, - '<', 826, - '>', 784, - '[', 775, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 183, + '.', 1806, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1740, + '<', 883, + '>', 841, + '[', 831, ); - if (lookahead == '`') SKIP(47); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(94); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(71); + lookahead == 0xfeff) SKIP(121); END_STATE(); - case 71: + case 121: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 129, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1753, - '<', 826, - '>', 784, - '[', 775, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 183, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1740, + '<', 883, + '>', 841, + '[', 831, ); - if (lookahead == '`') SKIP(47); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(94); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(71); + lookahead == 0xfeff) SKIP(121); END_STATE(); - case 72: + case 122: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - ',', 1458, - '-', 128, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1752, - '<', 826, - '>', 784, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + ',', 1329, + '-', 182, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1739, + '<', 883, + '>', 841, ); - if (lookahead == '`') SKIP(23); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(40); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(72); + lookahead == 0xfeff) SKIP(122); END_STATE(); - case 73: + case 123: ADVANCE_MAP( - ' ', 1748, - '#', 473, - '(', 1455, - ')', 1456, - '*', 145, - ',', 1458, - '-', 130, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1752, - '<', 826, - '>', 784, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + ',', 1329, + '-', 184, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1739, + '<', 883, + '>', 841, ); - if (lookahead == '`') SKIP(53); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(100); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(73); + lookahead == 0xfeff) SKIP(123); END_STATE(); - case 74: + case 124: ADVANCE_MAP( - ' ', 1748, - '#', 473, - ')', 1456, - '*', 145, - '-', 128, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1752, - '<', 826, - '>', 784, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '-', 182, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1739, + '<', 883, + '>', 841, ); - if (lookahead == '`') SKIP(24); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(48); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(74); + lookahead == 0xfeff) SKIP(124); END_STATE(); - case 75: + case 125: ADVANCE_MAP( - ' ', 1748, - '#', 473, - ')', 1456, - '*', 145, - '-', 130, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1752, - '<', 826, - '>', 784, + ' ', 1735, + '#', 537, + '(', 1326, + ')', 1327, + '*', 199, + '-', 184, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1739, + '<', 883, + '>', 841, ); - if (lookahead == '`') SKIP(54); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(96); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(75); + lookahead == 0xfeff) SKIP(125); END_STATE(); - case 76: + case 126: ADVANCE_MAP( - ' ', 1749, - '!', 1798, - '"', 540, - '#', 467, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1784, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ':', 1755, - '<', 827, - '>', 785, - '@', 96, - '[', 775, + ' ', 1736, + '!', 1785, + '"', 604, + '#', 531, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1769, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ':', 1742, + '<', 884, + '>', 842, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(44); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (lookahead == '`') SKIP(20); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1154); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(76); + lookahead == 0xfeff) ADVANCE(1215); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(126); if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 77: + case 127: ADVANCE_MAP( - ' ', 1750, - '!', 1798, - '"', 540, - '#', 467, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1781, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - '<', 827, - '>', 785, - '@', 96, - '[', 775, + ' ', 1737, + '!', 1785, + '"', 604, + '#', 531, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1768, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + '<', 884, + '>', 842, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(16); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (lookahead == '`') SKIP(32); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1155); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(77); + lookahead == 0xfeff) ADVANCE(1216); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(127); if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); - END_STATE(); - case 78: - ADVANCE_MAP( - ' ', 1751, - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1784, - '.', 440, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - '<', 826, - '>', 784, - '@', 96, - '[', 775, - ); - if (lookahead == '`') SKIP(50); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(78); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 79: + case 128: ADVANCE_MAP( - ' ', 1751, - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1784, - '.', 1819, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - '<', 826, - '>', 784, - '@', 96, - '[', 775, + ' ', 1738, + '!', 1785, + '"', 604, + '#', 531, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1772, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ':', 1742, + '<', 884, + '>', 842, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(50); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == 0xa0 || + if (lookahead == '`') SKIP(88); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); + if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(78); + lookahead == 0xfeff) ADVANCE(1217); + if (('\t' <= lookahead && lookahead <= '\r')) SKIP(128); + if (lookahead != 0 && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 80: + case 129: ADVANCE_MAP( - '!', 1797, - '"', 1528, - '#', 463, - '$', 1527, - '%', 1757, - '&', 1511, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1777, - '.', 772, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - ';', 1453, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 1407, + '#', 527, + '$', 1406, + '%', 1744, + '&', 1389, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1764, + '.', 828, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + ';', 1323, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(1); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(3); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(675); + lookahead == 'b') ADVANCE(740); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(650); + lookahead == 'c') ADVANCE(717); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(654); + lookahead == 'd') ADVANCE(721); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(773); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(697); + lookahead == 'f') ADVANCE(759); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(688); + lookahead == 'i') ADVANCE(751); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(656); + lookahead == 'p') ADVANCE(723); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(681); + lookahead == 'r') ADVANCE(742); if (lookahead == 'S' || - lookahead == 's') ADVANCE(676); + lookahead == 's') ADVANCE(741); if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(756); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(787); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(696); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(757); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(81); + lookahead == 0xfeff) SKIP(130); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(80); + lookahead == ' ') ADVANCE(129); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 81: + case 130: ADVANCE_MAP( - '!', 1797, - '"', 1528, - '#', 473, - '$', 1527, - '%', 1757, - '&', 1511, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1777, - '.', 772, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - ';', 1453, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 1407, + '#', 537, + '$', 1406, + '%', 1744, + '&', 1389, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1764, + '.', 828, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + ';', 1323, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(1); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(3); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(675); + lookahead == 'b') ADVANCE(740); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(650); + lookahead == 'c') ADVANCE(717); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(654); + lookahead == 'd') ADVANCE(721); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(773); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(697); + lookahead == 'f') ADVANCE(759); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(688); + lookahead == 'i') ADVANCE(751); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(656); + lookahead == 'p') ADVANCE(723); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(681); + lookahead == 'r') ADVANCE(742); if (lookahead == 'S' || - lookahead == 's') ADVANCE(676); + lookahead == 's') ADVANCE(741); if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(756); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(787); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(696); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(757); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(81); + lookahead == 0xfeff) SKIP(130); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 82: + case 131: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '%', 1756, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1790, - '+', 1773, - ',', 1458, - '-', 1779, - '.', 1816, - '/', 1787, - '0', 485, - ':', 141, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '%', 1743, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1778, + '+', 1760, + ',', 1329, + '-', 1767, + '.', 1804, + '/', 1775, + '0', 549, + ':', 195, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(41); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(75); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(83); + lookahead == 0xfeff) SKIP(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 83: + case 132: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '%', 1756, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1790, - '+', 1773, - ',', 1458, - '-', 1779, - '.', 132, - '/', 1787, - '0', 485, - ':', 141, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '%', 1743, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1778, + '+', 1760, + ',', 1329, + '-', 1767, + '.', 186, + '/', 1775, + '0', 549, + ':', 195, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(41); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(75); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(83); + lookahead == 0xfeff) SKIP(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 84: + case 133: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 440, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 140, - '<', 826, - '>', 784, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 499, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 194, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(45); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(81); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(84); + lookahead == 0xfeff) SKIP(133); END_STATE(); - case 85: + case 134: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 145, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 1819, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 140, - '<', 826, - '>', 784, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 199, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 1807, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 194, + '<', 883, + '>', 841, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(45); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (lookahead == '`') SKIP(81); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(84); + lookahead == 0xfeff) SKIP(133); END_STATE(); - case 86: + case 135: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 440, - '0', 485, - ':', 140, - '<', 115, - '=', 778, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 499, + '0', 549, + ':', 194, + '<', 169, + '=', 834, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(46); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(83); + if (lookahead == '{') ADVANCE(1339); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'S' || - lookahead == 's') ADVANCE(755); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 's') ADVANCE(813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(86); + lookahead == 0xfeff) SKIP(135); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 87: + case 136: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 473, - '$', 120, - '\'', 124, - '(', 1455, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 1819, - '0', 485, - ':', 140, - '<', 115, - '=', 778, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 537, + '$', 174, + '\'', 178, + '(', 1326, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 1807, + '0', 549, + ':', 194, + '<', 169, + '=', 834, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(46); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(83); + if (lookahead == '{') ADVANCE(1339); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'S' || - lookahead == 's') ADVANCE(755); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 's') ADVANCE(813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(86); + lookahead == 0xfeff) SKIP(135); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 88: + case 137: + ADVANCE_MAP( + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, + ); + if (lookahead == '`') SKIP(26); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1625); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1579); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1659); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1608); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1540); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1550); + if (lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1417); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if (lookahead != 0 && + (lookahead < ' ' || '9' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); + END_STATE(); + case 138: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(15); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(28); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1625); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1579); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1659); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1653); + lookahead == 'f') ADVANCE(1608); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1540); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1550); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1539); + lookahead == 0xfeff) ADVANCE(1417); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(138); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '9' < lookahead) && lookahead != ';' && lookahead != '<' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 89: + case 139: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(8); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(14); + if (lookahead == '{') ADVANCE(1339); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1641); + lookahead == 'e') ADVANCE(1586); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1563); + lookahead == 'p') ADVANCE(1497); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1531); + lookahead == 0xfeff) ADVANCE(1409); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(139); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 90: + case 140: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(9); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(16); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1587); + lookahead == 'b') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1555); + lookahead == 'd') ADVANCE(1488); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1643); + lookahead == 'e') ADVANCE(1590); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1562); + lookahead == 'p') ADVANCE(1496); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1537); + lookahead == 0xfeff) ADVANCE(1415); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(90); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(140); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 91: + case 141: ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(55); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(102); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1587); + lookahead == 'b') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1555); + lookahead == 'd') ADVANCE(1488); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1643); + lookahead == 'e') ADVANCE(1590); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1571); + lookahead == 'p') ADVANCE(1508); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1538); + lookahead == 0xfeff) ADVANCE(1416); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(141); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 92: + case 142: ADVANCE_MAP( - '!', 144, - '"', 1528, - '#', 473, - '$', 1525, - '%', 1757, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1780, - '.', 1815, - '/', 1788, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 198, + '"', 1407, + '#', 537, + '$', 1404, + '%', 1744, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1766, + '.', 1803, + '/', 1776, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(42); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(77); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(330); + lookahead == 'i') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(93); + lookahead == 0xfeff) SKIP(143); END_STATE(); - case 93: + case 143: ADVANCE_MAP( - '!', 144, - '"', 1528, - '#', 473, - '$', 1525, - '%', 1757, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1780, - '.', 131, - '/', 1788, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 198, + '"', 1407, + '#', 537, + '$', 1404, + '%', 1744, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1766, + '.', 185, + '/', 1776, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(42); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(77); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(330); + lookahead == 'i') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(93); + lookahead == 0xfeff) SKIP(143); END_STATE(); - case 94: + case 144: ADVANCE_MAP( - '!', 144, - '#', 473, - '$', 121, - '%', 1757, - ')', 1456, - '*', 1791, - '+', 1776, - ',', 1458, - '-', 1786, - '.', 131, - '/', 1788, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 1752, - ';', 1453, - '<', 826, - '=', 778, - '>', 784, - '@', 152, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 198, + '#', 537, + '$', 175, + '%', 1744, + ')', 1327, + '*', 1779, + '+', 1763, + ',', 1329, + '-', 1774, + '.', 185, + '/', 1776, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 1739, + ';', 1323, + '<', 883, + '=', 834, + '>', 841, + '@', 206, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(10); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(18); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'S' || - lookahead == 's') ADVANCE(755); + lookahead == 's') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(94); + lookahead == 0xfeff) SKIP(144); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 95: + case 145: ADVANCE_MAP( - '!', 1798, - '"', 540, - '#', 467, - '$', 120, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1781, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - '<', 827, - '>', 785, - '@', 96, - '[', 775, + '!', 1785, + '"', 604, + '#', 531, + '$', 174, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1768, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + '<', 884, + '>', 842, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(12); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (lookahead == '`') SKIP(30); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1156); + lookahead == 0xfeff) ADVANCE(1218); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95); + lookahead == ' ') SKIP(145); if (lookahead != 0 && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 96: + case 146: ADVANCE_MAP( - '"', 2, - '\'', 3, - '(', 1812, - '?', 1018, - '{', 1813, - 'G', 1063, - 'g', 1063, - 'L', 1069, - 'l', 1069, - 'P', 1071, - 'p', 1071, - 'S', 1054, - 's', 1054, - 'U', 1074, - 'u', 1074, - 'W', 1068, - 'w', 1068, + '"', 5, + '\'', 6, + '(', 1800, + '?', 1079, + '{', 1801, + 'G', 1124, + 'g', 1124, + 'L', 1130, + 'l', 1130, + 'P', 1132, + 'p', 1132, + 'S', 1115, + 's', 1115, + 'U', 1135, + 'u', 1135, + 'W', 1129, + 'w', 1129, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 97: - if (lookahead == '"') ADVANCE(593); - if (lookahead == '#') ADVANCE(463); - if (lookahead == '$') ADVANCE(590); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(36); + case 147: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(527); + if (lookahead == '$') ADVANCE(656); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(70); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(114); + lookahead == 0xfeff) SKIP(168); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(148); END_STATE(); - case 98: - if (lookahead == '"') ADVANCE(593); - if (lookahead == '#') ADVANCE(463); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(36); + case 148: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(527); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(70); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(114); + lookahead == 0xfeff) SKIP(168); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(148); END_STATE(); - case 99: - if (lookahead == '"') ADVANCE(593); - if (lookahead == '#') ADVANCE(99); + case 149: + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(149); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(99); + lookahead == ' ') ADVANCE(149); END_STATE(); - case 100: + case 150: ADVANCE_MAP( - '"', 540, - '#', 468, - '$', 120, - '\'', 124, - '(', 1455, - '-', 1744, - '.', 1546, - '0', 475, - '<', 115, - '@', 96, - '[', 775, + '"', 604, + '#', 532, + '$', 174, + '\'', 178, + '(', 1326, + '-', 1733, + '.', 1470, + '0', 539, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(18); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(34); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1457); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1447); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1469); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1465); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1441); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1438); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1442); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1540); + lookahead == 0xfeff) ADVANCE(1418); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(100); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(476); + lookahead == ' ') SKIP(150); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(540); if (('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < ' ' || '9' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 101: + case 151: ADVANCE_MAP( - '"', 542, - '#', 466, - '$', 1221, - '\'', 1222, - '(', 1455, - '.', 1231, - '0', 497, - ';', 1453, - '<', 1218, - '@', 1216, - '[', 777, - '`', 1235, - '{', 1464, - '}', 1466, - 0xa0, 1215, - 0x200b, 1215, - 0x2060, 1215, - 0xfeff, 1215, + '"', 606, + '#', 530, + '$', 1279, + '\'', 1280, + '(', 1326, + '.', 1289, + '0', 561, + ';', 1323, + '<', 1276, + '@', 1274, + '[', 833, + '`', 1292, + '{', 1339, + '}', 1341, + 0xa0, 1273, + 0x200b, 1273, + 0x2060, 1273, + 0xfeff, 1273, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(101); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(498); + lookahead == ' ') SKIP(151); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(562); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(1235); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(1292); END_STATE(); - case 102: + case 152: ADVANCE_MAP( - '"', 1721, - '#', 1715, - '\'', 123, - ',', 1458, - '<', 1699, - '`', 1719, - '{', 1464, - 0xa0, 1698, - 0x200b, 1698, - 0x2060, 1698, - 0xfeff, 1698, + '"', 1710, + '#', 1705, + '\'', 177, + ',', 1329, + '<', 1689, + '`', 1708, + '{', 1339, + 0xa0, 1688, + 0x200b, 1688, + 0x2060, 1688, + 0xfeff, 1688, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(112); + lookahead == ' ') SKIP(166); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 103: - if (lookahead == '"') ADVANCE(1529); - if (lookahead == '#') ADVANCE(464); - if (lookahead == '$') ADVANCE(1526); - if (lookahead == '<') ADVANCE(1513); - if (lookahead == '@') ADVANCE(1517); - if (lookahead == '`') ADVANCE(25); + case 153: + if (lookahead == '"') ADVANCE(1408); + if (lookahead == '#') ADVANCE(529); + if (lookahead == '$') ADVANCE(1405); + if (lookahead == '<') ADVANCE(1391); + if (lookahead == '@') ADVANCE(1395); + if (lookahead == '`') ADVANCE(49); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1512); - if (lookahead != 0) ADVANCE(1519); + lookahead == 0xfeff) ADVANCE(1390); + if (lookahead != 0) ADVANCE(1397); END_STATE(); - case 104: + case 154: ADVANCE_MAP( - '"', 594, - '#', 544, - '$', 591, - '<', 548, - '@', 583, - '`', 26, - 0xa0, 547, - 0x200b, 547, - 0x2060, 547, - 0xfeff, 547, + '"', 660, + '#', 607, + '$', 657, + '<', 611, + '@', 646, + '`', 53, + 0xa0, 610, + 0x200b, 610, + 0x2060, 610, + 0xfeff, 610, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(546); - if (lookahead != 0) ADVANCE(586); + lookahead == ' ') ADVANCE(609); + if (lookahead != 0) ADVANCE(650); END_STATE(); - case 105: - if (lookahead == '"') ADVANCE(1441); - if (lookahead != 0) ADVANCE(105); + case 155: + if (lookahead == '"') ADVANCE(1318); + if (lookahead == '#') ADVANCE(528); + if (lookahead == '&') ADVANCE(1313); + if (lookahead == ')') ADVANCE(1328); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '`') ADVANCE(1322); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '\n' || + lookahead == '\r') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1316); + if (lookahead != 0) ADVANCE(1322); END_STATE(); - case 106: + case 156: + if (lookahead == '"') ADVANCE(1318); + if (lookahead == '#') ADVANCE(528); + if (lookahead == '&') ADVANCE(1313); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '`') ADVANCE(1322); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '\n' || + lookahead == '\r') SKIP(156); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1317); + if (lookahead != 0) ADVANCE(1322); + END_STATE(); + case 157: + if (lookahead == '"') ADVANCE(1311); + if (lookahead != 0) ADVANCE(157); + END_STATE(); + case 158: + if (lookahead == '#') ADVANCE(537); + if (lookahead == '$') ADVANCE(174); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '@') ADVANCE(206); + if (lookahead == '`') SKIP(58); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(158); + END_STATE(); + case 159: ADVANCE_MAP( - '#', 473, - '$', 121, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 127, - '.', 1818, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '@', 152, - '[', 775, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 180, + '.', 1806, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(20); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(44); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(107); + lookahead == 0xfeff) SKIP(160); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 107: + case 160: ADVANCE_MAP( - '#', 473, - '$', 121, - '(', 1455, - ')', 1456, - '*', 145, - '+', 125, - ',', 1458, - '-', 127, - '1', 146, - '2', 147, - '3', 148, - '4', 149, - '5', 150, - '6', 151, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '@', 152, - '[', 775, + '#', 537, + '$', 175, + '(', 1326, + ')', 1327, + '*', 199, + '+', 179, + ',', 1329, + '-', 180, + '1', 200, + '2', 201, + '3', 202, + '4', 203, + '5', 204, + '6', 205, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(20); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); + if (lookahead == '`') SKIP(44); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(107); + lookahead == 0xfeff) SKIP(160); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 108: - if (lookahead == '#') ADVANCE(473); - if (lookahead == '$') ADVANCE(121); - if (lookahead == ')') ADVANCE(1456); - if (lookahead == ',') ADVANCE(1458); - if (lookahead == '-') ADVANCE(1727); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '@') ADVANCE(152); - if (lookahead == '`') SKIP(30); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); + case 161: + if (lookahead == '#') ADVANCE(537); + if (lookahead == '$') ADVANCE(175); + if (lookahead == ')') ADVANCE(1327); + if (lookahead == ',') ADVANCE(1329); + if (lookahead == '-') ADVANCE(1716); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '@') ADVANCE(206); + if (lookahead == '`') SKIP(62); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(108); + lookahead == 0xfeff) SKIP(161); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 109: + case 162: ADVANCE_MAP( - '#', 473, - '$', 121, - '+', 125, - ',', 1458, - '-', 1726, - '.', 1817, - ':', 140, - '<', 115, - '@', 152, - '[', 775, + '#', 537, + '$', 175, + '+', 179, + ',', 1329, + '-', 1715, + '.', 1805, + ':', 194, + '<', 169, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(29); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(60); + if (lookahead == '{') ADVANCE(1339); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(110); + lookahead == 0xfeff) SKIP(163); if (('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 110: + case 163: ADVANCE_MAP( - '#', 473, - '$', 121, - '+', 125, - ',', 1458, - '-', 1726, - ':', 140, - '<', 115, - '@', 152, - '[', 775, + '#', 537, + '$', 175, + '+', 179, + ',', 1329, + '-', 1715, + ':', 194, + '<', 169, + '@', 206, + '[', 831, ); - if (lookahead == '`') SKIP(29); - if (lookahead == '{') ADVANCE(1464); + if (lookahead == '`') SKIP(60); + if (lookahead == '{') ADVANCE(1339); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(110); + lookahead == 0xfeff) SKIP(163); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('?' <= lookahead && lookahead <= '\\') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 111: - if (lookahead == '#') ADVANCE(473); - if (lookahead == '(') ADVANCE(1455); - if (lookahead == ',') ADVANCE(1458); - if (lookahead == '.') ADVANCE(771); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '[') ADVANCE(775); - if (lookahead == ']') ADVANCE(1822); - if (lookahead == '`') SKIP(34); + case 164: + if (lookahead == '#') ADVANCE(537); + if (lookahead == '(') ADVANCE(1326); + if (lookahead == ',') ADVANCE(1329); + if (lookahead == '.') ADVANCE(827); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '[') ADVANCE(831); + if (lookahead == ']') ADVANCE(1810); + if (lookahead == '`') SKIP(66); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(111); + lookahead == 0xfeff) SKIP(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(770); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(826); END_STATE(); - case 112: - if (lookahead == '#') ADVANCE(473); - if (lookahead == ',') ADVANCE(1458); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(32); - if (lookahead == '{') ADVANCE(1464); + case 165: + if (lookahead == '#') ADVANCE(537); + if (lookahead == ')') ADVANCE(1327); + if (lookahead == ';') ADVANCE(1323); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(68); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(112); + lookahead == 0xfeff) SKIP(165); END_STATE(); - case 113: - if (lookahead == '#') ADVANCE(473); - if (lookahead == '0') ADVANCE(500); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(39); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(501); + case 166: + if (lookahead == '#') ADVANCE(537); + if (lookahead == ',') ADVANCE(1329); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(64); + if (lookahead == '{') ADVANCE(1339); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(113); + lookahead == 0xfeff) SKIP(166); END_STATE(); - case 114: - if (lookahead == '#') ADVANCE(473); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(36); + case 167: + if (lookahead == '#') ADVANCE(537); + if (lookahead == '0') ADVANCE(564); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(565); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(114); + lookahead == 0xfeff) SKIP(167); END_STATE(); - case 115: - if (lookahead == '#') ADVANCE(117); + case 168: + if (lookahead == '#') ADVANCE(537); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(70); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(168); END_STATE(); - case 116: - if (lookahead == '#') ADVANCE(116); - if (lookahead == '>') ADVANCE(462); - if (lookahead != 0) ADVANCE(117); + case 169: + if (lookahead == '#') ADVANCE(171); END_STATE(); - case 117: - if (lookahead == '#') ADVANCE(116); - if (lookahead == '`') ADVANCE(444); - if (lookahead != 0) ADVANCE(117); + case 170: + if (lookahead == '#') ADVANCE(170); + if (lookahead == '>') ADVANCE(526); + if (lookahead != 0) ADVANCE(171); END_STATE(); - case 118: - if (lookahead == '#') ADVANCE(468); - if (lookahead == '%') ADVANCE(1756); - if (lookahead == '&') ADVANCE(1511); - if (lookahead == '.') ADVANCE(774); - if (lookahead == '<') ADVANCE(115); - if (lookahead == '`') SKIP(31); + case 171: + if (lookahead == '#') ADVANCE(170); + if (lookahead == '`') ADVANCE(103); + if (lookahead != 0) ADVANCE(171); + END_STATE(); + case 172: + if (lookahead == '#') ADVANCE(532); + if (lookahead == '%') ADVANCE(1743); + if (lookahead == '&') ADVANCE(1389); + if (lookahead == '.') ADVANCE(830); + if (lookahead == '<') ADVANCE(169); + if (lookahead == '`') SKIP(52); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1625); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1579); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1659); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1653); + lookahead == 'f') ADVANCE(1608); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1540); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1550); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1541); + lookahead == 0xfeff) ADVANCE(1419); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(118); + lookahead == ' ') SKIP(172); if (lookahead != 0 && (lookahead < ' ' || '/' < lookahead) && lookahead != ';' && @@ -7388,2099 +7868,2182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 119: - if (lookahead == '#') ADVANCE(466); - if (lookahead == '<') ADVANCE(1218); - if (lookahead == '`') ADVANCE(1235); + case 173: + if (lookahead == '#') ADVANCE(530); + if (lookahead == '<') ADVANCE(1276); + if (lookahead == '`') ADVANCE(1292); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1217); + lookahead == 0xfeff) ADVANCE(1275); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119); + lookahead == ' ') SKIP(173); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '<' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 120: + case 174: ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 121: + case 175: ADVANCE_MAP( - '$', 907, - '?', 913, - '^', 910, - '_', 916, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, + '$', 968, + '?', 974, + '^', 971, + '_', 977, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 122: - if (lookahead == '&') ADVANCE(139); + case 176: + if (lookahead == '&') ADVANCE(193); END_STATE(); - case 123: - if (lookahead == '\'') ADVANCE(1722); + case 177: + if (lookahead == '\'') ADVANCE(1711); END_STATE(); - case 124: - if (lookahead == '\'') ADVANCE(645); - if (lookahead != 0) ADVANCE(124); + case 178: + if (lookahead == '\'') ADVANCE(711); + if (lookahead != 0) ADVANCE(178); END_STATE(); - case 125: - if (lookahead == '+') ADVANCE(1800); - END_STATE(); - case 126: - if (lookahead == '-') ADVANCE(1803); - if (lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 179: + if (lookahead == '+') ADVANCE(1787); END_STATE(); - case 127: + case 180: ADVANCE_MAP( - '-', 1802, - 'C', 177, - 'c', 177, - 'E', 438, - 'e', 438, - 'F', 296, - 'f', 296, - 'P', 173, - 'p', 173, - 'R', 252, - 'r', 252, - 'S', 434, - 's', 434, - 'W', 285, - 'w', 285, + '-', 1789, + 'C', 220, + 'c', 220, + 'E', 497, + 'e', 497, + 'F', 336, + 'f', 336, + 'P', 224, + 'p', 224, + 'R', 308, + 'r', 308, + 'S', 493, + 's', 493, + 'W', 339, + 'w', 339, ); END_STATE(); - case 128: - if (lookahead == '-') ADVANCE(1236); + case 181: + if (lookahead == '-') ADVANCE(1791); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 129: - if (lookahead == '-') ADVANCE(1805); + case 182: + if (lookahead == '-') ADVANCE(1293); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 130: - if (lookahead == '-') ADVANCE(1238); + case 183: + if (lookahead == '-') ADVANCE(1793); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 131: - if (lookahead == '.') ADVANCE(1792); + case 184: + if (lookahead == '-') ADVANCE(1295); + if (lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 132: - if (lookahead == '.') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + case 185: + if (lookahead == '.') ADVANCE(1780); END_STATE(); - case 133: - if (lookahead == '1') ADVANCE(829); - if (lookahead == '2') ADVANCE(841); + case 186: + if (lookahead == '.') ADVANCE(1780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 134: - if (lookahead == '1') ADVANCE(831); + case 187: + if (lookahead == '1') ADVANCE(886); + if (lookahead == '2') ADVANCE(898); END_STATE(); - case 135: - if (lookahead == '1') ADVANCE(833); - if (lookahead == '2') ADVANCE(845); + case 188: + if (lookahead == '1') ADVANCE(888); END_STATE(); - case 136: - if (lookahead == '1') ADVANCE(835); - if (lookahead == '2') ADVANCE(847); + case 189: + if (lookahead == '1') ADVANCE(890); + if (lookahead == '2') ADVANCE(902); END_STATE(); - case 137: - if (lookahead == '1') ADVANCE(837); - if (lookahead == '2') ADVANCE(849); + case 190: + if (lookahead == '1') ADVANCE(892); + if (lookahead == '2') ADVANCE(904); END_STATE(); - case 138: - if (lookahead == '1') ADVANCE(839); - if (lookahead == '2') ADVANCE(851); + case 191: + if (lookahead == '1') ADVANCE(894); + if (lookahead == '2') ADVANCE(906); END_STATE(); - case 139: - if (lookahead == '2') ADVANCE(843); + case 192: + if (lookahead == '1') ADVANCE(896); + if (lookahead == '2') ADVANCE(908); END_STATE(); - case 140: - if (lookahead == ':') ADVANCE(1821); + case 193: + if (lookahead == '2') ADVANCE(900); END_STATE(); - case 141: - if (lookahead == ':') ADVANCE(1821); + case 194: + if (lookahead == ':') ADVANCE(1809); + END_STATE(); + case 195: + if (lookahead == ':') ADVANCE(1809); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1500); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1376); END_STATE(); - case 142: - if (lookahead == ':') ADVANCE(154); - if (lookahead == '?') ADVANCE(919); + case 196: + if (lookahead == ':') ADVANCE(208); + if (lookahead == '?') ADVANCE(980); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1013); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1074); END_STATE(); - case 143: - if (lookahead == ':') ADVANCE(153); - if (lookahead == '?') ADVANCE(1018); + case 197: + if (lookahead == ':') ADVANCE(207); + if (lookahead == '?') ADVANCE(1079); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1204); END_STATE(); - case 144: - if (lookahead == '=') ADVANCE(779); + case 198: + if (lookahead == '=') ADVANCE(835); END_STATE(); - case 145: - if (lookahead == '>') ADVANCE(820); + case 199: + if (lookahead == '>') ADVANCE(877); END_STATE(); - case 146: - if (lookahead == '>') ADVANCE(122); + case 200: + if (lookahead == '>') ADVANCE(176); END_STATE(); - case 147: - if (lookahead == '>') ADVANCE(790); + case 201: + if (lookahead == '>') ADVANCE(847); END_STATE(); - case 148: - if (lookahead == '>') ADVANCE(796); + case 202: + if (lookahead == '>') ADVANCE(853); END_STATE(); - case 149: - if (lookahead == '>') ADVANCE(802); + case 203: + if (lookahead == '>') ADVANCE(859); END_STATE(); - case 150: - if (lookahead == '>') ADVANCE(808); + case 204: + if (lookahead == '>') ADVANCE(865); END_STATE(); - case 151: - if (lookahead == '>') ADVANCE(814); + case 205: + if (lookahead == '>') ADVANCE(871); END_STATE(); - case 152: + case 206: ADVANCE_MAP( - '?', 1018, - 'G', 1063, - 'g', 1063, - 'L', 1069, - 'l', 1069, - 'P', 1071, - 'p', 1071, - 'S', 1054, - 's', 1054, - 'U', 1074, - 'u', 1074, - 'W', 1068, - 'w', 1068, + '?', 1079, + 'G', 1124, + 'g', 1124, + 'L', 1130, + 'l', 1130, + 'P', 1132, + 'p', 1132, + 'S', 1115, + 's', 1115, + 'U', 1135, + 'u', 1135, + 'W', 1129, + 'w', 1129, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 153: - if (lookahead == '?') ADVANCE(1018); + case 207: + if (lookahead == '?') ADVANCE(1079); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1204); END_STATE(); - case 154: - if (lookahead == '?') ADVANCE(919); + case 208: + if (lookahead == '?') ADVANCE(980); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1013); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1074); END_STATE(); - case 155: - if (lookahead == '@') ADVANCE(648); + case 209: + if (lookahead == '@') ADVANCE(714); END_STATE(); - case 156: - if (lookahead == '@') ADVANCE(648); - if (lookahead != 0) ADVANCE(7); + case 210: + if (lookahead == '@') ADVANCE(714); + if (lookahead != 0) ADVANCE(12); END_STATE(); - case 157: - if (lookahead == '@') ADVANCE(644); - if (lookahead != 0) ADVANCE(643); + case 211: + if (lookahead == '@') ADVANCE(710); + if (lookahead != 0) ADVANCE(709); END_STATE(); - case 158: - if (lookahead == '`') ADVANCE(1521); + case 212: + if (lookahead == '`') ADVANCE(1399); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1520); + lookahead != '\n') ADVANCE(1398); END_STATE(); - case 159: - if (lookahead == 'b') ADVANCE(474); + case 213: + if (lookahead == 'b') ADVANCE(538); END_STATE(); - case 160: - if (lookahead == 'b') ADVANCE(523); + case 214: + if (lookahead == 'b') ADVANCE(587); END_STATE(); - case 161: - if (lookahead == 'b') ADVANCE(508); + case 215: + if (lookahead == 'b') ADVANCE(572); END_STATE(); - case 162: - if (lookahead == '}') ADVANCE(1150); - if (lookahead != 0) ADVANCE(162); + case 216: + if (lookahead == '}') ADVANCE(1211); + if (lookahead != 0) ADVANCE(216); END_STATE(); - case 163: + case 217: if (lookahead == '+' || - lookahead == '-') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(532); + lookahead == '-') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(596); END_STATE(); - case 164: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(328); + case 218: + ADVANCE_MAP( + 'A', 393, + 'a', 393, + 'N', 416, + 'n', 416, + 'O', 442, + 'o', 442, + 'X', 418, + 'x', 418, + ); END_STATE(); - case 165: + case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(325); + lookahead == 'a') ADVANCE(393); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(442); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(418); END_STATE(); - case 166: + case 220: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(387); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(359); + lookahead == 'a') ADVANCE(459); END_STATE(); - case 167: + case 221: + ADVANCE_MAP( + 'A', 459, + 'a', 459, + 'C', 424, + 'c', 424, + 'E', 439, + 'e', 439, + 'G', 288, + 'g', 288, + 'L', 289, + 'l', 289, + 'M', 235, + 'm', 235, + 'N', 290, + 'n', 290, + 'O', 400, + 'o', 400, + 'R', 313, + 'r', 313, + 'S', 434, + 's', 434, + ); + END_STATE(); + case 222: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(326); + lookahead == 'a') ADVANCE(475); END_STATE(); - case 168: + case 223: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(315); + lookahead == 'a') ADVANCE(260); END_STATE(); - case 169: + case 224: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(416); + lookahead == 'a') ADVANCE(446); END_STATE(); - case 170: - ADVANCE_MAP( - 'A', 338, - 'a', 338, - 'N', 358, - 'n', 358, - 'O', 383, - 'o', 383, - 'X', 363, - 'x', 363, - ); + case 225: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(387); END_STATE(); - case 171: + case 226: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(338); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(383); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(363); + lookahead == 'a') ADVANCE(383); END_STATE(); - case 172: + case 227: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(321); + lookahead == 'a') ADVANCE(377); END_STATE(); - case 173: + case 228: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(392); + lookahead == 'a') ADVANCE(384); END_STATE(); - case 174: + case 229: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(388); + lookahead == 'a') ADVANCE(266); END_STATE(); - case 175: + case 230: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(343); + lookahead == 'a') ADVANCE(447); END_STATE(); - case 176: + case 231: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(214); + lookahead == 'a') ADVANCE(374); END_STATE(); - case 177: + case 232: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(402); + lookahead == 'a') ADVANCE(264); END_STATE(); - case 178: + case 233: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(212); + lookahead == 'a') ADVANCE(265); END_STATE(); - case 179: + case 234: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(390); + lookahead == 'a') ADVANCE(398); END_STATE(); - case 180: + case 235: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(421); + lookahead == 'a') ADVANCE(476); END_STATE(); - case 181: + case 236: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(287); + lookahead == 'a') ADVANCE(340); END_STATE(); - case 182: + case 237: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(215); + lookahead == 'a') ADVANCE(448); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(423); END_STATE(); - case 183: + case 238: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(288); + lookahead == 'a') ADVANCE(267); END_STATE(); - case 184: + case 239: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(216); + lookahead == 'a') ADVANCE(477); END_STATE(); - case 185: + case 240: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(423); + lookahead == 'a') ADVANCE(341); END_STATE(); - case 186: + case 241: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(290); + lookahead == 'a') ADVANCE(449); END_STATE(); - case 187: + case 242: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(424); + lookahead == 'a') ADVANCE(269); END_STATE(); - case 188: + case 243: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(292); + lookahead == 'a') ADVANCE(480); END_STATE(); - case 189: + case 244: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(206); + lookahead == 'a') ADVANCE(342); END_STATE(); - case 190: + case 245: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(425); + lookahead == 'a') ADVANCE(481); END_STATE(); - case 191: + case 246: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(293); + lookahead == 'a') ADVANCE(345); END_STATE(); - case 192: + case 247: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(207); + lookahead == 'a') ADVANCE(482); END_STATE(); - case 193: + case 248: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(294); + lookahead == 'a') ADVANCE(347); END_STATE(); - case 194: + case 249: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(426); + lookahead == 'a') ADVANCE(483); END_STATE(); - case 195: + case 250: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(427); + lookahead == 'a') ADVANCE(349); END_STATE(); - case 196: + case 251: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(301); + lookahead == 'b') ADVANCE(359); END_STATE(); - case 197: + case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(374); + lookahead == 'c') ADVANCE(325); END_STATE(); - case 198: + case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(266); + lookahead == 'c') ADVANCE(326); END_STATE(); - case 199: + case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(267); + lookahead == 'c') ADVANCE(327); END_STATE(); - case 200: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(412); + case 255: + ADVANCE_MAP( + 'C', 424, + 'c', 424, + 'E', 439, + 'e', 439, + 'G', 288, + 'g', 288, + 'L', 289, + 'l', 289, + 'M', 235, + 'm', 235, + 'N', 290, + 'n', 290, + 'O', 400, + 'o', 400, + 'R', 313, + 'r', 313, + 'S', 434, + 's', 434, + ); END_STATE(); - case 201: + case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(268); + lookahead == 'c') ADVANCE(433); END_STATE(); - case 202: + case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(269); + lookahead == 'c') ADVANCE(328); END_STATE(); - case 203: + case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(270); + lookahead == 'c') ADVANCE(412); END_STATE(); - case 204: - ADVANCE_MAP( - 'C', 366, - 'c', 366, - 'E', 380, - 'e', 380, - 'G', 232, - 'g', 232, - 'L', 233, - 'l', 233, - 'M', 185, - 'm', 185, - 'N', 234, - 'n', 234, - 'O', 346, - 'o', 346, - 'R', 261, - 'r', 261, - 'S', 376, - 's', 376, - ); + case 259: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(329); END_STATE(); - case 205: + case 260: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(253); + lookahead == 'c') ADVANCE(467); END_STATE(); - case 206: + case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(271); + lookahead == 'c') ADVANCE(330); END_STATE(); - case 207: + case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(276); + lookahead == 'c') ADVANCE(331); END_STATE(); - case 208: + case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(360); + lookahead == 'c') ADVANCE(332); END_STATE(); - case 209: + case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(272); + lookahead == 'c') ADVANCE(333); END_STATE(); - case 210: + case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(273); + lookahead == 'c') ADVANCE(334); END_STATE(); - case 211: + case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(274); + lookahead == 'c') ADVANCE(299); END_STATE(); - case 212: + case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(243); + lookahead == 'c') ADVANCE(301); END_STATE(); - case 213: + case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(174); + lookahead == 'c') ADVANCE(473); END_STATE(); - case 214: + case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(406); + lookahead == 'c') ADVANCE(303); END_STATE(); - case 215: + case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(245); + lookahead == 'c') ADVANCE(311); END_STATE(); - case 216: + case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(247); + lookahead == 'c') ADVANCE(230); END_STATE(); - case 217: + case 272: ADVANCE_MAP( - 'C', 367, - 'c', 367, - 'E', 381, - 'e', 381, - 'G', 235, - 'g', 235, - 'L', 236, - 'l', 236, - 'M', 187, - 'm', 187, - 'N', 881, - 'n', 881, - 'R', 262, - 'r', 262, - 'S', 887, - 's', 887, + 'C', 425, + 'c', 425, + 'E', 440, + 'e', 440, + 'G', 291, + 'g', 291, + 'L', 292, + 'l', 292, + 'M', 239, + 'm', 239, + 'N', 937, + 'n', 937, + 'R', 318, + 'r', 318, + 'S', 943, + 's', 943, ); END_STATE(); - case 218: + case 273: ADVANCE_MAP( - 'C', 368, - 'c', 368, - 'I', 333, - 'i', 333, - 'L', 298, - 'l', 298, - 'M', 190, - 'm', 190, + 'C', 426, + 'c', 426, + 'I', 390, + 'i', 390, + 'L', 355, + 'l', 355, + 'M', 243, + 'm', 243, ); END_STATE(); - case 219: + case 274: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(369); + lookahead == 'c') ADVANCE(427); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(299); + lookahead == 'l') ADVANCE(356); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(194); + lookahead == 'm') ADVANCE(245); END_STATE(); - case 220: + case 275: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(370); + lookahead == 'c') ADVANCE(428); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(300); + lookahead == 'l') ADVANCE(357); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(195); + lookahead == 'm') ADVANCE(247); END_STATE(); - case 221: + case 276: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1463); + lookahead == 'd') ADVANCE(1754); END_STATE(); - case 222: + case 277: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1767); + lookahead == 'd') ADVANCE(1757); END_STATE(); - case 223: + case 278: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1770); + lookahead == 'd') ADVANCE(1351); END_STATE(); - case 224: + case 279: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1475); + lookahead == 'd') ADVANCE(1384); END_STATE(); - case 225: + case 280: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1506); + lookahead == 'd') ADVANCE(1337); END_STATE(); - case 226: + case 281: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(213); + lookahead == 'd') ADVANCE(271); END_STATE(); - case 227: + case 282: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(208); + lookahead == 'd') ADVANCE(258); END_STATE(); - case 228: + case 283: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); + lookahead == 'e') ADVANCE(927); if (lookahead == 'T' || - lookahead == 't') ADVANCE(871); + lookahead == 't') ADVANCE(928); END_STATE(); - case 229: + case 284: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(892); + lookahead == 'e') ADVANCE(950); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(302); + lookahead == 'i') ADVANCE(360); if (lookahead == 'T' || - lookahead == 't') ADVANCE(894); + lookahead == 't') ADVANCE(952); END_STATE(); - case 230: + case 285: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(896); + lookahead == 'e') ADVANCE(954); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(415); + lookahead == 'o') ADVANCE(464); END_STATE(); - case 231: + case 286: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(896); + lookahead == 'e') ADVANCE(954); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(414); + lookahead == 'o') ADVANCE(474); END_STATE(); - case 232: + case 287: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(321); + END_STATE(); + case 288: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); + lookahead == 'e') ADVANCE(913); if (lookahead == 'T' || - lookahead == 't') ADVANCE(857); + lookahead == 't') ADVANCE(914); END_STATE(); - case 233: + case 289: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(858); + lookahead == 'e') ADVANCE(915); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(303); + lookahead == 'i') ADVANCE(361); if (lookahead == 'T' || - lookahead == 't') ADVANCE(860); + lookahead == 't') ADVANCE(917); END_STATE(); - case 234: + case 290: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(862); + lookahead == 'e') ADVANCE(919); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(413); + lookahead == 'o') ADVANCE(466); END_STATE(); - case 235: + case 291: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(874); + lookahead == 'e') ADVANCE(931); if (lookahead == 'T' || - lookahead == 't') ADVANCE(875); + lookahead == 't') ADVANCE(932); END_STATE(); - case 236: + case 292: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(876); + lookahead == 'e') ADVANCE(933); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(304); + lookahead == 'i') ADVANCE(362); if (lookahead == 'T' || - lookahead == 't') ADVANCE(878); + lookahead == 't') ADVANCE(935); END_STATE(); - case 237: + case 293: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1479); + lookahead == 'e') ADVANCE(1355); END_STATE(); - case 238: + case 294: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(893); + lookahead == 'e') ADVANCE(951); END_STATE(); - case 239: + case 295: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1488); + lookahead == 'e') ADVANCE(496); END_STATE(); - case 240: + case 296: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(859); + lookahead == 'e') ADVANCE(916); END_STATE(); - case 241: + case 297: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(877); + lookahead == 'e') ADVANCE(934); END_STATE(); - case 242: + case 298: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(899); + lookahead == 'e') ADVANCE(957); END_STATE(); - case 243: + case 299: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); + lookahead == 'e') ADVANCE(959); END_STATE(); - case 244: + case 300: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); + lookahead == 'e') ADVANCE(921); END_STATE(); - case 245: + case 301: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(867); + lookahead == 'e') ADVANCE(924); END_STATE(); - case 246: + case 302: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(884); + lookahead == 'e') ADVANCE(940); END_STATE(); - case 247: + case 303: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(886); + lookahead == 'e') ADVANCE(942); END_STATE(); - case 248: + case 304: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1477); + lookahead == 'e') ADVANCE(1353); END_STATE(); - case 249: + case 305: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(200); + lookahead == 'e') ADVANCE(322); END_STATE(); - case 250: + case 306: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(265); + lookahead == 'e') ADVANCE(1345); END_STATE(); - case 251: + case 307: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1470); + lookahead == 'e') ADVANCE(1362); END_STATE(); - case 252: + case 308: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(264); + lookahead == 'e') ADVANCE(320); END_STATE(); - case 253: + case 309: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(400); + lookahead == 'e') ADVANCE(394); END_STATE(); - case 254: + case 310: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(437); + lookahead == 'e') ADVANCE(367); END_STATE(); - case 255: + case 311: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(310); + lookahead == 'e') ADVANCE(461); END_STATE(); - case 256: + case 312: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(348); + lookahead == 'e') ADVANCE(460); END_STATE(); - case 257: + case 313: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(372); + lookahead == 'e') ADVANCE(435); END_STATE(); - case 258: + case 314: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(227); + lookahead == 'e') ADVANCE(268); END_STATE(); - case 259: + case 315: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(403); + lookahead == 'e') ADVANCE(282); END_STATE(); - case 260: + case 316: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); + lookahead == 'e') ADVANCE(233); END_STATE(); - case 261: + case 317: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(377); + lookahead == 'e') ADVANCE(431); END_STATE(); - case 262: + case 318: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); + lookahead == 'e') ADVANCE(436); END_STATE(); - case 263: + case 319: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1468); + lookahead == 'f') ADVANCE(1343); END_STATE(); - case 264: + case 320: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(254); + lookahead == 'g') ADVANCE(295); END_STATE(); - case 265: + case 321: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(286); + lookahead == 'g') ADVANCE(295); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(373); END_STATE(); - case 266: + case 322: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(353); + END_STATE(); + case 323: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1503); + lookahead == 'h') ADVANCE(366); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(370); END_STATE(); - case 267: + case 324: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(895); + lookahead == 'h') ADVANCE(366); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(370); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(430); END_STATE(); - case 268: + case 325: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1473); + lookahead == 'h') ADVANCE(953); END_STATE(); - case 269: + case 326: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(861); + lookahead == 'h') ADVANCE(918); END_STATE(); - case 270: + case 327: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(879); + lookahead == 'h') ADVANCE(936); END_STATE(); - case 271: + case 328: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1480); + lookahead == 'h') ADVANCE(958); END_STATE(); - case 272: + case 329: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(900); + lookahead == 'h') ADVANCE(922); END_STATE(); - case 273: + case 330: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(865); + lookahead == 'h') ADVANCE(941); END_STATE(); - case 274: + case 331: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(885); + lookahead == 'h') ADVANCE(1379); END_STATE(); - case 275: + case 332: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(308); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(313); + lookahead == 'h') ADVANCE(1348); END_STATE(); - case 276: + case 333: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1823); + lookahead == 'h') ADVANCE(1356); END_STATE(); - case 277: + case 334: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(280); + lookahead == 'h') ADVANCE(1811); END_STATE(); - case 278: + case 335: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(354); + END_STATE(); + case 336: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(435); + lookahead == 'i') ADVANCE(372); END_STATE(); - case 279: + case 337: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(331); + lookahead == 'i') ADVANCE(494); END_STATE(); - case 280: + case 338: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(317); + lookahead == 'i') ADVANCE(389); END_STATE(); - case 281: + case 339: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(408); + lookahead == 'i') ADVANCE(371); END_STATE(); - case 282: + case 340: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(197); + lookahead == 'i') ADVANCE(396); END_STATE(); - case 283: + case 341: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(309); + lookahead == 'i') ADVANCE(397); END_STATE(); - case 284: + case 342: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(337); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(386); + lookahead == 'i') ADVANCE(399); END_STATE(); - case 285: + case 343: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(314); + lookahead == 'i') ADVANCE(368); END_STATE(); - case 286: + case 344: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(332); + lookahead == 'i') ADVANCE(469); END_STATE(); - case 287: + case 345: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(339); + lookahead == 'i') ADVANCE(401); END_STATE(); - case 288: + case 346: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(340); + lookahead == 'i') ADVANCE(470); END_STATE(); - case 289: + case 347: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(409); + lookahead == 'i') ADVANCE(402); END_STATE(); - case 290: + case 348: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(342); + lookahead == 'i') ADVANCE(471); END_STATE(); - case 291: + case 349: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(410); + lookahead == 'i') ADVANCE(404); END_STATE(); - case 292: + case 350: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(344); + lookahead == 'i') ADVANCE(479); END_STATE(); - case 293: + case 351: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(345); + lookahead == 'i') ADVANCE(406); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(445); END_STATE(); - case 294: + case 352: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(347); + lookahead == 'i') ADVANCE(256); END_STATE(); - case 295: + case 353: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(419); + lookahead == 'i') ADVANCE(392); END_STATE(); - case 296: + case 354: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(318); + lookahead == 'i') ADVANCE(376); END_STATE(); - case 297: + case 355: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(422); + lookahead == 'i') ADVANCE(363); END_STATE(); - case 298: + case 356: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(305); + lookahead == 'i') ADVANCE(364); END_STATE(); - case 299: + case 357: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(306); + lookahead == 'i') ADVANCE(365); END_STATE(); - case 300: + case 358: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(307); + lookahead == 'i') ADVANCE(484); END_STATE(); - case 301: + case 359: if (lookahead == 'J' || - lookahead == 'j') ADVANCE(249); + lookahead == 'j') ADVANCE(314); END_STATE(); - case 302: + case 360: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(238); + lookahead == 'k') ADVANCE(294); END_STATE(); - case 303: + case 361: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(240); + lookahead == 'k') ADVANCE(296); END_STATE(); - case 304: + case 362: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(241); + lookahead == 'k') ADVANCE(297); END_STATE(); - case 305: + case 363: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(242); + lookahead == 'k') ADVANCE(298); END_STATE(); - case 306: + case 364: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(244); + lookahead == 'k') ADVANCE(300); END_STATE(); - case 307: + case 365: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(246); + lookahead == 'k') ADVANCE(302); END_STATE(); - case 308: + case 366: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(902); + lookahead == 'l') ADVANCE(960); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(903); + lookahead == 'r') ADVANCE(961); END_STATE(); - case 309: + case 367: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1490); + lookahead == 'l') ADVANCE(1354); END_STATE(); - case 310: + case 368: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1478); + lookahead == 'l') ADVANCE(1366); END_STATE(); - case 311: + case 369: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(401); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(221); + lookahead == 'l') ADVANCE(498); END_STATE(); - case 312: + case 370: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(439); + lookahead == 'l') ADVANCE(344); END_STATE(); - case 313: + case 371: if (lookahead == 'L' || lookahead == 'l') ADVANCE(281); END_STATE(); - case 314: + case 372: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(226); + lookahead == 'l') ADVANCE(293); END_STATE(); - case 315: + case 373: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(312); + lookahead == 'l') ADVANCE(229); END_STATE(); - case 316: + case 374: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + lookahead == 'l') ADVANCE(369); END_STATE(); - case 317: + case 375: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(239); + lookahead == 'l') ADVANCE(310); END_STATE(); - case 318: + case 376: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(237); + lookahead == 'l') ADVANCE(307); END_STATE(); - case 319: + case 377: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(255); + lookahead == 'l') ADVANCE(375); END_STATE(); - case 320: + case 378: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(289); + lookahead == 'l') ADVANCE(346); END_STATE(); - case 321: + case 379: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(319); + lookahead == 'l') ADVANCE(462); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(280); END_STATE(); - case 322: + case 380: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(291); + lookahead == 'l') ADVANCE(348); END_STATE(); - case 323: + case 381: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(182); + lookahead == 'l') ADVANCE(238); END_STATE(); - case 324: + case 382: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(184); + lookahead == 'l') ADVANCE(242); END_STATE(); - case 325: + case 383: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1454); + lookahead == 'm') ADVANCE(1324); END_STATE(); - case 326: + case 384: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1460); + lookahead == 'm') ADVANCE(1331); END_STATE(); - case 327: + case 385: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(329); + lookahead == 'm') ADVANCE(386); END_STATE(); - case 328: + case 386: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(282); + lookahead == 'm') ADVANCE(234); END_STATE(); - case 329: + case 387: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(175); + lookahead == 'm') ADVANCE(352); END_STATE(); - case 330: + case 388: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1482); + lookahead == 'n') ADVANCE(276); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(910); END_STATE(); - case 331: + case 389: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); + lookahead == 'n') ADVANCE(946); END_STATE(); - case 332: + case 390: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1461); + lookahead == 'n') ADVANCE(956); END_STATE(); - case 333: + case 391: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(898); + lookahead == 'n') ADVANCE(1358); END_STATE(); - case 334: + case 392: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(164); + lookahead == 'n') ADVANCE(1333); END_STATE(); - case 335: + case 393: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(222); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(853); + lookahead == 'n') ADVANCE(277); END_STATE(); - case 336: + case 394: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(358); + lookahead == 'n') ADVANCE(463); END_STATE(); - case 337: + case 395: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); + lookahead == 'n') ADVANCE(416); END_STATE(); - case 338: + case 396: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); + lookahead == 'n') ADVANCE(452); END_STATE(); - case 339: + case 397: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(394); + lookahead == 'n') ADVANCE(453); END_STATE(); - case 340: + case 398: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(395); + lookahead == 'n') ADVANCE(279); END_STATE(); - case 341: + case 399: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(417); + lookahead == 'n') ADVANCE(454); END_STATE(); - case 342: + case 400: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(396); + lookahead == 'n') ADVANCE(478); END_STATE(); - case 343: + case 401: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(225); + lookahead == 'n') ADVANCE(455); END_STATE(); - case 344: + case 402: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(397); + lookahead == 'n') ADVANCE(456); END_STATE(); - case 345: + case 403: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(398); + lookahead == 'n') ADVANCE(225); END_STATE(); - case 346: + case 404: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(418); + lookahead == 'n') ADVANCE(457); END_STATE(); - case 347: + case 405: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(399); + lookahead == 'n') ADVANCE(486); END_STATE(); - case 348: + case 406: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(404); + lookahead == 'n') ADVANCE(231); END_STATE(); - case 349: + case 407: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(428); + lookahead == 'n') ADVANCE(487); END_STATE(); - case 350: + case 408: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(429); + lookahead == 'n') ADVANCE(488); END_STATE(); - case 351: + case 409: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(430); + lookahead == 'n') ADVANCE(489); END_STATE(); - case 352: + case 410: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(431); + lookahead == 'n') ADVANCE(490); END_STATE(); - case 353: + case 411: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(432); + lookahead == 'n') ADVANCE(491); END_STATE(); - case 354: + case 412: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1489); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(334); + lookahead == 'o') ADVANCE(385); END_STATE(); - case 355: + case 413: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(279); + lookahead == 'o') ADVANCE(251); END_STATE(); - case 356: + case 414: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(411); + lookahead == 'o') ADVANCE(1364); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(403); END_STATE(); - case 357: + case 415: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(196); + lookahead == 'o') ADVANCE(338); END_STATE(); - case 358: + case 416: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(405); + lookahead == 'o') ADVANCE(465); END_STATE(); - case 359: + case 417: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(205); + lookahead == 'o') ADVANCE(443); END_STATE(); - case 360: + case 418: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(327); + lookahead == 'o') ADVANCE(444); END_STATE(); - case 361: + case 419: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(384); + lookahead == 'o') ADVANCE(450); END_STATE(); - case 362: + case 420: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(389); + lookahead == 'o') ADVANCE(468); END_STATE(); - case 363: + case 421: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(385); + lookahead == 'o') ADVANCE(451); END_STATE(); - case 364: + case 422: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(391); + lookahead == 'o') ADVANCE(472); END_STATE(); - case 365: + case 423: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(407); + lookahead == 'o') ADVANCE(270); END_STATE(); - case 366: + case 424: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(349); + lookahead == 'o') ADVANCE(407); END_STATE(); - case 367: + case 425: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(350); + lookahead == 'o') ADVANCE(408); END_STATE(); - case 368: + case 426: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(351); + lookahead == 'o') ADVANCE(409); END_STATE(); - case 369: + case 427: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(352); + lookahead == 'o') ADVANCE(410); END_STATE(); - case 370: + case 428: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(353); + lookahead == 'o') ADVANCE(411); END_STATE(); - case 371: + case 429: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(313); + lookahead == 'p') ADVANCE(370); END_STATE(); - case 372: + case 430: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(316); + lookahead == 'p') ADVANCE(432); END_STATE(); - case 373: + case 431: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(375); + lookahead == 'p') ADVANCE(373); END_STATE(); - case 374: + case 432: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(179); + lookahead == 'p') ADVANCE(419); END_STATE(); - case 375: + case 433: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(364); + lookahead == 'p') ADVANCE(241); END_STATE(); - case 376: + case 434: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(320); + lookahead == 'p') ADVANCE(378); END_STATE(); - case 377: + case 435: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); + lookahead == 'p') ADVANCE(381); END_STATE(); - case 378: + case 436: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(324); + lookahead == 'p') ADVANCE(382); END_STATE(); - case 379: + case 437: if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(869); + lookahead == 'q') ADVANCE(926); END_STATE(); - case 380: + case 438: if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(855); + lookahead == 'q') ADVANCE(926); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(223); END_STATE(); - case 381: + case 439: if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(873); + lookahead == 'q') ADVANCE(912); END_STATE(); - case 382: + case 440: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(930); + END_STATE(); + case 441: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1768); + lookahead == 'r') ADVANCE(1755); END_STATE(); - case 383: + case 442: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1771); + lookahead == 'r') ADVANCE(1758); END_STATE(); - case 384: + case 443: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1769); + lookahead == 'r') ADVANCE(1756); END_STATE(); - case 385: + case 444: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1772); + lookahead == 'r') ADVANCE(1759); END_STATE(); - case 386: + case 445: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1483); + lookahead == 'r') ADVANCE(1360); END_STATE(); - case 387: + case 446: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(165); + lookahead == 'r') ADVANCE(227); END_STATE(); - case 388: + case 447: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(224); + lookahead == 'r') ADVANCE(278); END_STATE(); - case 389: + case 448: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(260); + lookahead == 'r') ADVANCE(226); END_STATE(); - case 390: + case 449: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(167); + lookahead == 'r') ADVANCE(228); END_STATE(); - case 391: + case 450: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(420); + lookahead == 'r') ADVANCE(485); END_STATE(); - case 392: + case 451: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(172); + lookahead == 'r') ADVANCE(316); END_STATE(); - case 393: + case 452: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1462); + lookahead == 's') ADVANCE(923); END_STATE(); - case 394: + case 453: if (lookahead == 'S' || - lookahead == 's') ADVANCE(866); + lookahead == 's') ADVANCE(911); END_STATE(); - case 395: + case 454: if (lookahead == 'S' || - lookahead == 's') ADVANCE(854); + lookahead == 's') ADVANCE(929); END_STATE(); - case 396: + case 455: if (lookahead == 'S' || - lookahead == 's') ADVANCE(872); + lookahead == 's') ADVANCE(955); END_STATE(); - case 397: + case 456: if (lookahead == 'S' || - lookahead == 's') ADVANCE(897); + lookahead == 's') ADVANCE(920); END_STATE(); - case 398: + case 457: if (lookahead == 'S' || - lookahead == 's') ADVANCE(863); + lookahead == 's') ADVANCE(939); END_STATE(); - case 399: + case 458: if (lookahead == 'S' || - lookahead == 's') ADVANCE(883); + lookahead == 's') ADVANCE(1335); END_STATE(); - case 400: + case 459: if (lookahead == 'S' || - lookahead == 's') ADVANCE(393); + lookahead == 's') ADVANCE(312); END_STATE(); - case 401: + case 460: if (lookahead == 'S' || - lookahead == 's') ADVANCE(251); + lookahead == 's') ADVANCE(309); END_STATE(); - case 402: + case 461: if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); + lookahead == 's') ADVANCE(458); END_STATE(); - case 403: + case 462: if (lookahead == 'S' || - lookahead == 's') ADVANCE(256); + lookahead == 's') ADVANCE(306); END_STATE(); - case 404: + case 463: if (lookahead == 'S' || - lookahead == 's') ADVANCE(295); + lookahead == 's') ADVANCE(350); END_STATE(); - case 405: + case 464: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1799); + lookahead == 't') ADVANCE(1782); END_STATE(); - case 406: + case 465: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1476); + lookahead == 't') ADVANCE(1786); END_STATE(); - case 407: + case 466: if (lookahead == 'T' || - lookahead == 't') ADVANCE(889); + lookahead == 't') ADVANCE(274); END_STATE(); - case 408: + case 467: if (lookahead == 'T' || - lookahead == 't') ADVANCE(904); + lookahead == 't') ADVANCE(1352); END_STATE(); - case 409: + case 468: if (lookahead == 'T' || - lookahead == 't') ADVANCE(868); + lookahead == 't') ADVANCE(944); END_STATE(); - case 410: + case 469: if (lookahead == 'T' || - lookahead == 't') ADVANCE(890); + lookahead == 't') ADVANCE(962); END_STATE(); - case 411: + case 470: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1793); + lookahead == 't') ADVANCE(925); END_STATE(); - case 412: + case 471: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1758); + lookahead == 't') ADVANCE(945); END_STATE(); - case 413: + case 472: if (lookahead == 'T' || - lookahead == 't') ADVANCE(219); + lookahead == 't') ADVANCE(1781); END_STATE(); - case 414: + case 473: if (lookahead == 'T' || - lookahead == 't') ADVANCE(218); + lookahead == 't') ADVANCE(1745); END_STATE(); - case 415: + case 474: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1794); + lookahead == 't') ADVANCE(273); END_STATE(); - case 416: + case 475: if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); + lookahead == 't') ADVANCE(252); END_STATE(); - case 417: + case 476: if (lookahead == 'T' || - lookahead == 't') ADVANCE(283); + lookahead == 't') ADVANCE(253); END_STATE(); - case 418: + case 477: if (lookahead == 'T' || - lookahead == 't') ADVANCE(181); + lookahead == 't') ADVANCE(254); END_STATE(); - case 419: + case 478: if (lookahead == 'T' || - lookahead == 't') ADVANCE(278); + lookahead == 't') ADVANCE(236); END_STATE(); - case 420: + case 479: if (lookahead == 'T' || - lookahead == 't') ADVANCE(258); + lookahead == 't') ADVANCE(337); END_STATE(); - case 421: + case 480: if (lookahead == 'T' || - lookahead == 't') ADVANCE(199); + lookahead == 't') ADVANCE(257); END_STATE(); - case 422: + case 481: if (lookahead == 'T' || - lookahead == 't') ADVANCE(201); + lookahead == 't') ADVANCE(259); END_STATE(); - case 423: + case 482: if (lookahead == 'T' || - lookahead == 't') ADVANCE(202); + lookahead == 't') ADVANCE(261); END_STATE(); - case 424: + case 483: if (lookahead == 'T' || - lookahead == 't') ADVANCE(203); + lookahead == 't') ADVANCE(262); END_STATE(); - case 425: + case 484: if (lookahead == 'T' || - lookahead == 't') ADVANCE(209); + lookahead == 't') ADVANCE(263); END_STATE(); - case 426: + case 485: if (lookahead == 'T' || - lookahead == 't') ADVANCE(210); + lookahead == 't') ADVANCE(315); END_STATE(); - case 427: + case 486: if (lookahead == 'T' || - lookahead == 't') ADVANCE(211); + lookahead == 't') ADVANCE(343); END_STATE(); - case 428: + case 487: if (lookahead == 'T' || - lookahead == 't') ADVANCE(183); + lookahead == 't') ADVANCE(240); END_STATE(); - case 429: + case 488: if (lookahead == 'T' || - lookahead == 't') ADVANCE(186); + lookahead == 't') ADVANCE(244); END_STATE(); - case 430: + case 489: if (lookahead == 'T' || - lookahead == 't') ADVANCE(188); + lookahead == 't') ADVANCE(246); END_STATE(); - case 431: + case 490: if (lookahead == 'T' || - lookahead == 't') ADVANCE(191); + lookahead == 't') ADVANCE(248); END_STATE(); - case 432: + case 491: if (lookahead == 'T' || - lookahead == 't') ADVANCE(193); + lookahead == 't') ADVANCE(250); END_STATE(); - case 433: + case 492: if (lookahead == 'T' || - lookahead == 't') ADVANCE(220); + lookahead == 't') ADVANCE(275); END_STATE(); - case 434: + case 493: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(373); + lookahead == 'u') ADVANCE(430); END_STATE(); - case 435: + case 494: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(248); + lookahead == 'v') ADVANCE(304); END_STATE(); - case 436: + case 495: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(297); + lookahead == 'w') ADVANCE(358); END_STATE(); - case 437: + case 496: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1474); + lookahead == 'x') ADVANCE(1350); END_STATE(); - case 438: + case 497: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(176); + lookahead == 'x') ADVANCE(223); END_STATE(); - case 439: + case 498: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1504); + lookahead == 'y') ADVANCE(1381); END_STATE(); - case 440: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + case 499: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 441: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(532); + case 500: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(596); END_STATE(); - case 442: + case 501: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(512); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(576); END_STATE(); - case 443: + case 502: if (lookahead != 0 && - lookahead != '}') ADVANCE(162); + lookahead != '}') ADVANCE(216); END_STATE(); - case 444: - if (lookahead != 0) ADVANCE(117); + case 503: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(517); END_STATE(); - case 445: - if (lookahead != 0) ADVANCE(587); + case 504: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(517); + if (lookahead == '\r') SKIP(503); END_STATE(); - case 446: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(453); + case 505: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(520); END_STATE(); - case 447: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(456); + case 506: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(520); + if (lookahead == '\r') SKIP(505); END_STATE(); - case 448: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(455); + case 507: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(519); END_STATE(); - case 449: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(457); + case 508: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(519); + if (lookahead == '\r') SKIP(507); END_STATE(); - case 450: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(458); + case 509: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(521); END_STATE(); - case 451: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(459); + case 510: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(521); + if (lookahead == '\r') SKIP(509); END_STATE(); - case 452: - if (eof) ADVANCE(461); - if (lookahead == '\n') SKIP(460); + case 511: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(522); END_STATE(); - case 453: - if (eof) ADVANCE(461); + case 512: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(522); + if (lookahead == '\r') SKIP(511); + END_STATE(); + case 513: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(523); + END_STATE(); + case 514: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(523); + if (lookahead == '\r') SKIP(513); + END_STATE(); + case 515: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(524); + END_STATE(); + case 516: + if (eof) ADVANCE(525); + if (lookahead == '\n') SKIP(524); + if (lookahead == '\r') SKIP(515); + END_STATE(); + case 517: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1797, - '"', 1528, - '#', 473, - '$', 1527, - '%', 1757, - '&', 1511, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1777, - '.', 772, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 1753, - ';', 1453, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 1407, + '#', 537, + '$', 1406, + '%', 1744, + '&', 1389, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1764, + '.', 828, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 1740, + ';', 1323, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(446); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(504); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(675); + lookahead == 'b') ADVANCE(740); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(650); + lookahead == 'c') ADVANCE(717); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(654); + lookahead == 'd') ADVANCE(721); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(773); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(697); + lookahead == 'f') ADVANCE(759); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(698); + lookahead == 'h') ADVANCE(760); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(688); + lookahead == 'i') ADVANCE(751); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(656); + lookahead == 'p') ADVANCE(723); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(681); + lookahead == 'r') ADVANCE(742); if (lookahead == 'S' || - lookahead == 's') ADVANCE(676); + lookahead == 's') ADVANCE(741); if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(756); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(787); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(696); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(757); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(453); + lookahead == 0xfeff) SKIP(517); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 454: - if (eof) ADVANCE(461); + case 518: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1797, - '"', 540, - '#', 473, - '$', 120, - '%', 1757, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1779, - '.', 1816, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 604, + '#', 537, + '$', 174, + '%', 1744, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1765, + '.', 1804, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(448); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(508); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(250); + lookahead == 'b') ADVANCE(305); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(169); + lookahead == 'c') ADVANCE(249); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(354); + lookahead == 'd') ADVANCE(414); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(311); + lookahead == 'e') ADVANCE(379); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(284); + lookahead == 'f') ADVANCE(351); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(330); + lookahead == 'i') ADVANCE(391); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(166); + lookahead == 'p') ADVANCE(237); if (lookahead == 'S' || - lookahead == 's') ADVANCE(436); + lookahead == 's') ADVANCE(495); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(341); + lookahead == 'u') ADVANCE(405); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(277); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(335); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(455); + lookahead == 0xfeff) SKIP(519); END_STATE(); - case 455: - if (eof) ADVANCE(461); + case 519: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1797, - '"', 540, - '#', 473, - '$', 120, - '%', 1757, - '\'', 124, - '(', 1455, - ')', 1456, - '*', 1791, - '+', 1774, - ',', 1458, - '-', 1779, - '.', 132, - '/', 1788, - '0', 485, - '1', 479, - '2', 480, - '3', 481, - '4', 482, - '5', 483, - '6', 484, - ':', 140, - '<', 826, - '=', 778, - '>', 784, - '@', 96, - '[', 775, - '\\', 1789, - ']', 1822, + '!', 1784, + '"', 604, + '#', 537, + '$', 174, + '%', 1744, + '\'', 178, + '(', 1326, + ')', 1327, + '*', 1779, + '+', 1761, + ',', 1329, + '-', 1765, + '.', 186, + '/', 1776, + '0', 549, + '1', 543, + '2', 544, + '3', 545, + '4', 546, + '5', 547, + '6', 548, + ':', 194, + '<', 883, + '=', 834, + '>', 841, + '@', 146, + '[', 831, + '\\', 1777, + ']', 1810, ); - if (lookahead == '`') SKIP(448); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '|') ADVANCE(1510); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(508); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '|') ADVANCE(1388); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(250); + lookahead == 'b') ADVANCE(305); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(169); + lookahead == 'c') ADVANCE(249); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(354); + lookahead == 'd') ADVANCE(414); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(311); + lookahead == 'e') ADVANCE(379); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(284); + lookahead == 'f') ADVANCE(351); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(330); + lookahead == 'i') ADVANCE(391); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(166); + lookahead == 'p') ADVANCE(237); if (lookahead == 'S' || - lookahead == 's') ADVANCE(436); + lookahead == 's') ADVANCE(495); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(341); + lookahead == 'u') ADVANCE(405); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(277); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(486); + lookahead == 'w') ADVANCE(335); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(455); + lookahead == 0xfeff) SKIP(519); END_STATE(); - case 456: - if (eof) ADVANCE(461); + case 520: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(447); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(506); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1641); + lookahead == 'e') ADVANCE(1586); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1572); + lookahead == 'p') ADVANCE(1509); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1532); + lookahead == 0xfeff) ADVANCE(1410); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(520); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 457: - if (eof) ADVANCE(461); + case 521: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(449); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(510); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1569); + lookahead == 'c') ADVANCE(1505); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1641); + lookahead == 'e') ADVANCE(1586); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1609); + lookahead == 'f') ADVANCE(1552); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1572); + lookahead == 'p') ADVANCE(1509); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1536); + lookahead == 0xfeff) ADVANCE(1414); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(521); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 458: - if (eof) ADVANCE(461); + case 522: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(450); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(512); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1628); + lookahead == 'e') ADVANCE(1575); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1572); + lookahead == 'p') ADVANCE(1509); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1534); + lookahead == 0xfeff) ADVANCE(1412); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(522); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 459: - if (eof) ADVANCE(461); + case 523: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(451); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(514); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1641); + lookahead == 'e') ADVANCE(1586); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1609); + lookahead == 'f') ADVANCE(1552); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1572); + lookahead == 'p') ADVANCE(1509); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1533); + lookahead == 0xfeff) ADVANCE(1411); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(459); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(523); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 460: - if (eof) ADVANCE(461); + case 524: + if (eof) ADVANCE(525); ADVANCE_MAP( - '!', 1796, - '"', 540, - '#', 468, - '$', 120, - '%', 1756, - '&', 1511, - '\'', 124, - '(', 1455, - ')', 1456, - '+', 1773, - ',', 1458, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - ';', 1453, - '<', 115, - '@', 96, - '[', 775, + '!', 1783, + '"', 604, + '#', 532, + '$', 174, + '%', 1743, + '&', 1389, + '\'', 178, + '(', 1326, + ')', 1327, + '+', 1760, + ',', 1329, + '-', 1768, + '.', 829, + '0', 551, + ':', 1663, + ';', 1323, + '<', 169, + '@', 146, + '[', 831, ); - if (lookahead == '`') SKIP(452); - if (lookahead == '{') ADVANCE(1464); - if (lookahead == '}') ADVANCE(1466); + if (lookahead == '`') SKIP(516); + if (lookahead == '{') ADVANCE(1339); + if (lookahead == '}') ADVANCE(1341); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1662); + lookahead == 'b') ADVANCE(1618); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1623); + lookahead == 'c') ADVANCE(1570); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1556); + lookahead == 'd') ADVANCE(1489); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); + lookahead == 'e') ADVANCE(1582); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1608); + lookahead == 'f') ADVANCE(1551); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(1539); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1572); + lookahead == 'p') ADVANCE(1509); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1589); + lookahead == 'r') ADVANCE(1528); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1586); + lookahead == 's') ADVANCE(1521); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1548); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1606); + lookahead == 'w') ADVANCE(1547); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1535); + lookahead == 0xfeff) ADVANCE(1413); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(460); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); + lookahead == ' ') SKIP(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); if (lookahead != 0 && (lookahead < ' ' || '<' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 461: + case 525: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 462: + case 526: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 463: + case 527: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(99); - if (lookahead == '"') ADVANCE(595); - if (lookahead == '#') ADVANCE(463); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(463); - if (lookahead != 0) ADVANCE(473); + if (lookahead == '"') ADVANCE(661); + if (lookahead == '#') ADVANCE(527); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(149); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(527); + if (lookahead != 0) ADVANCE(537); END_STATE(); - case 464: + case 528: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1519); - if (lookahead == '"' || - lookahead == '$' || - lookahead == '`') ADVANCE(473); - if (lookahead != 0) ADVANCE(464); + if (lookahead == '|') ADVANCE(537); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(528); END_STATE(); - case 465: + case 529: ACCEPT_TOKEN(sym_comment); - if (lookahead == '|') ADVANCE(473); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(465); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(1397); + if (lookahead == '"' || + lookahead == '$' || + lookahead == '`') ADVANCE(537); + if (lookahead != 0) ADVANCE(529); END_STATE(); - case 466: + case 530: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || lookahead == '{' || - lookahead == '}') ADVANCE(473); + lookahead == '}') ADVANCE(537); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(466); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(530); END_STATE(); - case 467: + case 531: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ',' || lookahead == ';' || lookahead == '|' || - lookahead == '}') ADVANCE(473); + lookahead == '}') ADVANCE(537); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(467); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(531); END_STATE(); - case 468: + case 532: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || (' ' <= lookahead && lookahead <= '"') || ('$' <= lookahead && lookahead <= '-') || lookahead == '/' || @@ -9490,11 +10053,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == ']' || lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(473); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(537); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(468); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(532); END_STATE(); - case 469: + case 533: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -9504,9 +10067,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 470: + case 534: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -9515,50 +10078,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 471: + case 535: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(1519); + lookahead != '\n' && + lookahead != '\r' && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 472: + case 536: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '|') ADVANCE(1452); + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(1397); END_STATE(); - case 473: + case 537: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(473); + lookahead != '\n' && + lookahead != '\r') ADVANCE(537); END_STATE(); - case 474: + case 538: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 475: + case 539: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '-', 1744, - '.', 1546, - 'e', 1542, - 'g', 1543, - 'k', 1543, - 'm', 1543, - 'p', 1543, - 't', 1543, - 'x', 1547, - 'd', 477, - 'l', 477, + '-', 1733, + '.', 1470, + 'e', 1420, + 'g', 1431, + 'k', 1431, + 'm', 1431, + 'p', 1431, + 't', 1431, + 'x', 1471, + 'd', 541, + 'l', 541, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(540); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -9566,28 +10131,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 476: + case 540: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '-', 1744, - '.', 1546, - 'e', 1542, - 'g', 1543, - 'k', 1543, - 'm', 1543, - 'p', 1543, - 't', 1543, - 'd', 477, - 'l', 477, + '-', 1733, + '.', 1470, + 'e', 1420, + 'g', 1431, + 'k', 1431, + 'm', 1431, + 'p', 1431, + 't', 1431, + 'd', 541, + 'l', 541, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(540); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -9595,23 +10160,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 477: + case 541: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'g') ADVANCE(1543); - if (lookahead == 'k') ADVANCE(1543); - if (lookahead == 'm') ADVANCE(1543); - if (lookahead == 'p') ADVANCE(1543); - if (lookahead == 't') ADVANCE(1543); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'g') ADVANCE(1431); + if (lookahead == 'k') ADVANCE(1431); + if (lookahead == 'm') ADVANCE(1431); + if (lookahead == 'p') ADVANCE(1431); + if (lookahead == 't') ADVANCE(1431); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -9619,18 +10184,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 478: + case 542: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '-') ADVANCE(1744); + if (lookahead == '-') ADVANCE(1733); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -9638,183 +10203,183 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 479: + case 543: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 122, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 176, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 480: + case 544: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 790, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 847, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 481: + case 545: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 796, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 853, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 482: + case 546: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 802, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 859, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 483: + case 547: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 808, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 865, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 484: + case 548: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - '>', 814, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + '>', 871, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 485: + case 549: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'x', 442, - 'd', 499, - 'l', 499, + '.', 499, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'x', 501, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 486: + case 550: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 440, - 'e', 163, - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'd', 499, - 'l', 499, + '.', 499, + 'e', 217, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); - case 487: + case 551: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1692, - 'e', 1553, - 'g', 1550, - 'k', 1550, - 'm', 1550, - 'p', 1550, - 't', 1550, - 'x', 1693, - 'd', 502, - 'l', 502, + '.', 1661, + 'e', 1487, + 'g', 1484, + 'k', 1484, + 'm', 1484, + 'p', 1484, + 't', 1484, + 'x', 1662, + 'd', 566, + 'l', 566, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 488: + case 552: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1692, - 'e', 1553, - 'g', 1550, - 'k', 1550, - 'm', 1550, - 'p', 1550, - 't', 1550, - 'd', 502, - 'l', 502, + '.', 1661, + 'e', 1487, + 'g', 1484, + 'k', 1484, + 'm', 1484, + 'p', 1484, + 't', 1484, + 'd', 566, + 'l', 566, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 489: + case 553: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 1161, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 1223, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9823,23 +10388,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 490: + case 554: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 792, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 849, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9848,23 +10413,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 491: + case 555: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 798, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 855, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9873,23 +10438,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 492: + case 556: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 804, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 861, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9898,23 +10463,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 493: + case 557: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 810, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 867, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9923,23 +10488,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 494: + case 558: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - '>', 816, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + '>', 873, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9948,23 +10513,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 495: + case 559: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'x', 1210, - 'd', 503, - 'l', 503, + '.', 1264, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'x', 1267, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9973,22 +10538,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 496: + case 560: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1205, - 'e', 1180, - 'g', 1176, - 'k', 1176, - 'm', 1176, - 'p', 1176, - 't', 1176, - 'd', 503, - 'l', 503, + '.', 1264, + 'e', 1242, + 'g', 1238, + 'k', 1238, + 'm', 1238, + 'p', 1238, + 't', 1238, + 'd', 567, + 'l', 567, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -9997,23 +10562,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 497: + case 561: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1231, - 'e', 1230, - 'g', 1227, - 'k', 1227, - 'm', 1227, - 'p', 1227, - 't', 1227, - 'x', 1234, - 'd', 504, - 'l', 504, + '.', 1289, + 'e', 1288, + 'g', 1285, + 'k', 1285, + 'm', 1285, + 'p', 1285, + 't', 1285, + 'x', 1291, + 'd', 568, + 'l', 568, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10021,22 +10586,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 498: + case 562: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 1231, - 'e', 1230, - 'g', 1227, - 'k', 1227, - 'm', 1227, - 'p', 1227, - 't', 1227, - 'd', 504, - 'l', 504, + '.', 1289, + 'e', 1288, + 'g', 1285, + 'k', 1285, + 'm', 1285, + 'p', 1285, + 't', 1285, + 'd', 568, + 'l', 568, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10044,57 +10609,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 499: + case 563: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == 'g') ADVANCE(159); - if (lookahead == 'k') ADVANCE(159); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'p') ADVANCE(159); - if (lookahead == 't') ADVANCE(159); + if (lookahead == 'g') ADVANCE(213); + if (lookahead == 'k') ADVANCE(213); + if (lookahead == 'm') ADVANCE(213); + if (lookahead == 'p') ADVANCE(213); + if (lookahead == 't') ADVANCE(213); END_STATE(); - case 500: + case 564: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - 'g', 159, - 'k', 159, - 'm', 159, - 'p', 159, - 't', 159, - 'x', 442, - 'd', 499, - 'l', 499, + 'g', 213, + 'k', 213, + 'm', 213, + 'p', 213, + 't', 213, + 'x', 501, + 'd', 563, + 'l', 563, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); END_STATE(); - case 501: + case 565: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == 'g') ADVANCE(159); - if (lookahead == 'k') ADVANCE(159); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'p') ADVANCE(159); - if (lookahead == 't') ADVANCE(159); + if (lookahead == 'g') ADVANCE(213); + if (lookahead == 'k') ADVANCE(213); + if (lookahead == 'm') ADVANCE(213); + if (lookahead == 'p') ADVANCE(213); + if (lookahead == 't') ADVANCE(213); if (lookahead == 'd' || - lookahead == 'l') ADVANCE(499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(501); + lookahead == 'l') ADVANCE(563); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); END_STATE(); - case 502: + case 566: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == 'g') ADVANCE(1550); - if (lookahead == 'k') ADVANCE(1550); - if (lookahead == 'm') ADVANCE(1550); - if (lookahead == 'p') ADVANCE(1550); - if (lookahead == 't') ADVANCE(1550); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'g') ADVANCE(1484); + if (lookahead == 'k') ADVANCE(1484); + if (lookahead == 'm') ADVANCE(1484); + if (lookahead == 'p') ADVANCE(1484); + if (lookahead == 't') ADVANCE(1484); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 503: + case 567: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == 'g') ADVANCE(1176); - if (lookahead == 'k') ADVANCE(1176); - if (lookahead == 'm') ADVANCE(1176); - if (lookahead == 'p') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1176); + if (lookahead == 'g') ADVANCE(1238); + if (lookahead == 'k') ADVANCE(1238); + if (lookahead == 'm') ADVANCE(1238); + if (lookahead == 'p') ADVANCE(1238); + if (lookahead == 't') ADVANCE(1238); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10103,15 +10668,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 504: + case 568: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == 'g') ADVANCE(1227); - if (lookahead == 'k') ADVANCE(1227); - if (lookahead == 'm') ADVANCE(1227); - if (lookahead == 'p') ADVANCE(1227); - if (lookahead == 't') ADVANCE(1227); + if (lookahead == 'g') ADVANCE(1285); + if (lookahead == 'k') ADVANCE(1285); + if (lookahead == 'm') ADVANCE(1285); + if (lookahead == 'p') ADVANCE(1285); + if (lookahead == 't') ADVANCE(1285); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10119,13 +10684,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 505: + case 569: ACCEPT_TOKEN(sym_decimal_integer_literal); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 506: + case 570: ACCEPT_TOKEN(sym_decimal_integer_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10135,9 +10700,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 507: + case 571: ACCEPT_TOKEN(sym_decimal_integer_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10146,29 +10711,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 508: + case 572: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); END_STATE(); - case 509: + case 573: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'g') ADVANCE(1545); - if (lookahead == 'k') ADVANCE(1545); - if (lookahead == 'l') ADVANCE(510); - if (lookahead == 'm') ADVANCE(1545); - if (lookahead == 'p') ADVANCE(1545); - if (lookahead == 't') ADVANCE(1545); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'g') ADVANCE(1433); + if (lookahead == 'k') ADVANCE(1433); + if (lookahead == 'l') ADVANCE(574); + if (lookahead == 'm') ADVANCE(1433); + if (lookahead == 'p') ADVANCE(1433); + if (lookahead == 't') ADVANCE(1433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(509); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); if (lookahead == '.' || lookahead == '?' || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10176,23 +10741,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 510: + case 574: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'g') ADVANCE(1545); - if (lookahead == 'k') ADVANCE(1545); - if (lookahead == 'm') ADVANCE(1545); - if (lookahead == 'p') ADVANCE(1545); - if (lookahead == 't') ADVANCE(1545); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'g') ADVANCE(1433); + if (lookahead == 'k') ADVANCE(1433); + if (lookahead == 'm') ADVANCE(1433); + if (lookahead == 'p') ADVANCE(1433); + if (lookahead == 't') ADVANCE(1433); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10200,18 +10765,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 511: + case 575: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == '-') ADVANCE(1744); + if (lookahead == '-') ADVANCE(1733); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10219,61 +10784,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 512: + case 576: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(161); - if (lookahead == 'k') ADVANCE(161); - if (lookahead == 'l') ADVANCE(513); - if (lookahead == 'm') ADVANCE(161); - if (lookahead == 'p') ADVANCE(161); - if (lookahead == 't') ADVANCE(161); + if (lookahead == 'g') ADVANCE(215); + if (lookahead == 'k') ADVANCE(215); + if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'm') ADVANCE(215); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 't') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(512); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(576); END_STATE(); - case 513: + case 577: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(161); - if (lookahead == 'k') ADVANCE(161); - if (lookahead == 'm') ADVANCE(161); - if (lookahead == 'p') ADVANCE(161); - if (lookahead == 't') ADVANCE(161); + if (lookahead == 'g') ADVANCE(215); + if (lookahead == 'k') ADVANCE(215); + if (lookahead == 'm') ADVANCE(215); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 't') ADVANCE(215); END_STATE(); - case 514: + case 578: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1552); - if (lookahead == 'k') ADVANCE(1552); - if (lookahead == 'l') ADVANCE(515); - if (lookahead == 'm') ADVANCE(1552); - if (lookahead == 'p') ADVANCE(1552); - if (lookahead == 't') ADVANCE(1552); + if (lookahead == 'g') ADVANCE(1486); + if (lookahead == 'k') ADVANCE(1486); + if (lookahead == 'l') ADVANCE(579); + if (lookahead == 'm') ADVANCE(1486); + if (lookahead == 'p') ADVANCE(1486); + if (lookahead == 't') ADVANCE(1486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(514); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 515: + case 579: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1552); - if (lookahead == 'k') ADVANCE(1552); - if (lookahead == 'm') ADVANCE(1552); - if (lookahead == 'p') ADVANCE(1552); - if (lookahead == 't') ADVANCE(1552); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'g') ADVANCE(1486); + if (lookahead == 'k') ADVANCE(1486); + if (lookahead == 'm') ADVANCE(1486); + if (lookahead == 'p') ADVANCE(1486); + if (lookahead == 't') ADVANCE(1486); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 516: + case 580: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1178); - if (lookahead == 'k') ADVANCE(1178); - if (lookahead == 'l') ADVANCE(517); - if (lookahead == 'm') ADVANCE(1178); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 't') ADVANCE(1178); + if (lookahead == 'g') ADVANCE(1240); + if (lookahead == 'k') ADVANCE(1240); + if (lookahead == 'l') ADVANCE(581); + if (lookahead == 'm') ADVANCE(1240); + if (lookahead == 'p') ADVANCE(1240); + if (lookahead == 't') ADVANCE(1240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(580); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10282,15 +10847,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 517: + case 581: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1178); - if (lookahead == 'k') ADVANCE(1178); - if (lookahead == 'm') ADVANCE(1178); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 't') ADVANCE(1178); + if (lookahead == 'g') ADVANCE(1240); + if (lookahead == 'k') ADVANCE(1240); + if (lookahead == 'm') ADVANCE(1240); + if (lookahead == 'p') ADVANCE(1240); + if (lookahead == 't') ADVANCE(1240); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10299,19 +10864,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 518: + case 582: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1229); - if (lookahead == 'k') ADVANCE(1229); - if (lookahead == 'l') ADVANCE(519); - if (lookahead == 'm') ADVANCE(1229); - if (lookahead == 'p') ADVANCE(1229); - if (lookahead == 't') ADVANCE(1229); + if (lookahead == 'g') ADVANCE(1287); + if (lookahead == 'k') ADVANCE(1287); + if (lookahead == 'l') ADVANCE(583); + if (lookahead == 'm') ADVANCE(1287); + if (lookahead == 'p') ADVANCE(1287); + if (lookahead == 't') ADVANCE(1287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(582); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10319,15 +10884,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 519: + case 583: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if (lookahead == 'g') ADVANCE(1229); - if (lookahead == 'k') ADVANCE(1229); - if (lookahead == 'm') ADVANCE(1229); - if (lookahead == 'p') ADVANCE(1229); - if (lookahead == 't') ADVANCE(1229); + if (lookahead == 'g') ADVANCE(1287); + if (lookahead == 'k') ADVANCE(1287); + if (lookahead == 'm') ADVANCE(1287); + if (lookahead == 'p') ADVANCE(1287); + if (lookahead == 't') ADVANCE(1287); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10335,13 +10900,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 520: + case 584: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 521: + case 585: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10351,9 +10916,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 522: + case 586: ACCEPT_TOKEN(sym_hexadecimal_integer_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10362,27 +10927,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 523: + case 587: ACCEPT_TOKEN(sym_real_literal); END_STATE(); - case 524: + case 588: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'e') ADVANCE(1542); - if (lookahead == 'g') ADVANCE(1544); - if (lookahead == 'k') ADVANCE(1544); - if (lookahead == 'm') ADVANCE(1544); - if (lookahead == 'p') ADVANCE(1544); - if (lookahead == 't') ADVANCE(1544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(524); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'e') ADVANCE(1420); + if (lookahead == 'g') ADVANCE(1432); + if (lookahead == 'k') ADVANCE(1432); + if (lookahead == 'm') ADVANCE(1432); + if (lookahead == 'p') ADVANCE(1432); + if (lookahead == 't') ADVANCE(1432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); if (lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10390,23 +10955,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 525: + case 589: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'g') ADVANCE(1544); - if (lookahead == 'k') ADVANCE(1544); - if (lookahead == 'm') ADVANCE(1544); - if (lookahead == 'p') ADVANCE(1544); - if (lookahead == 't') ADVANCE(1544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'g') ADVANCE(1432); + if (lookahead == 'k') ADVANCE(1432); + if (lookahead == 'm') ADVANCE(1432); + if (lookahead == 'p') ADVANCE(1432); + if (lookahead == 't') ADVANCE(1432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(589); if (lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10414,18 +10979,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 526: + case 590: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '-') ADVANCE(1744); + if (lookahead == '-') ADVANCE(1733); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead) && @@ -10433,38 +10998,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 527: + case 591: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'g') ADVANCE(160); - if (lookahead == 'k') ADVANCE(160); - if (lookahead == 'm') ADVANCE(160); - if (lookahead == 'p') ADVANCE(160); - if (lookahead == 't') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'g') ADVANCE(214); + if (lookahead == 'k') ADVANCE(214); + if (lookahead == 'm') ADVANCE(214); + if (lookahead == 'p') ADVANCE(214); + if (lookahead == 't') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 528: + case 592: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'e') ADVANCE(1553); - if (lookahead == 'g') ADVANCE(1551); - if (lookahead == 'k') ADVANCE(1551); - if (lookahead == 'm') ADVANCE(1551); - if (lookahead == 'p') ADVANCE(1551); - if (lookahead == 't') ADVANCE(1551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(528); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'e') ADVANCE(1487); + if (lookahead == 'g') ADVANCE(1485); + if (lookahead == 'k') ADVANCE(1485); + if (lookahead == 'm') ADVANCE(1485); + if (lookahead == 'p') ADVANCE(1485); + if (lookahead == 't') ADVANCE(1485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(592); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 529: + case 593: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'e') ADVANCE(1180); - if (lookahead == 'g') ADVANCE(1177); - if (lookahead == 'k') ADVANCE(1177); - if (lookahead == 'm') ADVANCE(1177); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 't') ADVANCE(1177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(529); + if (lookahead == 'e') ADVANCE(1242); + if (lookahead == 'g') ADVANCE(1239); + if (lookahead == 'k') ADVANCE(1239); + if (lookahead == 'm') ADVANCE(1239); + if (lookahead == 'p') ADVANCE(1239); + if (lookahead == 't') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(593); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10473,17 +11038,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 530: + case 594: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'e') ADVANCE(1230); - if (lookahead == 'g') ADVANCE(1228); - if (lookahead == 'k') ADVANCE(1228); - if (lookahead == 'm') ADVANCE(1228); - if (lookahead == 'p') ADVANCE(1228); - if (lookahead == 't') ADVANCE(1228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(530); + if (lookahead == 'e') ADVANCE(1288); + if (lookahead == 'g') ADVANCE(1286); + if (lookahead == 'k') ADVANCE(1286); + if (lookahead == 'm') ADVANCE(1286); + if (lookahead == 'p') ADVANCE(1286); + if (lookahead == 't') ADVANCE(1286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10491,51 +11056,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 531: + case 595: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'g') ADVANCE(1736); - if (lookahead == 'k') ADVANCE(1736); - if (lookahead == 'm') ADVANCE(1736); - if (lookahead == 'p') ADVANCE(1736); - if (lookahead == 't') ADVANCE(1736); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(531); + if (lookahead == 'g') ADVANCE(1725); + if (lookahead == 'k') ADVANCE(1725); + if (lookahead == 'm') ADVANCE(1725); + if (lookahead == 'p') ADVANCE(1725); + if (lookahead == 't') ADVANCE(1725); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(595); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 532: + case 596: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'g') ADVANCE(160); - if (lookahead == 'k') ADVANCE(160); - if (lookahead == 'm') ADVANCE(160); - if (lookahead == 'p') ADVANCE(160); - if (lookahead == 't') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(532); + if (lookahead == 'g') ADVANCE(214); + if (lookahead == 'k') ADVANCE(214); + if (lookahead == 'm') ADVANCE(214); + if (lookahead == 'p') ADVANCE(214); + if (lookahead == 't') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(596); END_STATE(); - case 533: + case 597: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'g') ADVANCE(1551); - if (lookahead == 'k') ADVANCE(1551); - if (lookahead == 'm') ADVANCE(1551); - if (lookahead == 'p') ADVANCE(1551); - if (lookahead == 't') ADVANCE(1551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'g') ADVANCE(1485); + if (lookahead == 'k') ADVANCE(1485); + if (lookahead == 'm') ADVANCE(1485); + if (lookahead == 'p') ADVANCE(1485); + if (lookahead == 't') ADVANCE(1485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(597); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 534: + case 598: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'g') ADVANCE(1177); - if (lookahead == 'k') ADVANCE(1177); - if (lookahead == 'm') ADVANCE(1177); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 't') ADVANCE(1177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + if (lookahead == 'g') ADVANCE(1239); + if (lookahead == 'k') ADVANCE(1239); + if (lookahead == 'm') ADVANCE(1239); + if (lookahead == 'p') ADVANCE(1239); + if (lookahead == 't') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(598); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10544,16 +11109,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 535: + case 599: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == 'g') ADVANCE(1228); - if (lookahead == 'k') ADVANCE(1228); - if (lookahead == 'm') ADVANCE(1228); - if (lookahead == 'p') ADVANCE(1228); - if (lookahead == 't') ADVANCE(1228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(535); + if (lookahead == 'g') ADVANCE(1286); + if (lookahead == 'k') ADVANCE(1286); + if (lookahead == 'm') ADVANCE(1286); + if (lookahead == 'p') ADVANCE(1286); + if (lookahead == 't') ADVANCE(1286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(599); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10561,9 +11126,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 536: + case 600: ACCEPT_TOKEN(sym_real_literal); if (lookahead == '-' || lookahead == '.' || @@ -10572,13 +11137,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 537: + case 601: ACCEPT_TOKEN(sym_real_literal); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 538: + case 602: ACCEPT_TOKEN(sym_real_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10588,9 +11153,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 539: + case 603: ACCEPT_TOKEN(sym_real_literal); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10599,1325 +11164,1384 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 540: + case 604: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token1); - if (lookahead == '#') ADVANCE(540); + if (lookahead == '#') ADVANCE(604); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(540); + lookahead == ' ') ADVANCE(604); END_STATE(); - case 541: + case 605: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token1); - if (lookahead == '#') ADVANCE(541); + if (lookahead == '#') ADVANCE(605); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(540); + lookahead == ' ') ADVANCE(604); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 542: + case 606: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token1); - if (lookahead == '#') ADVANCE(542); + if (lookahead == '#') ADVANCE(606); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(540); + lookahead == ' ') ADVANCE(604); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); - END_STATE(); - case 543: - ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '"' || - lookahead == '$' || - lookahead == '`') ADVANCE(473); - if (lookahead != 0) ADVANCE(543); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 544: + case 607: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '\n') ADVANCE(545); - if (lookahead == '"') ADVANCE(595); - if (lookahead == '#') ADVANCE(544); - if (lookahead == '$' || - lookahead == '`') ADVANCE(473); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(544); - if (lookahead != 0) ADVANCE(543); + ADVANCE_MAP( + '"', 661, + '#', 607, + '\n', 608, + '\r', 608, + '$', 537, + '`', 537, + '\t', 607, + 0x0b, 607, + '\f', 607, + ' ', 607, + ); + if (lookahead != 0) ADVANCE(648); END_STATE(); - case 545: + case 608: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '"') ADVANCE(593); - if (lookahead == '#') ADVANCE(545); + if (lookahead == '"') ADVANCE(659); + if (lookahead == '#') ADVANCE(608); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(545); + lookahead == ' ') ADVANCE(608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && - lookahead != '`') ADVANCE(586); + lookahead != '`') ADVANCE(650); END_STATE(); - case 546: + case 609: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '#') ADVANCE(544); - if (lookahead == '<') ADVANCE(548); - if (lookahead == '@') ADVANCE(583); + if (lookahead == '#') ADVANCE(607); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '@') ADVANCE(646); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(547); + lookahead == 0xfeff) ADVANCE(610); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(546); + lookahead == ' ') ADVANCE(609); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && - lookahead != '`') ADVANCE(586); + lookahead != '`') ADVANCE(650); END_STATE(); - case 547: + case 610: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '#') ADVANCE(543); - if (lookahead == '<') ADVANCE(548); - if (lookahead == '@') ADVANCE(583); + if (lookahead == '#') ADVANCE(648); + if (lookahead == '<') ADVANCE(611); + if (lookahead == '@') ADVANCE(646); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(547); + lookahead == 0xfeff) ADVANCE(610); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && - lookahead != '`') ADVANCE(586); + lookahead != '`') ADVANCE(650); END_STATE(); - case 548: + case 611: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '#') ADVANCE(550); + if (lookahead == '#') ADVANCE(613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && - lookahead != '`') ADVANCE(586); + lookahead != '`') ADVANCE(650); END_STATE(); - case 549: + case 612: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '#') ADVANCE(549); - if (lookahead == '>') ADVANCE(586); + if (lookahead == '#') ADVANCE(612); + if (lookahead == '>') ADVANCE(650); if (('"' <= lookahead && lookahead <= '$') || - lookahead == '`') ADVANCE(117); - if (lookahead != 0) ADVANCE(550); + lookahead == '`') ADVANCE(171); + if (lookahead != 0) ADVANCE(613); END_STATE(); - case 550: + case 613: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '#') ADVANCE(549); - if (lookahead == '`') ADVANCE(444); - if (('"' <= lookahead && lookahead <= '$')) ADVANCE(117); - if (lookahead != 0) ADVANCE(550); + if (lookahead == '#') ADVANCE(612); + if (lookahead == '`') ADVANCE(103); + if (('"' <= lookahead && lookahead <= '$')) ADVANCE(171); + if (lookahead != 0) ADVANCE(613); END_STATE(); - case 551: + case 614: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); - if (lookahead == '?') ADVANCE(586); + if (lookahead == ':') ADVANCE(647); + if (lookahead == '?') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(585); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(649); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 552: + case 615: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(577); + lookahead == 'a') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 553: + case 616: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); + lookahead == 'a') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 554: + case 617: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(553); + lookahead == 'b') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 555: + case 618: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(553); + lookahead == 'c') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 556: + case 619: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(575); + lookahead == 'c') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 557: + case 620: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(582); + lookahead == 'e') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 558: + case 621: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(566); + lookahead == 'f') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 559: + case 622: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(582); + lookahead == 'g') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 560: + case 623: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(579); + lookahead == 'i') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 561: + case 624: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(567); + lookahead == 'i') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 562: + case 625: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); + lookahead == 'i') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 563: + case 626: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(558); + lookahead == 'k') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 564: + case 627: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(582); + lookahead == 'l') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 565: + case 628: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(568); + lookahead == 'l') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 566: + case 629: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(569); + lookahead == 'l') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 567: + case 630: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(559); + lookahead == 'n') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 568: + case 631: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(554); + lookahead == 'o') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 569: + case 632: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(580); + lookahead == 'o') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 570: + case 633: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(574); + lookahead == 'o') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 571: + case 634: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(555); + lookahead == 'o') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 572: + case 635: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(578); + lookahead == 'p') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 573: + case 636: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(560); + lookahead == 'r') ADVANCE(623); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 574: + case 637: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(563); + lookahead == 'r') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 575: + case 638: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(562); + lookahead == 'r') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 576: + case 639: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'S' || - lookahead == 's') ADVANCE(561); + lookahead == 's') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 577: + case 640: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'T' || - lookahead == 't') ADVANCE(557); + lookahead == 't') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 578: + case 641: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'T' || - lookahead == 't') ADVANCE(582); + lookahead == 't') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 579: + case 642: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(552); + lookahead == 'v') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 580: + case 643: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(582); + lookahead == 'w') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 581: + case 644: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(584); + if (lookahead == ':') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 582: + case 645: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == ':') ADVANCE(551); + if (lookahead == ':') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 583: + case 646: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); ADVANCE_MAP( - '?', 586, - 'G', 565, - 'g', 565, - 'L', 571, - 'l', 571, - 'P', 573, - 'p', 573, - 'S', 556, - 's', 556, - 'U', 576, - 'u', 576, - 'W', 570, - 'w', 570, + '?', 650, + 'G', 628, + 'g', 628, + 'L', 634, + 'l', 634, + 'P', 636, + 'p', 636, + 'S', 619, + 's', 619, + 'U', 639, + 'u', 639, + 'W', 633, + 'w', 633, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(581); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(644); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 584: + case 647: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); - if (lookahead == '?') ADVANCE(586); + if (lookahead == '?') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(585); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(649); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 585: + case 648: + ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(650); + if (lookahead == '"' || + lookahead == '$' || + lookahead == '`') ADVANCE(537); + if (lookahead != 0) ADVANCE(648); + END_STATE(); + case 649: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(585); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(649); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(586); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(650); END_STATE(); - case 586: + case 650: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token2); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(586); + lookahead != '`') ADVANCE(650); END_STATE(); - case 587: + case 651: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token3); END_STATE(); - case 588: + case 652: + ACCEPT_TOKEN(aux_sym_expandable_string_literal_token3); + if (lookahead == '\n') ADVANCE(651); + END_STATE(); + case 653: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token4); END_STATE(); - case 589: + case 654: + ACCEPT_TOKEN(aux_sym_expandable_string_literal_token4); + if (lookahead == '\n') ADVANCE(653); + END_STATE(); + case 655: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 590: + case 656: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 591: + case 657: ACCEPT_TOKEN(anon_sym_DOLLAR); ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '`', 445, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '`', 104, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '\\') ADVANCE(587); + lookahead == '\\') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 592: + case 658: ACCEPT_TOKEN(anon_sym_DOLLAR); ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 593: + case 659: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token5); END_STATE(); - case 594: + case 660: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token5); - if (lookahead == '"') ADVANCE(589); + if (lookahead == '"') ADVANCE(655); END_STATE(); - case 595: + case 661: ACCEPT_TOKEN(aux_sym_expandable_string_literal_token5); if (lookahead != 0 && - lookahead != '\n') ADVANCE(473); + lookahead != '\n' && + lookahead != '\r') ADVANCE(537); END_STATE(); - case 596: + case 662: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token1); END_STATE(); - case 597: + case 663: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == '#') ADVANCE(635); - if (lookahead == '<') ADVANCE(598); - if (lookahead == '@') ADVANCE(633); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(597); + ADVANCE_MAP( + '#', 701, + '<', 664, + '@', 699, + '\t', 663, + 0x0b, 663, + '\f', 663, + ' ', 663, + 0xa0, 663, + 0x200b, 663, + 0x2060, 663, + 0xfeff, 663, + ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '#' && lookahead != '$' && - lookahead != '`') ADVANCE(637); + lookahead != '`') ADVANCE(703); END_STATE(); - case 598: + case 664: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == '#') ADVANCE(600); + if (lookahead == '#') ADVANCE(666); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '#' && lookahead != '$' && - lookahead != '`') ADVANCE(637); + lookahead != '`') ADVANCE(703); END_STATE(); - case 599: + case 665: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == '#') ADVANCE(599); - if (lookahead == '>') ADVANCE(637); + if (lookahead == '#') ADVANCE(665); + if (lookahead == '>') ADVANCE(703); if (lookahead == '\n' || + lookahead == '\r' || lookahead == '$' || - lookahead == '`') ADVANCE(117); - if (lookahead != 0) ADVANCE(600); + lookahead == '`') ADVANCE(171); + if (lookahead != 0) ADVANCE(666); END_STATE(); - case 600: + case 666: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == '#') ADVANCE(599); - if (lookahead == '`') ADVANCE(444); + if (lookahead == '#') ADVANCE(665); + if (lookahead == '`') ADVANCE(103); if (lookahead == '\n' || - lookahead == '$') ADVANCE(117); - if (lookahead != 0) ADVANCE(600); + lookahead == '\r' || + lookahead == '$') ADVANCE(171); + if (lookahead != 0) ADVANCE(666); END_STATE(); - case 601: + case 667: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); - if (lookahead == '?') ADVANCE(637); + if (lookahead == ':') ADVANCE(700); + if (lookahead == '?') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(636); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 602: + case 668: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(627); + lookahead == 'a') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 603: + case 669: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(614); + lookahead == 'a') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 604: + case 670: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(603); + lookahead == 'b') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 605: + case 671: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(603); + lookahead == 'c') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 606: + case 672: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); + lookahead == 'c') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 607: + case 673: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(632); + lookahead == 'e') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 608: + case 674: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(616); + lookahead == 'f') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 609: + case 675: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(632); + lookahead == 'g') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 610: + case 676: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(629); + lookahead == 'i') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 611: + case 677: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(617); + lookahead == 'i') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 612: + case 678: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(622); + lookahead == 'i') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 613: + case 679: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(608); + lookahead == 'k') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 614: + case 680: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(632); + lookahead == 'l') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 615: + case 681: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(618); + lookahead == 'l') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 616: + case 682: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(619); + lookahead == 'l') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 617: + case 683: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(609); + lookahead == 'n') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 618: + case 684: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(604); + lookahead == 'o') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 619: + case 685: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(630); + lookahead == 'o') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 620: + case 686: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(624); + lookahead == 'o') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 621: + case 687: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(605); + lookahead == 'o') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 622: + case 688: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(628); + lookahead == 'p') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 623: + case 689: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(610); + lookahead == 'r') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 624: + case 690: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); + lookahead == 'r') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 625: + case 691: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(612); + lookahead == 'r') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 626: + case 692: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'S' || - lookahead == 's') ADVANCE(611); + lookahead == 's') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 627: + case 693: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'T' || - lookahead == 't') ADVANCE(607); + lookahead == 't') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 628: + case 694: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'T' || - lookahead == 't') ADVANCE(632); + lookahead == 't') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 629: + case 695: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(602); + lookahead == 'v') ADVANCE(668); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 630: + case 696: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(632); + lookahead == 'w') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 631: + case 697: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(634); + if (lookahead == ':') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 632: + case 698: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == ':') ADVANCE(601); + if (lookahead == ':') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 633: + case 699: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); ADVANCE_MAP( - '?', 637, - 'G', 615, - 'g', 615, - 'L', 621, - 'l', 621, - 'P', 623, - 'p', 623, - 'S', 606, - 's', 606, - 'U', 626, - 'u', 626, - 'W', 620, - 'w', 620, + '?', 703, + 'G', 681, + 'g', 681, + 'L', 687, + 'l', 687, + 'P', 689, + 'p', 689, + 'S', 672, + 's', 672, + 'U', 692, + 'u', 692, + 'W', 686, + 'w', 686, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(631); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(697); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 634: + case 700: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); - if (lookahead == '?') ADVANCE(637); + if (lookahead == '?') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(636); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 635: + case 701: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); if (lookahead == '$' || - lookahead == '`') ADVANCE(473); + lookahead == '`') ADVANCE(537); if (lookahead != 0 && - lookahead != '\n') ADVANCE(635); + lookahead != '\n' && + lookahead != '\r') ADVANCE(701); END_STATE(); - case 636: + case 702: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(636); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(702); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(637); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(703); END_STATE(); - case 637: + case 703: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token2); if (lookahead != 0 && lookahead != '\n' && + lookahead != '\r' && lookahead != '$' && - lookahead != '`') ADVANCE(637); + lookahead != '`') ADVANCE(703); END_STATE(); - case 638: + case 704: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token3); END_STATE(); - case 639: + case 705: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token3); - if (lookahead == '#') ADVANCE(117); + if (lookahead == '#') ADVANCE(171); END_STATE(); - case 640: + case 706: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token3); ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 641: + case 707: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token3); ADVANCE_MAP( - '?', 1018, - 'G', 1063, - 'g', 1063, - 'L', 1069, - 'l', 1069, - 'P', 1071, - 'p', 1071, - 'S', 1054, - 's', 1054, - 'U', 1074, - 'u', 1074, - 'W', 1068, - 'w', 1068, + '?', 1079, + 'G', 1124, + 'g', 1124, + 'L', 1130, + 'l', 1130, + 'P', 1132, + 'p', 1132, + 'S', 1115, + 's', 1115, + 'U', 1135, + 'u', 1135, + 'W', 1129, + 'w', 1129, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 642: + case 708: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token3); if (lookahead != 0 && - lookahead != '\n') ADVANCE(473); + lookahead != '\n' && + lookahead != '\r') ADVANCE(537); END_STATE(); - case 643: + case 709: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token4); END_STATE(); - case 644: + case 710: ACCEPT_TOKEN(aux_sym_expandable_here_string_literal_token5); END_STATE(); - case 645: + case 711: ACCEPT_TOKEN(sym_verbatim_string_characters); - if (lookahead == '\'') ADVANCE(124); + if (lookahead == '\'') ADVANCE(178); END_STATE(); - case 646: + case 712: ACCEPT_TOKEN(sym_verbatim_string_characters); - if (lookahead == '\'') ADVANCE(1162); + if (lookahead == '\'') ADVANCE(1224); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -11925,1170 +12549,1081 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 647: + case 713: ACCEPT_TOKEN(sym_verbatim_string_characters); - if (lookahead == '\'') ADVANCE(1222); + if (lookahead == '\'') ADVANCE(1280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 648: + case 714: ACCEPT_TOKEN(sym_verbatim_here_string_characters); END_STATE(); - case 649: + case 715: ACCEPT_TOKEN(sym_verbatim_here_string_characters); - if (lookahead == '\n') ADVANCE(48); - if (lookahead != 0) ADVANCE(7); + if (lookahead == '\n') ADVANCE(85); + if (lookahead == '\r') ADVANCE(10); + if (lookahead != 0) ADVANCE(12); END_STATE(); - case 650: + case 716: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(752); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(655); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(732); + lookahead == 'a') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 651: + case 717: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(737); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1502); + lookahead == 'a') ADVANCE(811); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(722); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(791); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 652: + case 718: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1505); + lookahead == 'a') ADVANCE(730); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 653: + case 719: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(719); + lookahead == 'a') ADVANCE(795); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 654: + case 720: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(757); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1489); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(729); + lookahead == 'a') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 655: + case 721: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(750); + lookahead == 'a') ADVANCE(815); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(825); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(788); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 656: + case 722: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(745); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(735); + lookahead == 'a') ADVANCE(808); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 657: + case 723: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(722); + lookahead == 'a') ADVANCE(802); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(793); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 658: + case 724: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(715); + lookahead == 'a') ADVANCE(783); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 659: + case 725: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(709); + lookahead == 'a') ADVANCE(776); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 660: + case 726: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(721); + lookahead == 'a') ADVANCE(770); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 661: + case 727: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(746); + lookahead == 'a') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 662: + case 728: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(668); + lookahead == 'a') ADVANCE(803); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 663: + case 729: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(760); + lookahead == 'a') ADVANCE(818); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 664: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 665: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1764); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 666: + case 730: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(738); + lookahead == 'c') ADVANCE(755); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 667: + case 731: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(693); + lookahead == 'c') ADVANCE(1751); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 668: + case 732: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(694); + lookahead == 'c') ADVANCE(796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 669: + case 733: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(687); + lookahead == 'c') ADVANCE(750); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 670: + case 734: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(680); + lookahead == 'c') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 671: + case 735: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(761); + lookahead == 'c') ADVANCE(819); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 672: + case 736: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1463); + lookahead == 'd') ADVANCE(825); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(720); + lookahead == 'u') ADVANCE(782); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 673: + case 737: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(674); + lookahead == 'd') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 674: + case 738: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(683); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 675: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(682); + lookahead == 'd') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 676: + case 739: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(739); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(663); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(707); + lookahead == 'e') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 677: + case 740: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1471); + lookahead == 'e') ADVANCE(754); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(743); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 678: + case 741: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1488); + lookahead == 'e') ADVANCE(797); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(729); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(758); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 679: + case 742: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1495); + lookahead == 'e') ADVANCE(812); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 680: + case 743: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); + lookahead == 'e') ADVANCE(726); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 681: + case 744: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(753); + lookahead == 'e') ADVANCE(772); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 682: + case 745: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(659); + lookahead == 'e') ADVANCE(785); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 683: + case 746: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); + lookahead == 'e') ADVANCE(798); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 684: + case 747: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(742); + lookahead == 'e') ADVANCE(790); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 685: + case 748: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(713); + lookahead == 'e') ADVANCE(762); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 686: + case 749: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(731); + lookahead == 'e') ADVANCE(718); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 687: + case 750: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(751); + lookahead == 'e') ADVANCE(809); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 688: + case 751: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1467); + lookahead == 'f') ADVANCE(825); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1482); + lookahead == 'n') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 689: + case 752: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1468); + lookahead == 'f') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 690: + case 753: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(714); + lookahead == 'f') ADVANCE(775); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 691: + case 754: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 692: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1503); + lookahead == 'g') ADVANCE(765); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 693: + case 755: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1473); + lookahead == 'h') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 694: + case 756: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1480); + lookahead == 'h') ADVANCE(800); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 695: + case 757: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(743); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(651); + lookahead == 'h') ADVANCE(761); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(799); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 696: + case 758: ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(699); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(741); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 697: + case 759: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(716); + lookahead == 'i') ADVANCE(777); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(740); + lookahead == 'o') ADVANCE(804); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(727); + lookahead == 'u') ADVANCE(786); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 698: + case 760: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(673); + lookahead == 'i') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 699: + case 761: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(717); + lookahead == 'i') ADVANCE(778); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 700: + case 762: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(736); + lookahead == 'i') ADVANCE(752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 701: + case 763: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(711); + lookahead == 'i') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 702: + case 764: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(723); + lookahead == 'i') ADVANCE(772); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 703: + case 765: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(665); + lookahead == 'i') ADVANCE(784); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 704: + case 766: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(730); + lookahead == 'i') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 705: + case 767: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(754); + lookahead == 'i') ADVANCE(789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 706: + case 768: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(666); + lookahead == 'i') ADVANCE(810); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 707: + case 769: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(762); + lookahead == 'i') ADVANCE(732); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 708: + case 770: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(690); + lookahead == 'k') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 709: + case 771: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 710: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(749); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(672); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(705); + lookahead == 'k') ADVANCE(753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 711: + case 772: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1490); + lookahead == 'l') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 712: + case 773: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(768); + lookahead == 'l') ADVANCE(807); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(736); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 713: + case 774: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1508); + lookahead == 'l') ADVANCE(824); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 714: + case 775: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(734); + lookahead == 'l') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 715: + case 776: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(712); + lookahead == 'l') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 716: + case 777: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(756); + lookahead == 'l') ADVANCE(814); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(658); + lookahead == 'n') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 717: + case 778: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(678); + lookahead == 'l') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 718: + case 779: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(685); + lookahead == 'l') ADVANCE(744); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 719: + case 780: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(718); + lookahead == 'l') ADVANCE(779); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1454); + lookahead == 'm') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 720: + case 781: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1766); + lookahead == 'm') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 721: + case 782: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1460); + lookahead == 'm') ADVANCE(1753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 722: + case 783: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(706); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 723: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1461); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 724: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1763); + lookahead == 'm') ADVANCE(769); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 725: + case 784: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1497); + lookahead == 'n') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 726: + case 785: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1491); + lookahead == 'n') ADVANCE(1750); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 727: + case 786: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(671); + lookahead == 'n') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 728: + case 787: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(758); + lookahead == 'n') ADVANCE(816); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 729: + case 788: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(657); + lookahead == 'n') ADVANCE(724); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 730: + case 789: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(764); + lookahead == 'n') ADVANCE(821); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 731: + case 790: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(670); + lookahead == 'n') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 732: + case 791: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(759); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 733: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(766); + lookahead == 'n') ADVANCE(817); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 734: + case 792: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(767); + lookahead == 'o') ADVANCE(823); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 735: + case 793: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(669); + lookahead == 'o') ADVANCE(733); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 736: + case 794: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(726); + lookahead == 'o') ADVANCE(784); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 737: + case 795: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1501); + lookahead == 'p') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 738: + case 796: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(661); + lookahead == 'p') ADVANCE(728); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 739: + case 797: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(765); + lookahead == 'q') ADVANCE(822); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 740: + case 798: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1485); + lookahead == 'r') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 741: + case 799: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(708); + lookahead == 'r') ADVANCE(771); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 742: + case 800: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1492); + lookahead == 'r') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 743: + case 801: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(733); + lookahead == 'r') ADVANCE(784); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 744: + case 802: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(725); + lookahead == 'r') ADVANCE(720); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 745: + case 803: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(653); + lookahead == 'r') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 746: + case 804: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(660); + lookahead == 'r') ADVANCE(749); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 747: + case 805: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1765); + lookahead == 's') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 748: + case 806: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1462); + lookahead == 's') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 749: + case 807: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(677); + lookahead == 's') ADVANCE(748); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 750: + case 808: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(747); + lookahead == 's') ADVANCE(806); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 751: + case 809: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 752: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(664); + lookahead == 's') ADVANCE(805); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 753: + case 810: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(763); + lookahead == 't') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 754: + case 811: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1498); + lookahead == 't') ADVANCE(730); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 755: + case 812: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(663); + lookahead == 't') ADVANCE(820); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 756: + case 813: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(684); + lookahead == 't') ADVANCE(729); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 757: + case 814: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(652); + lookahead == 't') ADVANCE(746); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 758: + case 815: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(701); + lookahead == 't') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 759: + case 816: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(704); + lookahead == 't') ADVANCE(764); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 760: + case 817: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(703); + lookahead == 't') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 761: + case 818: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(700); + lookahead == 't') ADVANCE(766); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 762: + case 819: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(667); + lookahead == 't') ADVANCE(763); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 763: + case 820: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(744); + lookahead == 'u') ADVANCE(801); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 764: + case 821: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(679); + lookahead == 'u') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 765: + case 822: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(686); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); - END_STATE(); - case 766: - ACCEPT_TOKEN(sym_simple_name); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1496); + lookahead == 'u') ADVANCE(747); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 767: + case 823: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1493); + lookahead == 'w') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 768: + case 824: ACCEPT_TOKEN(sym_simple_name); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1504); + lookahead == 'y') ADVANCE(825); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 769: + case 825: ACCEPT_TOKEN(sym_simple_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(769); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(825); END_STATE(); - case 770: + case 826: ACCEPT_TOKEN(sym_type_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(770); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(826); END_STATE(); - case 771: + case 827: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 772: + case 828: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 773: + case 829: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(528); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(592); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 774: + case 830: ACCEPT_TOKEN(anon_sym_DOT); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 775: + case 831: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 776: + case 832: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13098,9 +13633,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 777: + case 833: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13109,33 +13644,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 778: + case 834: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 779: + case 835: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 780: + case 836: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 781: + case 837: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 782: + case 838: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 783: + case 839: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 784: + case 840: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 841: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(787); + if (lookahead == '>') ADVANCE(844); END_STATE(); - case 785: + case 842: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(789); + if (lookahead == '>') ADVANCE(846); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13144,11 +13682,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 786: + case 843: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '>') ADVANCE(788); + if (lookahead == '>') ADVANCE(845); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13156,12 +13694,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 787: + case 844: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 788: + case 845: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13170,9 +13708,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 789: + case 846: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13182,17 +13720,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 790: + case 847: ACCEPT_TOKEN(anon_sym_2_GT); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '>') ADVANCE(793); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '>') ADVANCE(850); END_STATE(); - case 791: + case 848: ACCEPT_TOKEN(anon_sym_2_GT); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '>') ADVANCE(794); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '>') ADVANCE(851); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13200,12 +13738,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 792: + case 849: ACCEPT_TOKEN(anon_sym_2_GT); - if (lookahead == '&') ADVANCE(1165); - if (lookahead == '>') ADVANCE(795); + if (lookahead == '&') ADVANCE(1227); + if (lookahead == '>') ADVANCE(852); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13214,12 +13752,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 793: + case 850: ACCEPT_TOKEN(anon_sym_2_GT_GT); END_STATE(); - case 794: + case 851: ACCEPT_TOKEN(anon_sym_2_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13228,9 +13766,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 795: + case 852: ACCEPT_TOKEN(anon_sym_2_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13240,17 +13778,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 796: + case 853: ACCEPT_TOKEN(anon_sym_3_GT); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '>') ADVANCE(799); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '>') ADVANCE(856); END_STATE(); - case 797: + case 854: ACCEPT_TOKEN(anon_sym_3_GT); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '>') ADVANCE(800); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '>') ADVANCE(857); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13258,12 +13796,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 798: + case 855: ACCEPT_TOKEN(anon_sym_3_GT); - if (lookahead == '&') ADVANCE(1166); - if (lookahead == '>') ADVANCE(801); + if (lookahead == '&') ADVANCE(1228); + if (lookahead == '>') ADVANCE(858); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13272,12 +13810,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 799: + case 856: ACCEPT_TOKEN(anon_sym_3_GT_GT); END_STATE(); - case 800: + case 857: ACCEPT_TOKEN(anon_sym_3_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13286,9 +13824,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 801: + case 858: ACCEPT_TOKEN(anon_sym_3_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13298,17 +13836,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 802: + case 859: ACCEPT_TOKEN(anon_sym_4_GT); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '>') ADVANCE(805); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '>') ADVANCE(862); END_STATE(); - case 803: + case 860: ACCEPT_TOKEN(anon_sym_4_GT); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '>') ADVANCE(806); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '>') ADVANCE(863); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13316,12 +13854,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 804: + case 861: ACCEPT_TOKEN(anon_sym_4_GT); - if (lookahead == '&') ADVANCE(1167); - if (lookahead == '>') ADVANCE(807); + if (lookahead == '&') ADVANCE(1229); + if (lookahead == '>') ADVANCE(864); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13330,12 +13868,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 805: + case 862: ACCEPT_TOKEN(anon_sym_4_GT_GT); END_STATE(); - case 806: + case 863: ACCEPT_TOKEN(anon_sym_4_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13344,9 +13882,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 807: + case 864: ACCEPT_TOKEN(anon_sym_4_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13356,17 +13894,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 808: + case 865: ACCEPT_TOKEN(anon_sym_5_GT); - if (lookahead == '&') ADVANCE(137); - if (lookahead == '>') ADVANCE(811); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '>') ADVANCE(868); END_STATE(); - case 809: + case 866: ACCEPT_TOKEN(anon_sym_5_GT); - if (lookahead == '&') ADVANCE(137); - if (lookahead == '>') ADVANCE(812); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '>') ADVANCE(869); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13374,12 +13912,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 810: + case 867: ACCEPT_TOKEN(anon_sym_5_GT); - if (lookahead == '&') ADVANCE(1168); - if (lookahead == '>') ADVANCE(813); + if (lookahead == '&') ADVANCE(1230); + if (lookahead == '>') ADVANCE(870); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13388,12 +13926,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 811: + case 868: ACCEPT_TOKEN(anon_sym_5_GT_GT); END_STATE(); - case 812: + case 869: ACCEPT_TOKEN(anon_sym_5_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13402,9 +13940,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 813: + case 870: ACCEPT_TOKEN(anon_sym_5_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13414,17 +13952,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 814: + case 871: ACCEPT_TOKEN(anon_sym_6_GT); - if (lookahead == '&') ADVANCE(138); - if (lookahead == '>') ADVANCE(817); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '>') ADVANCE(874); END_STATE(); - case 815: + case 872: ACCEPT_TOKEN(anon_sym_6_GT); - if (lookahead == '&') ADVANCE(138); - if (lookahead == '>') ADVANCE(818); + if (lookahead == '&') ADVANCE(192); + if (lookahead == '>') ADVANCE(875); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13432,12 +13970,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 816: + case 873: ACCEPT_TOKEN(anon_sym_6_GT); - if (lookahead == '&') ADVANCE(1169); - if (lookahead == '>') ADVANCE(819); + if (lookahead == '&') ADVANCE(1231); + if (lookahead == '>') ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13446,12 +13984,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 817: + case 874: ACCEPT_TOKEN(anon_sym_6_GT_GT); END_STATE(); - case 818: + case 875: ACCEPT_TOKEN(anon_sym_6_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13460,9 +13998,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 819: + case 876: ACCEPT_TOKEN(anon_sym_6_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13472,17 +14010,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 820: + case 877: ACCEPT_TOKEN(anon_sym_STAR_GT); - if (lookahead == '&') ADVANCE(133); - if (lookahead == '>') ADVANCE(823); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '>') ADVANCE(880); END_STATE(); - case 821: + case 878: ACCEPT_TOKEN(anon_sym_STAR_GT); - if (lookahead == '&') ADVANCE(133); - if (lookahead == '>') ADVANCE(824); + if (lookahead == '&') ADVANCE(187); + if (lookahead == '>') ADVANCE(881); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -13490,12 +14028,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 822: + case 879: ACCEPT_TOKEN(anon_sym_STAR_GT); - if (lookahead == '&') ADVANCE(1164); - if (lookahead == '>') ADVANCE(825); + if (lookahead == '&') ADVANCE(1226); + if (lookahead == '>') ADVANCE(882); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13504,12 +14042,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 823: + case 880: ACCEPT_TOKEN(anon_sym_STAR_GT_GT); END_STATE(); - case 824: + case 881: ACCEPT_TOKEN(anon_sym_STAR_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13518,9 +14056,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 825: + case 882: ACCEPT_TOKEN(anon_sym_STAR_GT_GT); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13530,15 +14068,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 826: + case 883: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '#') ADVANCE(117); + if (lookahead == '#') ADVANCE(171); END_STATE(); - case 827: + case 884: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '#') ADVANCE(1159); + if (lookahead == '#') ADVANCE(1221); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13547,11 +14085,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 828: + case 885: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '#') ADVANCE(1701); + if (lookahead == '#') ADVANCE(1691); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -13560,12 +14098,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 829: + case 886: ACCEPT_TOKEN(anon_sym_STAR_GT_AMP1); END_STATE(); - case 830: + case 887: ACCEPT_TOKEN(anon_sym_STAR_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13575,12 +14113,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 831: + case 888: ACCEPT_TOKEN(anon_sym_2_GT_AMP1); END_STATE(); - case 832: + case 889: ACCEPT_TOKEN(anon_sym_2_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13590,12 +14128,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 833: + case 890: ACCEPT_TOKEN(anon_sym_3_GT_AMP1); END_STATE(); - case 834: + case 891: ACCEPT_TOKEN(anon_sym_3_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13605,12 +14143,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 835: + case 892: ACCEPT_TOKEN(anon_sym_4_GT_AMP1); END_STATE(); - case 836: + case 893: ACCEPT_TOKEN(anon_sym_4_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13620,12 +14158,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 837: + case 894: ACCEPT_TOKEN(anon_sym_5_GT_AMP1); END_STATE(); - case 838: + case 895: ACCEPT_TOKEN(anon_sym_5_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13635,12 +14173,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 839: + case 896: ACCEPT_TOKEN(anon_sym_6_GT_AMP1); END_STATE(); - case 840: + case 897: ACCEPT_TOKEN(anon_sym_6_GT_AMP1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13650,12 +14188,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 841: + case 898: ACCEPT_TOKEN(anon_sym_STAR_GT_AMP2); END_STATE(); - case 842: + case 899: ACCEPT_TOKEN(anon_sym_STAR_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13665,12 +14203,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 843: + case 900: ACCEPT_TOKEN(anon_sym_1_GT_AMP2); END_STATE(); - case 844: + case 901: ACCEPT_TOKEN(anon_sym_1_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13680,12 +14218,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 845: + case 902: ACCEPT_TOKEN(anon_sym_3_GT_AMP2); END_STATE(); - case 846: + case 903: ACCEPT_TOKEN(anon_sym_3_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13695,12 +14233,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 847: + case 904: ACCEPT_TOKEN(anon_sym_4_GT_AMP2); END_STATE(); - case 848: + case 905: ACCEPT_TOKEN(anon_sym_4_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13710,12 +14248,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 849: + case 906: ACCEPT_TOKEN(anon_sym_5_GT_AMP2); END_STATE(); - case 850: + case 907: ACCEPT_TOKEN(anon_sym_5_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13725,12 +14263,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 851: + case 908: ACCEPT_TOKEN(anon_sym_6_GT_AMP2); END_STATE(); - case 852: + case 909: ACCEPT_TOKEN(anon_sym_6_GT_AMP2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13740,192 +14278,250 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 853: + case 910: ACCEPT_TOKEN(aux_sym_comparison_operator_token1); END_STATE(); - case 854: + case 911: ACCEPT_TOKEN(aux_sym_comparison_operator_token2); END_STATE(); - case 855: + case 912: ACCEPT_TOKEN(aux_sym_comparison_operator_token3); END_STATE(); - case 856: + case 913: ACCEPT_TOKEN(aux_sym_comparison_operator_token4); END_STATE(); - case 857: + case 914: ACCEPT_TOKEN(aux_sym_comparison_operator_token5); END_STATE(); - case 858: + case 915: ACCEPT_TOKEN(aux_sym_comparison_operator_token6); END_STATE(); - case 859: + case 916: ACCEPT_TOKEN(aux_sym_comparison_operator_token7); END_STATE(); - case 860: + case 917: ACCEPT_TOKEN(aux_sym_comparison_operator_token8); END_STATE(); - case 861: + case 918: ACCEPT_TOKEN(aux_sym_comparison_operator_token9); END_STATE(); - case 862: + case 919: ACCEPT_TOKEN(aux_sym_comparison_operator_token10); END_STATE(); - case 863: + case 920: ACCEPT_TOKEN(aux_sym_comparison_operator_token11); END_STATE(); - case 864: + case 921: ACCEPT_TOKEN(aux_sym_comparison_operator_token12); END_STATE(); - case 865: + case 922: ACCEPT_TOKEN(aux_sym_comparison_operator_token13); END_STATE(); - case 866: + case 923: ACCEPT_TOKEN(aux_sym_comparison_operator_token14); END_STATE(); - case 867: + case 924: ACCEPT_TOKEN(aux_sym_comparison_operator_token15); END_STATE(); - case 868: + case 925: ACCEPT_TOKEN(aux_sym_comparison_operator_token16); END_STATE(); - case 869: + case 926: ACCEPT_TOKEN(aux_sym_comparison_operator_token17); END_STATE(); - case 870: + case 927: ACCEPT_TOKEN(aux_sym_comparison_operator_token18); END_STATE(); - case 871: + case 928: ACCEPT_TOKEN(aux_sym_comparison_operator_token19); END_STATE(); - case 872: + case 929: ACCEPT_TOKEN(aux_sym_comparison_operator_token20); END_STATE(); - case 873: + case 930: ACCEPT_TOKEN(aux_sym_comparison_operator_token21); END_STATE(); - case 874: + case 931: ACCEPT_TOKEN(aux_sym_comparison_operator_token22); END_STATE(); - case 875: + case 932: ACCEPT_TOKEN(aux_sym_comparison_operator_token23); END_STATE(); - case 876: + case 933: ACCEPT_TOKEN(aux_sym_comparison_operator_token24); END_STATE(); - case 877: + case 934: ACCEPT_TOKEN(aux_sym_comparison_operator_token25); END_STATE(); - case 878: + case 935: ACCEPT_TOKEN(aux_sym_comparison_operator_token26); END_STATE(); - case 879: + case 936: ACCEPT_TOKEN(aux_sym_comparison_operator_token27); END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym_comparison_operator_token28); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(882); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1437); - END_STATE(); - case 881: + case 937: ACCEPT_TOKEN(aux_sym_comparison_operator_token28); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(882); + lookahead == 'e') ADVANCE(938); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(433); + lookahead == 'o') ADVANCE(492); END_STATE(); - case 882: + case 938: ACCEPT_TOKEN(aux_sym_comparison_operator_token29); END_STATE(); - case 883: + case 939: ACCEPT_TOKEN(aux_sym_comparison_operator_token30); END_STATE(); - case 884: + case 940: ACCEPT_TOKEN(aux_sym_comparison_operator_token31); END_STATE(); - case 885: + case 941: ACCEPT_TOKEN(aux_sym_comparison_operator_token32); END_STATE(); - case 886: + case 942: ACCEPT_TOKEN(aux_sym_comparison_operator_token33); END_STATE(); - case 887: - ACCEPT_TOKEN(aux_sym_comparison_operator_token34); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(365); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(322); - END_STATE(); - case 888: + case 943: ACCEPT_TOKEN(aux_sym_comparison_operator_token34); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1382); + lookahead == 'n') ADVANCE(420); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1352); + lookahead == 'p') ADVANCE(380); END_STATE(); - case 889: + case 944: ACCEPT_TOKEN(aux_sym_comparison_operator_token35); END_STATE(); - case 890: + case 945: ACCEPT_TOKEN(aux_sym_comparison_operator_token36); END_STATE(); - case 891: + case 946: ACCEPT_TOKEN(aux_sym_comparison_operator_token37); END_STATE(); - case 892: + case 947: + ACCEPT_TOKEN(aux_sym_comparison_operator_token37); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); + END_STATE(); + case 948: + ACCEPT_TOKEN(aux_sym_comparison_operator_token37); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != '-' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); + END_STATE(); + case 949: + ACCEPT_TOKEN(aux_sym_comparison_operator_token37); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); + END_STATE(); + case 950: ACCEPT_TOKEN(aux_sym_comparison_operator_token38); END_STATE(); - case 893: + case 951: ACCEPT_TOKEN(aux_sym_comparison_operator_token39); END_STATE(); - case 894: + case 952: ACCEPT_TOKEN(aux_sym_comparison_operator_token40); END_STATE(); - case 895: + case 953: ACCEPT_TOKEN(aux_sym_comparison_operator_token41); END_STATE(); - case 896: + case 954: ACCEPT_TOKEN(aux_sym_comparison_operator_token42); END_STATE(); - case 897: + case 955: ACCEPT_TOKEN(aux_sym_comparison_operator_token43); END_STATE(); - case 898: + case 956: ACCEPT_TOKEN(aux_sym_comparison_operator_token44); END_STATE(); - case 899: + case 957: ACCEPT_TOKEN(aux_sym_comparison_operator_token45); END_STATE(); - case 900: + case 958: ACCEPT_TOKEN(aux_sym_comparison_operator_token46); END_STATE(); - case 901: + case 959: ACCEPT_TOKEN(aux_sym_comparison_operator_token47); END_STATE(); - case 902: + case 960: ACCEPT_TOKEN(aux_sym_comparison_operator_token48); END_STATE(); - case 903: + case 961: ACCEPT_TOKEN(aux_sym_comparison_operator_token49); END_STATE(); - case 904: + case 962: ACCEPT_TOKEN(aux_sym_comparison_operator_token50); END_STATE(); - case 905: + case 963: + ACCEPT_TOKEN(aux_sym_comparison_operator_token50); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); + END_STATE(); + case 964: + ACCEPT_TOKEN(aux_sym_comparison_operator_token50); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != '-' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); + END_STATE(); + case 965: + ACCEPT_TOKEN(aux_sym_comparison_operator_token50); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); + END_STATE(); + case 966: ACCEPT_TOKEN(aux_sym_format_operator_token1); END_STATE(); - case 906: + case 967: ACCEPT_TOKEN(aux_sym_format_operator_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1347); + lookahead == 'i') ADVANCE(372); END_STATE(); - case 907: + case 968: ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); END_STATE(); - case 908: + case 969: ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13935,9 +14531,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 909: + case 970: ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13946,12 +14542,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 910: + case 971: ACCEPT_TOKEN(anon_sym_DOLLAR_CARET); END_STATE(); - case 911: + case 972: ACCEPT_TOKEN(anon_sym_DOLLAR_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13961,9 +14557,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 912: + case 973: ACCEPT_TOKEN(anon_sym_DOLLAR_CARET); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13972,12 +14568,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 913: + case 974: ACCEPT_TOKEN(anon_sym_DOLLAR_QMARK); END_STATE(); - case 914: + case 975: ACCEPT_TOKEN(anon_sym_DOLLAR_QMARK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13987,9 +14583,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 915: + case 976: ACCEPT_TOKEN(anon_sym_DOLLAR_QMARK); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13998,23 +14594,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 916: + case 977: ACCEPT_TOKEN(anon_sym_DOLLAR_); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 917: + case 978: ACCEPT_TOKEN(anon_sym_DOLLAR_); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14023,15 +14619,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 918: + case 979: ACCEPT_TOKEN(anon_sym_DOLLAR_); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14039,326 +14635,326 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 919: + case 980: ACCEPT_TOKEN(aux_sym_variable_token1); END_STATE(); - case 920: + case 981: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(945); + lookahead == 'a') ADVANCE(1006); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 921: + case 982: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(932); + lookahead == 'a') ADVANCE(993); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 922: + case 983: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(921); + lookahead == 'b') ADVANCE(982); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 923: + case 984: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(921); + lookahead == 'c') ADVANCE(982); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 924: + case 985: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(943); + lookahead == 'c') ADVANCE(1004); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 925: + case 986: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(950); + lookahead == 'e') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 926: + case 987: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(934); + lookahead == 'f') ADVANCE(995); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 927: + case 988: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(950); + lookahead == 'g') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 928: + case 989: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(947); + lookahead == 'i') ADVANCE(1008); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 929: + case 990: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(935); + lookahead == 'i') ADVANCE(996); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 930: + case 991: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(940); + lookahead == 'i') ADVANCE(1001); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 931: + case 992: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(926); + lookahead == 'k') ADVANCE(987); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 932: + case 993: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(950); + lookahead == 'l') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 933: + case 994: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(936); + lookahead == 'l') ADVANCE(997); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 934: + case 995: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(937); + lookahead == 'l') ADVANCE(998); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 935: + case 996: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(927); + lookahead == 'n') ADVANCE(988); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 936: + case 997: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(922); + lookahead == 'o') ADVANCE(983); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 937: + case 998: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(948); + lookahead == 'o') ADVANCE(1009); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 938: + case 999: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(942); + lookahead == 'o') ADVANCE(1003); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 939: + case 1000: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(923); + lookahead == 'o') ADVANCE(984); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 940: + case 1001: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(946); + lookahead == 'p') ADVANCE(1007); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 941: + case 1002: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(928); + lookahead == 'r') ADVANCE(989); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 942: + case 1003: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(931); + lookahead == 'r') ADVANCE(992); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 943: + case 1004: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(930); + lookahead == 'r') ADVANCE(991); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 944: + case 1005: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'S' || - lookahead == 's') ADVANCE(929); + lookahead == 's') ADVANCE(990); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 945: + case 1006: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'T' || - lookahead == 't') ADVANCE(925); + lookahead == 't') ADVANCE(986); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 946: + case 1007: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'T' || - lookahead == 't') ADVANCE(950); + lookahead == 't') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 947: + case 1008: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(920); + lookahead == 'v') ADVANCE(981); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 948: + case 1009: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(950); + lookahead == 'w') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 949: + case 1010: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(154); + if (lookahead == ':') ADVANCE(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 950: + case 1011: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(142); + if (lookahead == ':') ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 951: + case 1012: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(976); + lookahead == 'a') ADVANCE(1037); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14367,17 +14963,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 952: + case 1013: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(963); + lookahead == 'a') ADVANCE(1024); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14386,17 +14982,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 953: + case 1014: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(952); + lookahead == 'b') ADVANCE(1013); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14405,17 +15001,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 954: + case 1015: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(952); + lookahead == 'c') ADVANCE(1013); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14424,17 +15020,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 955: + case 1016: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(974); + lookahead == 'c') ADVANCE(1035); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14443,17 +15039,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 956: + case 1017: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(981); + lookahead == 'e') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14462,17 +15058,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 957: + case 1018: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(965); + lookahead == 'f') ADVANCE(1026); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14481,17 +15077,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 958: + case 1019: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(981); + lookahead == 'g') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14500,17 +15096,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 959: + case 1020: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(978); + lookahead == 'i') ADVANCE(1039); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14519,17 +15115,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 960: + case 1021: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(966); + lookahead == 'i') ADVANCE(1027); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14538,17 +15134,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 961: + case 1022: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(971); + lookahead == 'i') ADVANCE(1032); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14557,17 +15153,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 962: + case 1023: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(957); + lookahead == 'k') ADVANCE(1018); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14576,17 +15172,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 963: + case 1024: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(981); + lookahead == 'l') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14595,17 +15191,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 964: + case 1025: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(967); + lookahead == 'l') ADVANCE(1028); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14614,17 +15210,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 965: + case 1026: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(968); + lookahead == 'l') ADVANCE(1029); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14633,17 +15229,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 966: + case 1027: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(958); + lookahead == 'n') ADVANCE(1019); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14652,17 +15248,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 967: + case 1028: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(953); + lookahead == 'o') ADVANCE(1014); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14671,17 +15267,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 968: + case 1029: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(979); + lookahead == 'o') ADVANCE(1040); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14690,17 +15286,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 969: + case 1030: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(973); + lookahead == 'o') ADVANCE(1034); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14709,17 +15305,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 970: + case 1031: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(954); + lookahead == 'o') ADVANCE(1015); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14728,17 +15324,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 971: + case 1032: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(977); + lookahead == 'p') ADVANCE(1038); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14747,17 +15343,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 972: + case 1033: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(959); + lookahead == 'r') ADVANCE(1020); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14766,17 +15362,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 973: + case 1034: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(962); + lookahead == 'r') ADVANCE(1023); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14785,17 +15381,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 974: + case 1035: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(961); + lookahead == 'r') ADVANCE(1022); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14804,17 +15400,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 975: + case 1036: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'S' || - lookahead == 's') ADVANCE(960); + lookahead == 's') ADVANCE(1021); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14823,17 +15419,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 976: + case 1037: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'T' || - lookahead == 't') ADVANCE(956); + lookahead == 't') ADVANCE(1017); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14842,17 +15438,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 977: + case 1038: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'T' || - lookahead == 't') ADVANCE(981); + lookahead == 't') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14861,17 +15457,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 978: + case 1039: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(951); + lookahead == 'v') ADVANCE(1012); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14880,17 +15476,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 979: + case 1040: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(981); + lookahead == 'w') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14899,15 +15495,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 980: + case 1041: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1175); + if (lookahead == ':') ADVANCE(1237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14916,15 +15512,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 981: + case 1042: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1171); + if (lookahead == ':') ADVANCE(1233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14933,17 +15529,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 982: + case 1043: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1007); + lookahead == 'a') ADVANCE(1068); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14951,17 +15547,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 983: + case 1044: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(994); + lookahead == 'a') ADVANCE(1055); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14969,17 +15565,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 984: + case 1045: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(983); + lookahead == 'b') ADVANCE(1044); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -14987,17 +15583,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 985: + case 1046: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(983); + lookahead == 'c') ADVANCE(1044); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15005,17 +15601,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 986: + case 1047: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1005); + lookahead == 'c') ADVANCE(1066); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15023,17 +15619,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 987: + case 1048: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1012); + lookahead == 'e') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15041,17 +15637,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 988: + case 1049: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(996); + lookahead == 'f') ADVANCE(1057); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15059,17 +15655,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 989: + case 1050: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1012); + lookahead == 'g') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15077,17 +15673,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 990: + case 1051: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1009); + lookahead == 'i') ADVANCE(1070); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15095,17 +15691,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 991: + case 1052: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(997); + lookahead == 'i') ADVANCE(1058); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15113,17 +15709,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 992: + case 1053: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1002); + lookahead == 'i') ADVANCE(1063); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15131,17 +15727,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 993: + case 1054: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(988); + lookahead == 'k') ADVANCE(1049); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15149,17 +15745,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 994: + case 1055: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1012); + lookahead == 'l') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15167,17 +15763,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 995: + case 1056: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(998); + lookahead == 'l') ADVANCE(1059); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15185,17 +15781,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 996: + case 1057: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(999); + lookahead == 'l') ADVANCE(1060); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15203,17 +15799,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 997: + case 1058: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + lookahead == 'n') ADVANCE(1050); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15221,17 +15817,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 998: + case 1059: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(984); + lookahead == 'o') ADVANCE(1045); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15239,17 +15835,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 999: + case 1060: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1010); + lookahead == 'o') ADVANCE(1071); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15257,17 +15853,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1000: + case 1061: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1004); + lookahead == 'o') ADVANCE(1065); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15275,17 +15871,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1001: + case 1062: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(985); + lookahead == 'o') ADVANCE(1046); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15293,17 +15889,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1002: + case 1063: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1008); + lookahead == 'p') ADVANCE(1069); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15311,17 +15907,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1003: + case 1064: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(990); + lookahead == 'r') ADVANCE(1051); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15329,17 +15925,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1004: + case 1065: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(993); + lookahead == 'r') ADVANCE(1054); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15347,17 +15943,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1005: + case 1066: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(992); + lookahead == 'r') ADVANCE(1053); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15365,17 +15961,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1006: + case 1067: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'S' || - lookahead == 's') ADVANCE(991); + lookahead == 's') ADVANCE(1052); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15383,17 +15979,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1007: + case 1068: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'T' || - lookahead == 't') ADVANCE(987); + lookahead == 't') ADVANCE(1048); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15401,17 +15997,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1008: + case 1069: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1012); + lookahead == 't') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15419,17 +16015,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1009: + case 1070: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(982); + lookahead == 'v') ADVANCE(1043); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15437,17 +16033,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1010: + case 1071: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1012); + lookahead == 'w') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15455,15 +16051,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1011: + case 1072: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1226); + if (lookahead == ':') ADVANCE(1284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15471,15 +16067,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1012: + case 1073: ACCEPT_TOKEN(aux_sym_variable_token1); - if (lookahead == ':') ADVANCE(1223); + if (lookahead == ':') ADVANCE(1281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15487,21 +16083,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1013: + case 1074: ACCEPT_TOKEN(aux_sym_variable_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1013); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1074); END_STATE(); - case 1014: + case 1075: ACCEPT_TOKEN(aux_sym_variable_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1014); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15510,14 +16106,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1015: + case 1076: ACCEPT_TOKEN(aux_sym_variable_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1015); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -15525,9 +16121,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1016: + case 1077: ACCEPT_TOKEN(aux_sym_variable_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -15537,9 +16133,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1017: + case 1078: ACCEPT_TOKEN(aux_sym_variable_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -15548,756 +16144,756 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1018: + case 1079: ACCEPT_TOKEN(aux_sym_variable_token2); END_STATE(); - case 1019: + case 1080: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1044); + lookahead == 'a') ADVANCE(1105); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1020: + case 1081: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1031); + lookahead == 'a') ADVANCE(1092); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1021: + case 1082: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1020); + lookahead == 'b') ADVANCE(1081); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1022: + case 1083: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1020); + lookahead == 'c') ADVANCE(1081); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1023: + case 1084: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1042); + lookahead == 'c') ADVANCE(1103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1024: + case 1085: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1049); + lookahead == 'e') ADVANCE(1110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1025: + case 1086: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1033); + lookahead == 'f') ADVANCE(1094); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1026: + case 1087: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1049); + lookahead == 'g') ADVANCE(1110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1027: + case 1088: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1046); + lookahead == 'i') ADVANCE(1107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1028: + case 1089: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1034); + lookahead == 'i') ADVANCE(1095); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1029: + case 1090: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1039); + lookahead == 'i') ADVANCE(1100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1030: + case 1091: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1025); + lookahead == 'k') ADVANCE(1086); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1031: + case 1092: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1049); + lookahead == 'l') ADVANCE(1110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1032: + case 1093: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1035); + lookahead == 'l') ADVANCE(1096); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1033: + case 1094: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1036); + lookahead == 'l') ADVANCE(1097); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1034: + case 1095: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1026); + lookahead == 'n') ADVANCE(1087); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1035: + case 1096: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1021); + lookahead == 'o') ADVANCE(1082); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1036: + case 1097: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1047); + lookahead == 'o') ADVANCE(1108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1037: + case 1098: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1041); + lookahead == 'o') ADVANCE(1102); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1038: + case 1099: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1022); + lookahead == 'o') ADVANCE(1083); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1039: + case 1100: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1045); + lookahead == 'p') ADVANCE(1106); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1040: + case 1101: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1027); + lookahead == 'r') ADVANCE(1088); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1041: + case 1102: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1030); + lookahead == 'r') ADVANCE(1091); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1042: + case 1103: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1029); + lookahead == 'r') ADVANCE(1090); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1043: + case 1104: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1028); + lookahead == 's') ADVANCE(1089); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1044: + case 1105: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1024); + lookahead == 't') ADVANCE(1085); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1045: + case 1106: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1049); + lookahead == 't') ADVANCE(1110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1046: + case 1107: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1019); + lookahead == 'v') ADVANCE(1080); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1047: + case 1108: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1049); + lookahead == 'w') ADVANCE(1110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1048: + case 1109: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1518); + if (lookahead == ':') ADVANCE(1396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1049: + case 1110: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1516); + if (lookahead == ':') ADVANCE(1394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1050: + case 1111: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1075); + lookahead == 'a') ADVANCE(1136); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1051: + case 1112: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1062); + lookahead == 'a') ADVANCE(1123); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1052: + case 1113: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1051); + lookahead == 'b') ADVANCE(1112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1053: + case 1114: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1051); + lookahead == 'c') ADVANCE(1112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1054: + case 1115: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1073); + lookahead == 'c') ADVANCE(1134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1055: + case 1116: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1080); + lookahead == 'e') ADVANCE(1141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1056: + case 1117: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1064); + lookahead == 'f') ADVANCE(1125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1057: + case 1118: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1080); + lookahead == 'g') ADVANCE(1141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1058: + case 1119: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1077); + lookahead == 'i') ADVANCE(1138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1059: + case 1120: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1065); + lookahead == 'i') ADVANCE(1126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1060: + case 1121: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1070); + lookahead == 'i') ADVANCE(1131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1061: + case 1122: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1056); + lookahead == 'k') ADVANCE(1117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1062: + case 1123: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1063: + case 1124: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1066); + lookahead == 'l') ADVANCE(1127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1064: + case 1125: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1067); + lookahead == 'l') ADVANCE(1128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1065: + case 1126: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); + lookahead == 'n') ADVANCE(1118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1066: + case 1127: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1052); + lookahead == 'o') ADVANCE(1113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1067: + case 1128: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1078); + lookahead == 'o') ADVANCE(1139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1068: + case 1129: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1072); + lookahead == 'o') ADVANCE(1133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1069: + case 1130: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); + lookahead == 'o') ADVANCE(1114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1070: + case 1131: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1076); + lookahead == 'p') ADVANCE(1137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1071: + case 1132: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1058); + lookahead == 'r') ADVANCE(1119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1072: + case 1133: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1061); + lookahead == 'r') ADVANCE(1122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1073: + case 1134: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1060); + lookahead == 'r') ADVANCE(1121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1074: + case 1135: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1059); + lookahead == 's') ADVANCE(1120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1075: + case 1136: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1055); + lookahead == 't') ADVANCE(1116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1076: + case 1137: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1080); + lookahead == 't') ADVANCE(1141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1077: + case 1138: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1050); + lookahead == 'v') ADVANCE(1111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1078: + case 1139: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1080); + lookahead == 'w') ADVANCE(1141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1079: + case 1140: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(153); + if (lookahead == ':') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1080: + case 1141: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(143); + if (lookahead == ':') ADVANCE(197); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1079); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1140); END_STATE(); - case 1081: + case 1142: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1106); + lookahead == 'a') ADVANCE(1167); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16306,17 +16902,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1082: + case 1143: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1093); + lookahead == 'a') ADVANCE(1154); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16325,17 +16921,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1083: + case 1144: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1082); + lookahead == 'b') ADVANCE(1143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16344,17 +16940,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1084: + case 1145: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1082); + lookahead == 'c') ADVANCE(1143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16363,17 +16959,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1085: + case 1146: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1104); + lookahead == 'c') ADVANCE(1165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16382,17 +16978,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1086: + case 1147: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1111); + lookahead == 'e') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16401,17 +16997,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1087: + case 1148: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1095); + lookahead == 'f') ADVANCE(1156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16420,17 +17016,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1088: + case 1149: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1111); + lookahead == 'g') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16439,17 +17035,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1089: + case 1150: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1108); + lookahead == 'i') ADVANCE(1169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16458,17 +17054,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1090: + case 1151: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1096); + lookahead == 'i') ADVANCE(1157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16477,17 +17073,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1091: + case 1152: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1101); + lookahead == 'i') ADVANCE(1162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16496,17 +17092,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1092: + case 1153: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1087); + lookahead == 'k') ADVANCE(1148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16515,17 +17111,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1093: + case 1154: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1111); + lookahead == 'l') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16534,17 +17130,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1094: + case 1155: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1097); + lookahead == 'l') ADVANCE(1158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16553,17 +17149,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1095: + case 1156: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1098); + lookahead == 'l') ADVANCE(1159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16572,17 +17168,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1096: + case 1157: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1088); + lookahead == 'n') ADVANCE(1149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16591,17 +17187,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1097: + case 1158: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1083); + lookahead == 'o') ADVANCE(1144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16610,17 +17206,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1098: + case 1159: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1109); + lookahead == 'o') ADVANCE(1170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16629,17 +17225,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1099: + case 1160: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1103); + lookahead == 'o') ADVANCE(1164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16648,17 +17244,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1100: + case 1161: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1084); + lookahead == 'o') ADVANCE(1145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16667,17 +17263,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1101: + case 1162: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1107); + lookahead == 'p') ADVANCE(1168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16686,17 +17282,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1102: + case 1163: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1089); + lookahead == 'r') ADVANCE(1150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16705,17 +17301,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1103: + case 1164: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1092); + lookahead == 'r') ADVANCE(1153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16724,17 +17320,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1104: + case 1165: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1091); + lookahead == 'r') ADVANCE(1152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16743,17 +17339,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1105: + case 1166: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1090); + lookahead == 's') ADVANCE(1151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16762,17 +17358,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1106: + case 1167: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1086); + lookahead == 't') ADVANCE(1147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16781,17 +17377,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1107: + case 1168: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1111); + lookahead == 't') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16800,17 +17396,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1108: + case 1169: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1081); + lookahead == 'v') ADVANCE(1142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16819,17 +17415,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1109: + case 1170: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1111); + lookahead == 'w') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16838,15 +17434,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1110: + case 1171: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1174); + if (lookahead == ':') ADVANCE(1236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16855,15 +17451,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1111: + case 1172: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1172); + if (lookahead == ':') ADVANCE(1234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16872,17 +17468,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1112: + case 1173: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1137); + lookahead == 'a') ADVANCE(1198); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16890,17 +17486,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1113: + case 1174: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1124); + lookahead == 'a') ADVANCE(1185); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16908,17 +17504,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1114: + case 1175: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1113); + lookahead == 'b') ADVANCE(1174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16926,17 +17522,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1115: + case 1176: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1113); + lookahead == 'c') ADVANCE(1174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16944,17 +17540,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1116: + case 1177: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1135); + lookahead == 'c') ADVANCE(1196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16962,17 +17558,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1117: + case 1178: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1142); + lookahead == 'e') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16980,17 +17576,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1118: + case 1179: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1126); + lookahead == 'f') ADVANCE(1187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -16998,17 +17594,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1119: + case 1180: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1142); + lookahead == 'g') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17016,17 +17612,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1120: + case 1181: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1139); + lookahead == 'i') ADVANCE(1200); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17034,17 +17630,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1121: + case 1182: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1127); + lookahead == 'i') ADVANCE(1188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17052,17 +17648,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1122: + case 1183: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1132); + lookahead == 'i') ADVANCE(1193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17070,17 +17666,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1123: + case 1184: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1118); + lookahead == 'k') ADVANCE(1179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17088,17 +17684,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1124: + case 1185: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1142); + lookahead == 'l') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17106,17 +17702,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1125: + case 1186: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1128); + lookahead == 'l') ADVANCE(1189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17124,17 +17720,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1126: + case 1187: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1129); + lookahead == 'l') ADVANCE(1190); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17142,17 +17738,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1127: + case 1188: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1119); + lookahead == 'n') ADVANCE(1180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17160,17 +17756,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1128: + case 1189: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1114); + lookahead == 'o') ADVANCE(1175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17178,17 +17774,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1129: + case 1190: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1140); + lookahead == 'o') ADVANCE(1201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17196,17 +17792,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1130: + case 1191: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1134); + lookahead == 'o') ADVANCE(1195); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17214,17 +17810,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1131: + case 1192: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1115); + lookahead == 'o') ADVANCE(1176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17232,17 +17828,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1132: + case 1193: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1138); + lookahead == 'p') ADVANCE(1199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17250,17 +17846,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1133: + case 1194: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1120); + lookahead == 'r') ADVANCE(1181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17268,17 +17864,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1134: + case 1195: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); + lookahead == 'r') ADVANCE(1184); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17286,17 +17882,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1135: + case 1196: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17304,17 +17900,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1136: + case 1197: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1121); + lookahead == 's') ADVANCE(1182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17322,17 +17918,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1137: + case 1198: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1117); + lookahead == 't') ADVANCE(1178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17340,17 +17936,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1138: + case 1199: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1142); + lookahead == 't') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17358,17 +17954,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1139: + case 1200: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1112); + lookahead == 'v') ADVANCE(1173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17376,17 +17972,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1140: + case 1201: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1142); + lookahead == 'w') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17394,15 +17990,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1141: + case 1202: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1225); + if (lookahead == ':') ADVANCE(1283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17410,15 +18006,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1142: + case 1203: ACCEPT_TOKEN(aux_sym_variable_token2); - if (lookahead == ':') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17426,21 +18022,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1143: + case 1204: ACCEPT_TOKEN(aux_sym_variable_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1143); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1204); END_STATE(); - case 1144: + case 1205: ACCEPT_TOKEN(aux_sym_variable_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1205); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17449,14 +18045,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1145: + case 1206: ACCEPT_TOKEN(aux_sym_variable_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17464,20 +18060,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1146: + case 1207: ACCEPT_TOKEN(aux_sym_variable_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1207); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1147: + case 1208: ACCEPT_TOKEN(aux_sym_variable_token2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -17487,9 +18083,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1148: + case 1209: ACCEPT_TOKEN(aux_sym_variable_token2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -17498,22 +18094,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1149: + case 1210: ACCEPT_TOKEN(aux_sym_variable_token2); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(1519); + lookahead != '`') ADVANCE(1397); END_STATE(); - case 1150: + case 1211: ACCEPT_TOKEN(sym_braced_variable); END_STATE(); - case 1151: + case 1212: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '\n') ADVANCE(596); - if (lookahead == ' ') ADVANCE(2); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == ' ') ADVANCE(5); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '(' && @@ -17521,216 +18118,230 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1152: + case 1213: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '\n') ADVANCE(5); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3); + if (lookahead == '\n') ADVANCE(9); + if (lookahead == '\r') ADVANCE(6); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(6); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1153: + case 1214: + ACCEPT_TOKEN(sym_generic_token); + if (lookahead == '\r') ADVANCE(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == ';' || + lookahead == '|' || + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1221); + END_STATE(); + case 1215: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - ' ', 1747, - '!', 1798, - '"', 541, - '#', 467, - '$', 1160, - '\'', 1162, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1782, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ':', 1755, - ';', 1212, - '<', 827, - '>', 785, - '@', 1157, - '[', 776, - '`', 1212, - '{', 1465, + ' ', 1736, + '!', 1785, + '"', 605, + '#', 531, + '$', 1222, + '\'', 1224, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1770, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ':', 1742, + ';', 1269, + '<', 884, + '>', 842, + '@', 1219, + '[', 832, + '`', 1269, + '{', 1340, ); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1153); + lookahead == 0xfeff) ADVANCE(1215); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '.' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1154: + case 1216: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - ' ', 1749, - '!', 1798, - '"', 541, - '#', 467, - '$', 1160, - '\'', 1162, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1785, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ':', 1755, - ';', 1212, - '<', 827, - '>', 785, - '@', 1157, - '[', 776, - '`', 1212, - '{', 1465, + ' ', 1737, + '!', 1785, + '"', 605, + '#', 531, + '$', 1222, + '\'', 1224, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1771, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ';', 1269, + '<', 884, + '>', 842, + '@', 1219, + '[', 832, + '`', 1269, + '{', 1340, ); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1154); + lookahead == 0xfeff) ADVANCE(1216); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '.' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1155: + case 1217: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - ' ', 1750, - '!', 1798, - '"', 541, - '#', 467, - '$', 1160, - '\'', 1162, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1783, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ';', 1212, - '<', 827, - '>', 785, - '@', 1157, - '[', 776, - '`', 1212, - '{', 1465, + ' ', 1738, + '!', 1785, + '"', 605, + '#', 531, + '$', 1222, + '\'', 1224, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1773, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ':', 1742, + ';', 1269, + '<', 884, + '>', 842, + '@', 1219, + '[', 832, + '`', 1269, + '{', 1340, ); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1155); + lookahead == 0xfeff) ADVANCE(1217); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '.' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1156: + case 1218: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - '!', 1798, - '"', 541, - '#', 467, - '$', 1160, - '\'', 1162, - '*', 1173, - '+', 1775, - ',', 1459, - '-', 1783, - '.', 1205, - '0', 495, - '1', 489, - '2', 490, - '3', 491, - '4', 492, - '5', 493, - '6', 494, - ';', 1212, - '<', 827, - '>', 785, - '@', 1157, - '[', 776, - '`', 1212, - '{', 1465, + '!', 1785, + '"', 605, + '#', 531, + '$', 1222, + '\'', 1224, + '*', 1235, + '+', 1762, + ',', 1330, + '-', 1771, + '.', 1264, + '0', 559, + '1', 553, + '2', 554, + '3', 555, + '4', 556, + '5', 557, + '6', 558, + ';', 1269, + '<', 884, + '>', 842, + '@', 1219, + '[', 832, + '`', 1269, + '{', 1340, ); - if (('7' <= lookahead && lookahead <= '9')) ADVANCE(496); + if (('7' <= lookahead && lookahead <= '9')) ADVANCE(560); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1156); + lookahead == 0xfeff) ADVANCE(1218); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1157: + case 1219: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - '"', 1151, - '\'', 1152, - '(', 1812, - '?', 1147, - '{', 1814, - 'G', 1094, - 'g', 1094, - 'L', 1100, - 'l', 1100, - 'P', 1102, - 'p', 1102, - 'S', 1085, - 's', 1085, - 'U', 1105, - 'u', 1105, - 'W', 1099, - 'w', 1099, + '"', 1212, + '\'', 1213, + '(', 1800, + '?', 1208, + '{', 1802, + 'G', 1155, + 'g', 1155, + 'L', 1161, + 'l', 1161, + 'P', 1163, + 'p', 1163, + 'S', 1146, + 's', 1146, + 'U', 1166, + 'u', 1166, + 'W', 1160, + 'w', 1160, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1110); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1171); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < 'a' || '}' < lookahead)) ADVANCE(1212); + (lookahead < 'a' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1158: + case 1220: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '#') ADVANCE(1158); - if (lookahead == '>') ADVANCE(469); + if (lookahead == '#') ADVANCE(1220); + if (lookahead == '>') ADVANCE(533); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -17738,13 +18349,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ',' || lookahead == ';' || lookahead == '|' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1159); + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1221); END_STATE(); - case 1159: + case 1221: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '#') ADVANCE(1158); - if (lookahead == '`') ADVANCE(1209); + if (lookahead == '#') ADVANCE(1220); + if (lookahead == '`') ADVANCE(1214); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -17752,34 +18363,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ',' || lookahead == ';' || lookahead == '|' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1159); + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1221); END_STATE(); - case 1160: + case 1222: ACCEPT_TOKEN(sym_generic_token); ADVANCE_MAP( - '$', 908, - '(', 1811, - '?', 914, - '^', 911, - '_', 917, - '{', 1208, - 'G', 964, - 'g', 964, - 'L', 970, - 'l', 970, - 'P', 972, - 'p', 972, - 'S', 955, - 's', 955, - 'U', 975, - 'u', 975, - 'W', 969, - 'w', 969, + '$', 969, + '(', 1799, + '?', 975, + '^', 972, + '_', 978, + '{', 1266, + 'G', 1025, + 'g', 1025, + 'L', 1031, + 'l', 1031, + 'P', 1033, + 'p', 1033, + 'S', 1016, + 's', 1016, + 'U', 1036, + 'u', 1036, + 'W', 1030, + 'w', 1030, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(980); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1041); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17787,11 +18398,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ',' && lookahead != ';' && - (lookahead < 'a' || '}' < lookahead)) ADVANCE(1212); + (lookahead < 'a' || '}' < lookahead)) ADVANCE(1269); END_STATE(); - case 1161: + case 1223: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '&') ADVANCE(1170); + if (lookahead == '&') ADVANCE(1232); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17800,11 +18411,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1162: + case 1224: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '\'') ADVANCE(646); + if (lookahead == '\'') ADVANCE(712); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -17812,15 +18423,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ',' || lookahead == ';' || lookahead == '|' || - lookahead == '}') ADVANCE(124); - if (lookahead != 0) ADVANCE(1162); + lookahead == '}') ADVANCE(178); + if (lookahead != 0) ADVANCE(1224); END_STATE(); - case 1163: + case 1225: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '-') ADVANCE(1163); + if (lookahead == '-') ADVANCE(1225); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17830,12 +18441,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1164: + case 1226: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(830); - if (lookahead == '2') ADVANCE(842); + if (lookahead == '1') ADVANCE(887); + if (lookahead == '2') ADVANCE(899); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17844,11 +18455,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1165: + case 1227: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(832); + if (lookahead == '1') ADVANCE(889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17857,12 +18468,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1166: + case 1228: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(834); - if (lookahead == '2') ADVANCE(846); + if (lookahead == '1') ADVANCE(891); + if (lookahead == '2') ADVANCE(903); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17871,12 +18482,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1167: + case 1229: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(836); - if (lookahead == '2') ADVANCE(848); + if (lookahead == '1') ADVANCE(893); + if (lookahead == '2') ADVANCE(905); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17885,12 +18496,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1168: + case 1230: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(838); - if (lookahead == '2') ADVANCE(850); + if (lookahead == '1') ADVANCE(895); + if (lookahead == '2') ADVANCE(907); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17899,12 +18510,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1169: + case 1231: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '1') ADVANCE(840); - if (lookahead == '2') ADVANCE(852); + if (lookahead == '1') ADVANCE(897); + if (lookahead == '2') ADVANCE(909); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17913,11 +18524,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1170: + case 1232: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '2') ADVANCE(844); + if (lookahead == '2') ADVANCE(901); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17926,16 +18537,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1171: + case 1233: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == ':') ADVANCE(1175); - if (lookahead == '?') ADVANCE(1016); + if (lookahead == ':') ADVANCE(1237); + if (lookahead == '?') ADVANCE(1077); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1014); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17944,16 +18555,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1172: + case 1234: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == ':') ADVANCE(1174); - if (lookahead == '?') ADVANCE(1147); + if (lookahead == ':') ADVANCE(1236); + if (lookahead == '?') ADVANCE(1208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1205); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17962,11 +18573,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && (lookahead < '0' || ';' < lookahead) && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1173: + case 1235: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '>') ADVANCE(822); + if (lookahead == '>') ADVANCE(879); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17975,15 +18586,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1174: + case 1236: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '?') ADVANCE(1147); + if (lookahead == '?') ADVANCE(1208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1205); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -17992,15 +18603,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1175: + case 1237: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '?') ADVANCE(1016); + if (lookahead == '?') ADVANCE(1077); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1014); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18009,11 +18620,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1176: + case 1238: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'b') ADVANCE(506); + if (lookahead == 'b') ADVANCE(570); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18022,11 +18633,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1177: + case 1239: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'b') ADVANCE(602); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18035,11 +18646,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1178: + case 1240: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'b') ADVANCE(521); + if (lookahead == 'b') ADVANCE(585); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18048,25 +18659,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1179: + case 1241: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '}') ADVANCE(1150); + if (lookahead == '}') ADVANCE(1211); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ',' || lookahead == ';' || - lookahead == '|') ADVANCE(162); - if (lookahead != 0) ADVANCE(1179); + lookahead == '|') ADVANCE(216); + if (lookahead != 0) ADVANCE(1241); END_STATE(); - case 1180: + case 1242: ACCEPT_TOKEN(sym_generic_token); if (lookahead == '+' || - lookahead == '-') ADVANCE(1206); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + lookahead == '-') ADVANCE(1265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(598); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18075,16 +18686,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '+' || '-' < lookahead) && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1181: + case 1243: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1187); + lookahead == 'i') ADVANCE(1249); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18094,45 +18705,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1182: + case 1244: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1188); + lookahead == 'i') ADVANCE(1261); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && + lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1183: + case 1245: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1201); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + lookahead == 'i') ADVANCE(1250); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1184: + case 1246: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1202); + lookahead == 'i') ADVANCE(1262); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18141,16 +18752,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1185: + case 1247: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1183); + lookahead == 'l') ADVANCE(1244); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18160,12 +18771,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1186: + case 1248: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1184); + lookahead == 'l') ADVANCE(1246); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18174,16 +18785,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1187: + case 1249: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); + lookahead == 'n') ADVANCE(948); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18193,12 +18804,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1188: + case 1250: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); + lookahead == 'n') ADVANCE(949); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18207,16 +18818,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1189: + case 1251: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1195); + lookahead == 'n') ADVANCE(1254); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18226,12 +18837,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1190: + case 1252: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1196); + lookahead == 'n') ADVANCE(1256); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18240,16 +18851,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1191: + case 1253: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1181); + lookahead == 'o') ADVANCE(1243); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18259,16 +18870,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1192: + case 1254: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1203); + lookahead == 'o') ADVANCE(1260); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18278,12 +18889,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1193: + case 1255: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1182); + lookahead == 'o') ADVANCE(1245); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18292,12 +18903,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1194: + case 1256: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1204); + lookahead == 'o') ADVANCE(1259); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18306,16 +18917,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1195: + case 1257: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1199); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1247); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18325,12 +18936,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1196: + case 1258: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1200); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1248); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18339,49 +18950,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1197: + case 1259: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1185); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1269); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1198: + case 1260: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1186); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1268); + if (lookahead == '-' || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && + lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1199: + case 1261: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1799); + lookahead == 't') ADVANCE(964); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18391,12 +19002,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1200: + case 1262: ACCEPT_TOKEN(sym_generic_token); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1799); + lookahead == 't') ADVANCE(965); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18405,31 +19016,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1201: + case 1263: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(904); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + if (lookahead == '\t' || + lookahead == 0x0b || + lookahead == '\f' || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == ';' || + lookahead == '|' || + lookahead == '}') ADVANCE(1734); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1263); + END_STATE(); + case 1264: + ACCEPT_TOKEN(sym_generic_token); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(593); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ',' && - lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1202: + case 1265: ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(598); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18438,82 +19057,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1203: - ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1793); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != '-' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); - END_STATE(); - case 1204: - ACCEPT_TOKEN(sym_generic_token); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1793); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); - END_STATE(); - case 1205: - ACCEPT_TOKEN(sym_generic_token); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(529); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); - END_STATE(); - case 1206: - ACCEPT_TOKEN(sym_generic_token); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); - END_STATE(); - case 1207: - ACCEPT_TOKEN(sym_generic_token); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == ';' || - lookahead == '|' || - lookahead == '}') ADVANCE(1745); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1207); - END_STATE(); - case 1208: + case 1266: ACCEPT_TOKEN(sym_generic_token); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -18521,28 +19067,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ')' || lookahead == ',' || lookahead == ';' || - lookahead == '|') ADVANCE(162); + lookahead == '|') ADVANCE(216); if (lookahead != 0 && lookahead != '|' && - lookahead != '}') ADVANCE(1179); - END_STATE(); - case 1209: - ACCEPT_TOKEN(sym_generic_token); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == ';' || - lookahead == '|' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1159); + lookahead != '}') ADVANCE(1241); END_STATE(); - case 1210: + case 1267: ACCEPT_TOKEN(sym_generic_token); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(516); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(580); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18551,14 +19085,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1211: + case 1268: ACCEPT_TOKEN(sym_generic_token); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18568,9 +19102,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1212: + case 1269: ACCEPT_TOKEN(sym_generic_token); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -18580,51 +19114,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1213: + case 1270: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '\n') ADVANCE(596); - if (lookahead == ' ') ADVANCE(2); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == ' ') ADVANCE(5); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1214: + case 1271: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '\n') ADVANCE(5); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3); + if (lookahead == '\n') ADVANCE(9); + if (lookahead == '\r') ADVANCE(6); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(6); if (lookahead != 0 && lookahead != '(' && lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1215: + case 1272: + ACCEPT_TOKEN(sym__command_token); + if (lookahead == '\r') ADVANCE(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ';' || + lookahead == '{' || + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1278); + END_STATE(); + case 1273: ACCEPT_TOKEN(sym__command_token); ADVANCE_MAP( - '"', 542, - '#', 466, - '$', 1221, - '\'', 1222, - '.', 1231, - '0', 497, - '<', 1218, - '@', 1216, - '[', 777, - '`', 1235, - 0xa0, 1215, - 0x200b, 1215, - 0x2060, 1215, - 0xfeff, 1215, + '"', 606, + '#', 530, + '$', 1279, + '\'', 1280, + '.', 1289, + '0', 561, + '<', 1276, + '@', 1274, + '[', 833, + '`', 1292, + 0xa0, 1273, + 0x200b, 1273, + 0x2060, 1273, + 0xfeff, 1273, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(498); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(562); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18632,49 +19180,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1216: + case 1274: ACCEPT_TOKEN(sym__command_token); ADVANCE_MAP( - '"', 1213, - '\'', 1214, - '(', 1812, - '?', 1148, - '{', 1813, - 'G', 1125, - 'g', 1125, - 'L', 1131, - 'l', 1131, - 'P', 1133, - 'p', 1133, - 'S', 1116, - 's', 1116, - 'U', 1136, - 'u', 1136, - 'W', 1130, - 'w', 1130, + '"', 1270, + '\'', 1271, + '(', 1800, + '?', 1209, + '{', 1801, + 'G', 1186, + 'g', 1186, + 'L', 1192, + 'l', 1192, + 'P', 1194, + 'p', 1194, + 'S', 1177, + 's', 1177, + 'U', 1197, + 'u', 1197, + 'W', 1191, + 'w', 1191, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1202); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1217: + case 1275: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '#') ADVANCE(466); - if (lookahead == '<') ADVANCE(1218); - if (lookahead == '`') ADVANCE(1235); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '<') ADVANCE(1276); + if (lookahead == '`') ADVANCE(1292); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1217); + lookahead == 0xfeff) ADVANCE(1275); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18683,11 +19231,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1218: + case 1276: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '#') ADVANCE(1220); + if (lookahead == '#') ADVANCE(1278); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18695,87 +19243,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1219: + case 1277: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '#') ADVANCE(1219); - if (lookahead == '>') ADVANCE(470); + if (lookahead == '#') ADVANCE(1277); + if (lookahead == '>') ADVANCE(534); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || lookahead == '{' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1220); + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1278); END_STATE(); - case 1220: + case 1278: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '#') ADVANCE(1219); - if (lookahead == '`') ADVANCE(1233); + if (lookahead == '#') ADVANCE(1277); + if (lookahead == '`') ADVANCE(1272); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || lookahead == '{' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1220); + lookahead == '}') ADVANCE(171); + if (lookahead != 0) ADVANCE(1278); END_STATE(); - case 1221: + case 1279: ACCEPT_TOKEN(sym__command_token); ADVANCE_MAP( - '$', 909, - '(', 1811, - '?', 915, - '^', 912, - '_', 918, - '{', 443, - 'G', 995, - 'g', 995, - 'L', 1001, - 'l', 1001, - 'P', 1003, - 'p', 1003, - 'S', 986, - 's', 986, - 'U', 1006, - 'u', 1006, - 'W', 1000, - 'w', 1000, + '$', 970, + '(', 1799, + '?', 976, + '^', 973, + '_', 979, + '{', 502, + 'G', 1056, + 'g', 1056, + 'L', 1062, + 'l', 1062, + 'P', 1064, + 'p', 1064, + 'S', 1047, + 's', 1047, + 'U', 1067, + 'u', 1067, + 'W', 1061, + 'w', 1061, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1011); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1222: + case 1280: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '\'') ADVANCE(647); + if (lookahead == '\'') ADVANCE(713); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || lookahead == '{' || - lookahead == '}') ADVANCE(124); - if (lookahead != 0) ADVANCE(1222); + lookahead == '}') ADVANCE(178); + if (lookahead != 0) ADVANCE(1280); END_STATE(); - case 1223: + case 1281: ACCEPT_TOKEN(sym__command_token); - if (lookahead == ':') ADVANCE(1226); - if (lookahead == '?') ADVANCE(1017); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '?') ADVANCE(1078); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1015); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18783,16 +19331,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1224: + case 1282: ACCEPT_TOKEN(sym__command_token); - if (lookahead == ':') ADVANCE(1225); - if (lookahead == '?') ADVANCE(1148); + if (lookahead == ':') ADVANCE(1283); + if (lookahead == '?') ADVANCE(1209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18800,15 +19348,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && (lookahead < '0' || ';' < lookahead) && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1225: + case 1283: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '?') ADVANCE(1148); + if (lookahead == '?') ADVANCE(1209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1206); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18816,15 +19364,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1226: + case 1284: ACCEPT_TOKEN(sym__command_token); - if (lookahead == '?') ADVANCE(1017); + if (lookahead == '?') ADVANCE(1078); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1015); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18832,11 +19380,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && (lookahead < 'a' || '{' < lookahead) && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1227: + case 1285: ACCEPT_TOKEN(sym__command_token); - if (lookahead == 'b') ADVANCE(507); + if (lookahead == 'b') ADVANCE(571); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18844,11 +19392,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1228: + case 1286: ACCEPT_TOKEN(sym__command_token); - if (lookahead == 'b') ADVANCE(539); + if (lookahead == 'b') ADVANCE(603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18856,11 +19404,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1229: + case 1287: ACCEPT_TOKEN(sym__command_token); - if (lookahead == 'b') ADVANCE(522); + if (lookahead == 'b') ADVANCE(586); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18868,13 +19416,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1230: + case 1288: ACCEPT_TOKEN(sym__command_token); if (lookahead == '+' || - lookahead == '-') ADVANCE(1232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(535); + lookahead == '-') ADVANCE(1290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(599); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18882,11 +19430,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1231: + case 1289: ACCEPT_TOKEN(sym__command_token); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(530); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18894,11 +19442,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1232: + case 1290: ACCEPT_TOKEN(sym__command_token); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(599); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18906,24 +19454,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); - END_STATE(); - case 1233: - ACCEPT_TOKEN(sym__command_token); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - lookahead == '{' || - lookahead == '}') ADVANCE(117); - if (lookahead != 0) ADVANCE(1220); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1234: + case 1291: ACCEPT_TOKEN(sym__command_token); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(518); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(582); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -18931,9 +19468,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1235: + case 1292: ACCEPT_TOKEN(sym__command_token); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -18942,3922 +19479,3606 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ')' && lookahead != ';' && lookahead != '{' && - lookahead != '}') ADVANCE(1235); + lookahead != '}') ADVANCE(1292); END_STATE(); - case 1236: + case 1293: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '%') ADVANCE(1762); - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '%') ADVANCE(1749); + if (lookahead == '-') ADVANCE(1297); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1237: + case 1294: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '%') ADVANCE(1762); - if (lookahead == '-') ADVANCE(1241); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '%') ADVANCE(1749); + if (lookahead == '-') ADVANCE(1298); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1238: + case 1295: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '%') ADVANCE(1745); - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '%') ADVANCE(1734); + if (lookahead == '-') ADVANCE(1297); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1239: + case 1296: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '%') ADVANCE(1745); - if (lookahead == '-') ADVANCE(1241); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '%') ADVANCE(1734); + if (lookahead == '-') ADVANCE(1298); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1240: + case 1297: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '-') ADVANCE(1297); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1241: + case 1298: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '-') ADVANCE(1241); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '-') ADVANCE(1298); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1242: + case 1299: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1243: + case 1300: ACCEPT_TOKEN(sym_command_parameter); - ADVANCE_MAP( - 'A', 1360, - 'a', 1360, - 'N', 1378, - 'n', 1378, - 'O', 1399, - 'o', 1399, - 'X', 1380, - 'x', 1380, - ); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1303); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1244: + case 1301: ACCEPT_TOKEN(sym_command_parameter); - ADVANCE_MAP( - 'A', 1411, - 'a', 1411, - 'C', 1384, - 'c', 1384, - 'E', 1396, - 'e', 1396, - 'G', 1290, - 'g', 1290, - 'L', 1291, - 'l', 1291, - 'M', 1252, - 'm', 1252, - 'N', 1292, - 'n', 1292, - 'O', 1367, - 'o', 1367, - 'R', 1310, - 'r', 1310, - 'S', 1392, - 's', 1392, - ); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1309); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1245: + case 1302: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1423); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1301); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1246: + case 1303: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1271); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(947); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1247: + case 1304: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1402); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1306); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1248: + case 1305: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1350); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1300); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1249: + case 1306: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1273); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1250: + case 1307: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1403); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1302); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1251: + case 1308: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1310); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1252: + case 1309: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1424); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(963); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1253: + case 1310: ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1324); if (lookahead == '-' || lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1254: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1274); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1311: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token1); END_STATE(); - case 1255: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1425); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1312: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1256: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1325); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1313: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token2); + if (lookahead == '&') ADVANCE(1322); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '|') ADVANCE(1314); + if (lookahead != 0) ADVANCE(1313); END_STATE(); - case 1257: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1275); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1314: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token2); + if (lookahead != 0 && + lookahead != '&') ADVANCE(1314); END_STATE(); - case 1258: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1428); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1315: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '\n' || + lookahead == '|') ADVANCE(171); + if (lookahead != 0) ADVANCE(1321); END_STATE(); - case 1259: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1326); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1316: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + ADVANCE_MAP( + '"', 1318, + '#', 528, + '&', 1313, + ')', 1328, + '<', 1319, + '`', 1322, + '\t', 1316, + 0x0b, 1316, + '\f', 1316, + ' ', 1316, + 0xa0, 1316, + 0x200b, 1316, + 0x2060, 1316, + 0xfeff, 1316, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1260: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1429); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1317: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + ADVANCE_MAP( + '"', 1318, + '#', 528, + '&', 1313, + '<', 1319, + '`', 1322, + '\t', 1317, + 0x0b, 1317, + '\f', 1317, + ' ', 1317, + 0xa0, 1317, + 0x200b, 1317, + 0x2060, 1317, + 0xfeff, 1317, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1261: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1328); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1318: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead == '"') ADVANCE(1312); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '|') ADVANCE(157); + if (lookahead != 0) ADVANCE(1318); END_STATE(); - case 1262: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1430); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1319: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead == '#') ADVANCE(1321); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1263: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1330); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1320: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead == '#') ADVANCE(1320); + if (lookahead == '>') ADVANCE(535); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '|') ADVANCE(171); + if (lookahead != 0) ADVANCE(1321); END_STATE(); - case 1264: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1332); - if (lookahead == '-' || - lookahead == '?' || - ('B' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1321: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead == '#') ADVANCE(1320); + if (lookahead == '`') ADVANCE(1315); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '|') ADVANCE(171); + if (lookahead != 0) ADVANCE(1321); END_STATE(); - case 1265: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1315); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1322: + ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1266: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1316); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1323: + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 1267: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1317); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1324: + ACCEPT_TOKEN(aux_sym_param_block_token1); END_STATE(); - case 1268: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1318); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1325: + ACCEPT_TOKEN(aux_sym_param_block_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1269: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1376); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1326: + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1270: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1319); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1327: + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1271: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1417); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1328: + ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '|') ADVANCE(1322); END_STATE(); - case 1272: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1320); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1329: + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1273: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1301); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1330: + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1274: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1303); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1331: + ACCEPT_TOKEN(aux_sym_block_name_token1); END_STATE(); - case 1275: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1305); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1332: + ACCEPT_TOKEN(aux_sym_block_name_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1276: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1250); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1333: + ACCEPT_TOKEN(aux_sym_block_name_token2); END_STATE(); - case 1277: - ACCEPT_TOKEN(sym_command_parameter); - ADVANCE_MAP( - 'C', 1385, - 'c', 1385, - 'E', 1397, - 'e', 1397, - 'G', 1293, - 'g', 1293, - 'L', 1294, - 'l', 1294, - 'M', 1255, - 'm', 1255, - 'N', 880, - 'n', 880, - 'R', 1312, - 'r', 1312, - 'S', 888, - 's', 888, - ); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1334: + ACCEPT_TOKEN(aux_sym_block_name_token2); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1278: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1387); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1335); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1260); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1335: + ACCEPT_TOKEN(aux_sym_block_name_token3); END_STATE(); - case 1279: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1388); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1336); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1262); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1336: + ACCEPT_TOKEN(aux_sym_block_name_token3); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1280: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1767); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1337: + ACCEPT_TOKEN(aux_sym_block_name_token4); END_STATE(); - case 1281: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1770); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1338: + ACCEPT_TOKEN(aux_sym_block_name_token4); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1282: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1475); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1339: + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 1283: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1506); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1340: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ',' && + lookahead != ';' && + lookahead != '|' && + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1284: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1276); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1341: + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 1285: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1269); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1342: + ACCEPT_TOKEN(aux_sym_if_statement_token1); + if (lookahead == '-') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1286: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(871); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1343: + ACCEPT_TOKEN(aux_sym_elseif_clause_token1); END_STATE(); - case 1287: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(892); + case 1344: + ACCEPT_TOKEN(aux_sym_elseif_clause_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); + END_STATE(); + case 1345: + ACCEPT_TOKEN(aux_sym_else_clause_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1337); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(894); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == 'i') ADVANCE(319); END_STATE(); - case 1288: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(896); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1414); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1346: + ACCEPT_TOKEN(aux_sym_else_clause_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1541); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1289: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1313); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1347: + ACCEPT_TOKEN(aux_sym_else_clause_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1290: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(857); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1348: + ACCEPT_TOKEN(aux_sym_switch_statement_token1); END_STATE(); - case 1291: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(858); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1338); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(860); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1349: + ACCEPT_TOKEN(aux_sym_switch_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1292: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1416); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1350: + ACCEPT_TOKEN(aux_sym_switch_parameter_token1); END_STATE(); - case 1293: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(874); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(875); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1351: + ACCEPT_TOKEN(aux_sym_switch_parameter_token2); END_STATE(); - case 1294: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(876); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(878); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1352: + ACCEPT_TOKEN(aux_sym_switch_parameter_token3); END_STATE(); - case 1295: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1479); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1353: + ACCEPT_TOKEN(aux_sym_switch_parameter_token4); END_STATE(); - case 1296: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(893); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1354: + ACCEPT_TOKEN(aux_sym_switch_parameter_token5); END_STATE(); - case 1297: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1439); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1355: + ACCEPT_TOKEN(aux_sym_switch_condition_token1); END_STATE(); - case 1298: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(859); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1356: + ACCEPT_TOKEN(aux_sym_foreach_statement_token1); END_STATE(); - case 1299: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(877); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1357: + ACCEPT_TOKEN(aux_sym_foreach_statement_token1); + if (lookahead == '-') ADVANCE(413); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1300: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(899); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1358: + ACCEPT_TOKEN(aux_sym_foreach_statement_token2); END_STATE(); - case 1301: - ACCEPT_TOKEN(sym_command_parameter); + case 1359: + ACCEPT_TOKEN(aux_sym_for_statement_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == 'e') ADVANCE(1499); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1302: - ACCEPT_TOKEN(sym_command_parameter); + case 1360: + ACCEPT_TOKEN(aux_sym_for_statement_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == 'e') ADVANCE(232); END_STATE(); - case 1303: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(867); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1361: + ACCEPT_TOKEN(aux_sym_for_statement_token2); END_STATE(); - case 1304: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(884); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1362: + ACCEPT_TOKEN(aux_sym_while_statement_token1); END_STATE(); - case 1305: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(886); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1363: + ACCEPT_TOKEN(aux_sym_while_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1306: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1477); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1364: + ACCEPT_TOKEN(aux_sym_do_statement_token1); END_STATE(); - case 1307: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1361); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1365: + ACCEPT_TOKEN(aux_sym_do_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1308: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1344); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1366: + ACCEPT_TOKEN(aux_sym_do_statement_token2); END_STATE(); - case 1309: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1412); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1367: + ACCEPT_TOKEN(aux_sym_function_statement_token1); + if (lookahead == '-') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1310: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1393); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1368: + ACCEPT_TOKEN(aux_sym_function_statement_token2); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1311: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1369: + ACCEPT_TOKEN(aux_sym_function_statement_token3); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1312: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1394); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1370: + ACCEPT_TOKEN(aux_sym_flow_control_statement_token1); + if (lookahead == '-') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1313: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1297); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1348); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1371: + ACCEPT_TOKEN(aux_sym_flow_control_statement_token2); + if (lookahead == '-') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1314: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1343); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1345); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1390); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1372: + ACCEPT_TOKEN(aux_sym_flow_control_statement_token3); + if (lookahead == '-') ADVANCE(1669); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1315: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(895); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1373: + ACCEPT_TOKEN(aux_sym_flow_control_statement_token4); + if (lookahead == '-') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1316: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(861); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1374: + ACCEPT_TOKEN(aux_sym_flow_control_statement_token5); + if (lookahead == '-') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1317: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(879); - if (lookahead == '-' || - lookahead == '?' || + case 1375: + ACCEPT_TOKEN(sym_label); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1375); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1318: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(900); - if (lookahead == '-' || - lookahead == '?' || + case 1376: + ACCEPT_TOKEN(sym_label); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1376); END_STATE(); - case 1319: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(865); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1377: + ACCEPT_TOKEN(aux_sym_trap_statement_token1); + if (lookahead == '-') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1320: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(885); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1378: + ACCEPT_TOKEN(aux_sym_try_statement_token1); + if (lookahead == '-') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1321: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1438); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1379: + ACCEPT_TOKEN(aux_sym_catch_clause_token1); END_STATE(); - case 1322: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1358); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1380: + ACCEPT_TOKEN(aux_sym_catch_clause_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1323: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1346); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1381: + ACCEPT_TOKEN(aux_sym_finally_clause_token1); END_STATE(); - case 1324: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1363); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1382: + ACCEPT_TOKEN(aux_sym_finally_clause_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1325: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1364); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1383: + ACCEPT_TOKEN(aux_sym_data_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1326: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1366); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1384: + ACCEPT_TOKEN(aux_sym_data_commands_allowed_token1); END_STATE(); - case 1327: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1419); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1385: + ACCEPT_TOKEN(aux_sym_inlinescript_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1328: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1368); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1386: + ACCEPT_TOKEN(aux_sym_parallel_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1329: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1420); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1387: + ACCEPT_TOKEN(aux_sym_sequence_statement_token1); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1330: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1369); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1388: + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 1331: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1421); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1389: + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 1332: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1370); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1390: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == '#') ADVANCE(529); + if (lookahead == '<') ADVANCE(1391); + if (lookahead == '@') ADVANCE(1395); + if (lookahead == '`') ADVANCE(49); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1390); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead)) ADVANCE(1397); END_STATE(); - case 1333: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1427); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1391: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == '#') ADVANCE(1393); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + lookahead != '`') ADVANCE(1397); END_STATE(); - case 1334: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1392: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == '#') ADVANCE(1392); + if (lookahead == '>') ADVANCE(536); + if (('"' <= lookahead && lookahead <= '$') || + lookahead == '`') ADVANCE(171); + if (lookahead != 0) ADVANCE(1393); END_STATE(); - case 1335: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1341); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1393: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == '#') ADVANCE(1392); + if (lookahead == '`') ADVANCE(103); + if (('"' <= lookahead && lookahead <= '$')) ADVANCE(171); + if (lookahead != 0) ADVANCE(1393); END_STATE(); - case 1336: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1342); - if (lookahead == '-' || - lookahead == '?' || + case 1394: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == ':') ADVANCE(1396); + if (lookahead == '?') ADVANCE(1210); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1207); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1337: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1296); - if (lookahead == '-' || - lookahead == '?' || + case 1395: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + ADVANCE_MAP( + '?', 1210, + 'G', 1093, + 'g', 1093, + 'L', 1099, + 'l', 1099, + 'P', 1101, + 'p', 1101, + 'S', 1084, + 's', 1084, + 'U', 1104, + 'u', 1104, + 'W', 1098, + 'w', 1098, + ); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1109); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1338: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1298); - if (lookahead == '-' || - lookahead == '?' || + case 1396: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead == '?') ADVANCE(1210); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1207); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(1397); END_STATE(); - case 1339: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1299); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1397: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(1397); END_STATE(); - case 1340: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1300); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1398: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token2); END_STATE(); - case 1341: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1302); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1399: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token2); + if (lookahead == '\n') ADVANCE(1398); + if (lookahead == '\r') ADVANCE(50); END_STATE(); - case 1342: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1304); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1400: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token3); END_STATE(); - case 1343: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(902); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(903); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1401: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token3); + if (lookahead == '\n') ADVANCE(1402); END_STATE(); - case 1344: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1478); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1402: + ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token3); + if (lookahead == '`') ADVANCE(49); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(1390); END_STATE(); - case 1345: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1327); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1403: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE2); END_STATE(); - case 1346: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1284); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1404: + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 1347: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1295); - if (lookahead == '-' || - lookahead == '?' || + case 1405: + ACCEPT_TOKEN(anon_sym_DOLLAR2); + ADVANCE_MAP( + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '`', 212, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, + ); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 1348: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1249); - if (lookahead == '-' || - lookahead == '?' || + case 1406: + ACCEPT_TOKEN(anon_sym_DOLLAR2); + ADVANCE_MAP( + '$', 968, + '(', 1799, + '?', 974, + '^', 971, + '_', 977, + '{', 502, + 'G', 994, + 'g', 994, + 'L', 1000, + 'l', 1000, + 'P', 1002, + 'p', 1002, + 'S', 985, + 's', 985, + 'U', 1005, + 'u', 1005, + 'W', 999, + 'w', 999, + ); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1010); END_STATE(); - case 1349: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1308); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1407: + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1350: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1349); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1408: + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(1403); END_STATE(); - case 1351: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1329); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1409: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1570, + 'c', 1570, + 'D', 1489, + 'd', 1489, + 'E', 1586, + 'e', 1586, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1497, + 'p', 1497, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1409, + 0x200b, 1409, + 0x2060, 1409, + 0xfeff, 1409, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1352: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1331); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1410: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1570, + 'c', 1570, + 'D', 1489, + 'd', 1489, + 'E', 1586, + 'e', 1586, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1509, + 'p', 1509, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1410, + 0x200b, 1410, + 0x2060, 1410, + 0xfeff, 1410, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1353: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1254); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1411: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1570, + 'c', 1570, + 'D', 1489, + 'd', 1489, + 'E', 1586, + 'e', 1586, + 'F', 1552, + 'f', 1552, + 'I', 1539, + 'i', 1539, + 'P', 1509, + 'p', 1509, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1411, + 0x200b, 1411, + 0x2060, 1411, + 0xfeff, 1411, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1354: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1257); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1412: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1570, + 'c', 1570, + 'D', 1489, + 'd', 1489, + 'E', 1575, + 'e', 1575, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1509, + 'p', 1509, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1412, + 0x200b, 1412, + 0x2060, 1412, + 0xfeff, 1412, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1355: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1356); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1413: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1570, + 'c', 1570, + 'D', 1489, + 'd', 1489, + 'E', 1582, + 'e', 1582, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1509, + 'p', 1509, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1413, + 0x200b, 1413, + 0x2060, 1413, + 0xfeff, 1413, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1356: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1251); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1414: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1618, + 'b', 1618, + 'C', 1505, + 'c', 1505, + 'D', 1489, + 'd', 1489, + 'E', 1586, + 'e', 1586, + 'F', 1552, + 'f', 1552, + 'I', 1539, + 'i', 1539, + 'P', 1509, + 'p', 1509, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1414, + 0x200b, 1414, + 0x2060, 1414, + 0xfeff, 1414, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1357: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1280); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(853); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1415: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1525, + 'b', 1525, + 'C', 1570, + 'c', 1570, + 'D', 1488, + 'd', 1488, + 'E', 1590, + 'e', 1590, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1496, + 'p', 1496, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1415, + 0x200b, 1415, + 0x2060, 1415, + 0xfeff, 1415, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1358: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1416: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + ':', 1663, + 'B', 1525, + 'b', 1525, + 'C', 1570, + 'c', 1570, + 'D', 1488, + 'd', 1488, + 'E', 1590, + 'e', 1590, + 'F', 1551, + 'f', 1551, + 'I', 1539, + 'i', 1539, + 'P', 1508, + 'p', 1508, + 'R', 1528, + 'r', 1528, + 'S', 1521, + 's', 1521, + 'T', 1548, + 't', 1548, + 'W', 1547, + 'w', 1547, + 0xa0, 1416, + 0x200b, 1416, + 0x2060, 1416, + 0xfeff, 1416, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1359: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(898); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1417: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 829, + '0', 551, + 'B', 1625, + 'b', 1625, + 'C', 1579, + 'c', 1579, + 'E', 1659, + 'e', 1659, + 'F', 1608, + 'f', 1608, + 'I', 1540, + 'i', 1540, + 'R', 1538, + 'r', 1538, + 'T', 1550, + 't', 1550, + 0xa0, 1417, + 0x200b, 1417, + 0x2060, 1417, + 0xfeff, 1417, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(552); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1360: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1281); - if (lookahead == '-' || - lookahead == '?' || + case 1418: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 1470, + '0', 539, + 'B', 1457, + 'b', 1457, + 'C', 1447, + 'c', 1447, + 'E', 1469, + 'e', 1469, + 'F', 1465, + 'f', 1465, + 'I', 1441, + 'i', 1441, + 'R', 1438, + 'r', 1438, + 'T', 1442, + 't', 1442, + 0xa0, 1418, + 0x200b, 1418, + 0x2060, 1418, + 0xfeff, 1418, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(540); + if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1361: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1413); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1419: + ACCEPT_TOKEN(aux_sym_command_name_token1); + ADVANCE_MAP( + '#', 532, + '.', 830, + 'B', 1625, + 'b', 1625, + 'C', 1579, + 'c', 1579, + 'E', 1659, + 'e', 1659, + 'F', 1608, + 'f', 1608, + 'I', 1540, + 'i', 1540, + 'R', 1538, + 'r', 1538, + 'T', 1550, + 't', 1550, + 0xa0, 1419, + 0x200b, 1419, + 0x2060, 1419, + 0xfeff, 1419, + ); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1362: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1378); - if (lookahead == '-' || + case 1420: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '+') ADVANCE(500); + if (lookahead == '-') ADVANCE(1732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(589); + if (lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1363: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1405); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1421: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1364: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1406); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1422: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1675); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1365: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1283); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1423: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1366: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1407); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1424: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1367: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1426); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1425: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1368: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1408); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1426: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1669); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1369: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1427: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1370: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1410); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1428: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1371: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1432); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1429: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1372: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1433); - if (lookahead == '-' || + case 1430: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); + END_STATE(); + case 1431: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(542); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1373: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1434); - if (lookahead == '-' || + case 1432: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(590); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1374: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1435); - if (lookahead == '-' || + case 1433: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'b') ADVANCE(575); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1375: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1436); - if (lookahead == '-' || + case 1434: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1459); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1376: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1355); - if (lookahead == '-' || + case 1435: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1455); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1474); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1377: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1322); - if (lookahead == '-' || + case 1436: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1446); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1378: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1415); - if (lookahead == '-' || + case 1437: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1463); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1379: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); - if (lookahead == '-' || + case 1438: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1461); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1380: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1401); - if (lookahead == '-' || + case 1439: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1436); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1381: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1404); - if (lookahead == '-' || + case 1440: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1481); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1382: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1418); - if (lookahead == '-' || + case 1441: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1473); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1383: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1422); - if (lookahead == '-' || + case 1442: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1456); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1435); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1384: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1371); - if (lookahead == '-' || + case 1443: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1454); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1385: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1372); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1386: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1373); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1387: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1374); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1388: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1375); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1389: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1345); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1390: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1391); - if (lookahead == '-' || + case 1444: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1450); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1391: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1381); - if (lookahead == '-' || + case 1445: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1464); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1392: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1351); - if (lookahead == '-' || + case 1446: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1477); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1393: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1353); - if (lookahead == '-' || + case 1447: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1434); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1449); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1394: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1354); - if (lookahead == '-' || + case 1448: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1437); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1395: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(869); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1246); - if (lookahead == '-' || + case 1449: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1462); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1396: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(855); - if (lookahead == '-' || + case 1450: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1467); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1397: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(873); - if (lookahead == '-' || + case 1451: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1480); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1398: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1768); - if (lookahead == '-' || + case 1452: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1482); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1399: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1771); - if (lookahead == '-' || + case 1453: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1468); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1400: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1769); - if (lookahead == '-' || + case 1454: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1452); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1401: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1772); - if (lookahead == '-' || + case 1455: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1476); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1402: - ACCEPT_TOKEN(sym_command_parameter); + case 1456: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1248); - if (lookahead == '-' || + lookahead == 'r') ADVANCE(1453); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1403: - ACCEPT_TOKEN(sym_command_parameter); + case 1457: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1282); - if (lookahead == '-' || + lookahead == 'r') ADVANCE(1439); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1404: - ACCEPT_TOKEN(sym_command_parameter); + case 1458: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1431); - if (lookahead == '-' || + lookahead == 'r') ADVANCE(1451); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1405: - ACCEPT_TOKEN(sym_command_parameter); + case 1459: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); if (lookahead == 'S' || - lookahead == 's') ADVANCE(866); - if (lookahead == '-' || + lookahead == 's') ADVANCE(1460); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1406: - ACCEPT_TOKEN(sym_command_parameter); + case 1460: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); if (lookahead == 'S' || - lookahead == 's') ADVANCE(854); - if (lookahead == '-' || + lookahead == 's') ADVANCE(1478); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1407: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(872); - if (lookahead == '-' || + case 1461: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1466); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1408: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(897); - if (lookahead == '-' || + case 1462: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1444); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1409: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(863); - if (lookahead == '-' || + case 1463: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1443); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1410: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(883); - if (lookahead == '-' || + case 1464: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1475); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1411: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1309); - if (lookahead == '-' || + case 1465: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1448); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1412: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1307); - if (lookahead == '-' || + case 1466: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1458); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1413: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1333); - if (lookahead == '-' || + case 1467: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1440); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1414: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1795); - if (lookahead == '-' || + case 1468: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1479); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1415: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1799); - if (lookahead == '-' || + case 1469: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1445); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1416: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1278); - if (lookahead == '-' || + case 1470: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); + if (lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); - END_STATE(); - case 1417: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1476); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1418: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(889); - if (lookahead == '-' || + case 1471: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + if (lookahead == '.' || lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('G' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1419: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(904); - if (lookahead == '-' || + case 1472: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1733); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1420: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(868); - if (lookahead == '-' || + case 1473: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1680); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1421: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(890); - if (lookahead == '-' || + case 1474: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1676); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1422: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1793); - if (lookahead == '-' || + case 1475: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1674); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1423: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1265); - if (lookahead == '-' || + case 1476: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1678); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1424: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1266); - if (lookahead == '-' || + case 1477: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1666); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1425: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1267); - if (lookahead == '-' || + case 1478: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1684); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1426: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1253); - if (lookahead == '-' || + case 1479: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1670); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1427: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1321); - if (lookahead == '-' || + case 1480: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1672); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1428: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1268); - if (lookahead == '-' || + case 1481: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1668); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1429: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1270); - if (lookahead == '-' || + case 1482: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(1682); + if (lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1472); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '"' < lookahead) && + (lookahead < '$' || '9' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '?' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1664); END_STATE(); - case 1430: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1272); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1483: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '-') ADVANCE(413); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1431: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1311); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1484: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'b') ADVANCE(569); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1432: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1256); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1485: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'b') ADVANCE(601); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1433: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1259); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1486: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'b') ADVANCE(584); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1434: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1261); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1487: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == '+' || + lookahead == '-') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(597); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1435: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1263); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1488: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1643); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1365); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1595); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1436: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1264); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1489: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1643); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1365); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1437: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1279); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1490: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1630); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1438: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1306); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1491: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1609); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1378); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1439: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1474); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1492: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1383); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1440: - ACCEPT_TOKEN(sym_command_parameter); - if (lookahead == '-' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + case 1493: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1441: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token1); + case 1494: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1442: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '|') ADVANCE(1452); + case 1495: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1443: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token2); - if (lookahead == '&') ADVANCE(1452); - if (lookahead == '\n' || - lookahead == '|') ADVANCE(1444); - if (lookahead != 0) ADVANCE(1443); + case 1496: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1619); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1607); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1444: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token2); - if (lookahead != 0 && - lookahead != '&') ADVANCE(1444); + case 1497: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1445: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '"') ADVANCE(1447); - if (lookahead == '#') ADVANCE(465); - if (lookahead == '&') ADVANCE(1443); - if (lookahead == ')') ADVANCE(1457); - if (lookahead == '<') ADVANCE(1448); - if (lookahead == '`') ADVANCE(1452); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1445); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '|') ADVANCE(1452); + case 1498: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1584); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1446: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '"') ADVANCE(1447); - if (lookahead == '#') ADVANCE(465); - if (lookahead == '&') ADVANCE(1443); - if (lookahead == '<') ADVANCE(1448); - if (lookahead == '`') ADVANCE(1452); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1446); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '|') ADVANCE(1452); + case 1499: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1447: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '"') ADVANCE(1442); - if (lookahead == '\n' || - lookahead == '|') ADVANCE(105); - if (lookahead != 0) ADVANCE(1447); + case 1500: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1448: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '#') ADVANCE(1450); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '|') ADVANCE(1452); + case 1501: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1610); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1422); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1449: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '#') ADVANCE(1449); - if (lookahead == '>') ADVANCE(472); - if (lookahead == '\n' || - lookahead == '|') ADVANCE(117); - if (lookahead != 0) ADVANCE(1450); + case 1502: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1450: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '#') ADVANCE(1449); - if (lookahead == '`') ADVANCE(1451); - if (lookahead == '\n' || - lookahead == '|') ADVANCE(117); - if (lookahead != 0) ADVANCE(1450); + case 1503: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1451: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead == '\n' || - lookahead == '|') ADVANCE(117); - if (lookahead != 0) ADVANCE(1450); + case 1504: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1513); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1452: - ACCEPT_TOKEN(aux_sym__verbatim_command_argument_chars_token3); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '|') ADVANCE(1452); + case 1505: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1646); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1490); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1453: - ACCEPT_TOKEN(anon_sym_SEMI); + case 1506: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1622); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1454: - ACCEPT_TOKEN(aux_sym_param_block_token1); + case 1507: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1632); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1455: - ACCEPT_TOKEN(anon_sym_LPAREN); + case 1508: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1623); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1607); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1456: - ACCEPT_TOKEN(anon_sym_RPAREN); + case 1509: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1457: - ACCEPT_TOKEN(anon_sym_RPAREN); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '|') ADVANCE(1452); + case 1510: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1458: - ACCEPT_TOKEN(anon_sym_COMMA); + case 1511: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1545); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1459: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); + case 1512: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1460: - ACCEPT_TOKEN(aux_sym_block_name_token1); + case 1513: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1461: - ACCEPT_TOKEN(aux_sym_block_name_token2); + case 1514: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1462: - ACCEPT_TOKEN(aux_sym_block_name_token3); + case 1515: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1621); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1463: - ACCEPT_TOKEN(aux_sym_block_name_token4); + case 1516: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1524); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1464: - ACCEPT_TOKEN(anon_sym_LBRACE); + case 1517: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1537); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1465: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '|' && - lookahead != '}') ADVANCE(1212); + case 1518: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1645); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1466: - ACCEPT_TOKEN(anon_sym_RBRACE); + case 1519: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1648); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 1467: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - END_STATE(); - case 1468: - ACCEPT_TOKEN(aux_sym_elseif_clause_token1); - END_STATE(); - case 1469: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - END_STATE(); - case 1470: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(263); - END_STATE(); - case 1471: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(689); - END_STATE(); - case 1472: - ACCEPT_TOKEN(aux_sym_else_clause_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1599); - END_STATE(); - case 1473: - ACCEPT_TOKEN(aux_sym_switch_statement_token1); - END_STATE(); - case 1474: - ACCEPT_TOKEN(aux_sym_switch_parameter_token1); - END_STATE(); - case 1475: - ACCEPT_TOKEN(aux_sym_switch_parameter_token2); - END_STATE(); - case 1476: - ACCEPT_TOKEN(aux_sym_switch_parameter_token3); - END_STATE(); - case 1477: - ACCEPT_TOKEN(aux_sym_switch_parameter_token4); - END_STATE(); - case 1478: - ACCEPT_TOKEN(aux_sym_switch_parameter_token5); - END_STATE(); - case 1479: - ACCEPT_TOKEN(aux_sym_switch_condition_token1); - END_STATE(); - case 1480: - ACCEPT_TOKEN(aux_sym_foreach_statement_token1); - END_STATE(); - case 1481: - ACCEPT_TOKEN(aux_sym_foreach_statement_token1); - if (lookahead == '-') ADVANCE(357); - END_STATE(); - case 1482: - ACCEPT_TOKEN(aux_sym_foreach_statement_token2); - END_STATE(); - case 1483: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(189); - END_STATE(); - case 1484: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1565); - END_STATE(); - case 1485: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(662); - END_STATE(); - case 1486: - ACCEPT_TOKEN(anon_sym_LF); - ADVANCE_MAP( - '\n', 1486, - '-', 1781, - 'F', 1653, - 'f', 1653, - 0xa0, 1530, - 0x200b, 1530, - 0x2060, 1530, - 0xfeff, 1530, - ); - END_STATE(); - case 1487: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(1487); - END_STATE(); - case 1488: - ACCEPT_TOKEN(aux_sym_while_statement_token1); - END_STATE(); - case 1489: - ACCEPT_TOKEN(aux_sym_do_statement_token1); - END_STATE(); - case 1490: - ACCEPT_TOKEN(aux_sym_do_statement_token2); - END_STATE(); - case 1491: - ACCEPT_TOKEN(aux_sym_function_statement_token1); - END_STATE(); - case 1492: - ACCEPT_TOKEN(aux_sym_function_statement_token2); - END_STATE(); - case 1493: - ACCEPT_TOKEN(aux_sym_function_statement_token3); - END_STATE(); - case 1494: - ACCEPT_TOKEN(aux_sym_flow_control_statement_token1); - END_STATE(); - case 1495: - ACCEPT_TOKEN(aux_sym_flow_control_statement_token2); - END_STATE(); - case 1496: - ACCEPT_TOKEN(aux_sym_flow_control_statement_token3); - END_STATE(); - case 1497: - ACCEPT_TOKEN(aux_sym_flow_control_statement_token4); - END_STATE(); - case 1498: - ACCEPT_TOKEN(aux_sym_flow_control_statement_token5); - END_STATE(); - case 1499: - ACCEPT_TOKEN(sym_label); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1499); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1500: - ACCEPT_TOKEN(sym_label); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1500); - END_STATE(); - case 1501: - ACCEPT_TOKEN(aux_sym_trap_statement_token1); - END_STATE(); - case 1502: - ACCEPT_TOKEN(aux_sym_try_statement_token1); - END_STATE(); - case 1503: - ACCEPT_TOKEN(aux_sym_catch_clause_token1); - END_STATE(); - case 1504: - ACCEPT_TOKEN(aux_sym_finally_clause_token1); - END_STATE(); - case 1505: - ACCEPT_TOKEN(aux_sym_data_statement_token1); - END_STATE(); - case 1506: - ACCEPT_TOKEN(aux_sym_data_commands_allowed_token1); - END_STATE(); - case 1507: - ACCEPT_TOKEN(aux_sym_inlinescript_statement_token1); - END_STATE(); - case 1508: - ACCEPT_TOKEN(aux_sym_parallel_statement_token1); - END_STATE(); - case 1509: - ACCEPT_TOKEN(aux_sym_sequence_statement_token1); - END_STATE(); - case 1510: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 1511: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 1512: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == '#') ADVANCE(464); - if (lookahead == '<') ADVANCE(1513); - if (lookahead == '@') ADVANCE(1517); - if (lookahead == '`') ADVANCE(25); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1512); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead)) ADVANCE(1519); - END_STATE(); - case 1513: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == '#') ADVANCE(1515); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - lookahead != '`') ADVANCE(1519); - END_STATE(); - case 1514: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == '#') ADVANCE(1514); - if (lookahead == '>') ADVANCE(471); - if (('"' <= lookahead && lookahead <= '$') || - lookahead == '`') ADVANCE(117); - if (lookahead != 0) ADVANCE(1515); - END_STATE(); - case 1515: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == '#') ADVANCE(1514); - if (lookahead == '`') ADVANCE(444); - if (('"' <= lookahead && lookahead <= '$')) ADVANCE(117); - if (lookahead != 0) ADVANCE(1515); - END_STATE(); - case 1516: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == ':') ADVANCE(1518); - if (lookahead == '?') ADVANCE(1149); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1146); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); - END_STATE(); - case 1517: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - ADVANCE_MAP( - '?', 1149, - 'G', 1032, - 'g', 1032, - 'L', 1038, - 'l', 1038, - 'P', 1040, - 'p', 1040, - 'S', 1023, - 's', 1023, - 'U', 1043, - 'u', 1043, - 'W', 1037, - 'w', 1037, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1048); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); - END_STATE(); - case 1518: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead == '?') ADVANCE(1149); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1146); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(1519); - END_STATE(); - case 1519: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(1519); - END_STATE(); - case 1520: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token2); + case 1520: + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1338); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1521: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token2); - if (lookahead == '\n') ADVANCE(1520); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1613); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1522: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token3); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1363); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1523: - ACCEPT_TOKEN(aux_sym__expandable_string_literal_immediate_token3); - if (lookahead == '`') ADVANCE(25); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1512); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1371); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1524: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE2); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1387); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1525: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1543); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '`', 158, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1346); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - ADVANCE_MAP( - '$', 907, - '(', 1811, - '?', 913, - '^', 910, - '_', 916, - '{', 443, - 'G', 933, - 'g', 933, - 'L', 939, - 'l', 939, - 'P', 941, - 'p', 941, - 'S', 924, - 's', 924, - 'U', 944, - 'u', 944, - 'W', 938, - 'w', 938, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1347); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1639); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(1524); + ACCEPT_TOKEN(aux_sym_command_name_token1); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1495); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1530: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '\n', 1486, - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - 'F', 1653, - 'f', 1653, - 0xa0, 1530, - 0x200b, 1530, - 0x2060, 1530, - 0xfeff, 1530, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1633); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1623, - 'c', 1623, - 'D', 1556, - 'd', 1556, - 'E', 1641, - 'e', 1641, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1563, - 'p', 1563, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1531, - 0x200b, 1531, - 0x2060, 1531, - 0xfeff, 1531, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1623, - 'c', 1623, - 'D', 1556, - 'd', 1556, - 'E', 1641, - 'e', 1641, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1572, - 'p', 1572, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1532, - 0x200b, 1532, - 0x2060, 1532, - 0xfeff, 1532, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1593); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1623, - 'c', 1623, - 'D', 1556, - 'd', 1556, - 'E', 1641, - 'e', 1641, - 'F', 1609, - 'f', 1609, - 'I', 1598, - 'i', 1598, - 'P', 1572, - 'p', 1572, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1533, - 0x200b, 1533, - 0x2060, 1533, - 0xfeff, 1533, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1534: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1623, - 'c', 1623, - 'D', 1556, - 'd', 1556, - 'E', 1628, - 'e', 1628, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1572, - 'p', 1572, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1534, - 0x200b, 1534, - 0x2060, 1534, - 0xfeff, 1534, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1500); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1535: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1623, - 'c', 1623, - 'D', 1556, - 'd', 1556, - 'E', 1634, - 'e', 1634, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1572, - 'p', 1572, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1535, - 0x200b, 1535, - 0x2060, 1535, - 0xfeff, 1535, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1428); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1662, - 'b', 1662, - 'C', 1569, - 'c', 1569, - 'D', 1556, - 'd', 1556, - 'E', 1641, - 'e', 1641, - 'F', 1609, - 'f', 1609, - 'I', 1598, - 'i', 1598, - 'P', 1572, - 'p', 1572, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1536, - 0x200b, 1536, - 0x2060, 1536, - 0xfeff, 1536, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1504); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1587, - 'b', 1587, - 'C', 1623, - 'c', 1623, - 'D', 1555, - 'd', 1555, - 'E', 1643, - 'e', 1643, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1562, - 'p', 1562, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1537, - 0x200b, 1537, - 0x2060, 1537, - 0xfeff, 1537, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1631); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - ':', 1694, - 'B', 1587, - 'b', 1587, - 'C', 1623, - 'c', 1623, - 'D', 1555, - 'd', 1555, - 'E', 1643, - 'e', 1643, - 'F', 1608, - 'f', 1608, - 'I', 1598, - 'i', 1598, - 'P', 1571, - 'p', 1571, - 'R', 1589, - 'r', 1589, - 'S', 1586, - 's', 1586, - 'T', 1607, - 't', 1607, - 'W', 1606, - 'w', 1606, - 0xa0, 1538, - 0x200b, 1538, - 0x2060, 1538, - 0xfeff, 1538, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '-', 1781, - '.', 773, - '0', 487, - 'F', 1653, - 'f', 1653, - 0xa0, 1539, - 0x200b, 1539, - 0x2060, 1539, - 0xfeff, 1539, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1342); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '#') ADVANCE(468); - if (lookahead == '.') ADVANCE(1546); - if (lookahead == '0') ADVANCE(475); - if (lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1540); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(476); - if (lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1421); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_command_name_token1); - ADVANCE_MAP( - '#', 468, - '.', 774, - 'F', 1653, - 'f', 1653, - 0xa0, 1541, - 0x200b, 1541, - 0x2060, 1541, - 0xfeff, 1541, - ); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1344); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '+') ADVANCE(441); - if (lookahead == '-') ADVANCE(1743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(525); - if (lookahead == '.' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'b') ADVANCE(478); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'b') ADVANCE(526); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == 'b') ADVANCE(511); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1357); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(524); - if (lookahead == '.' || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1380); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(509); - if (lookahead == '.' || - lookahead == '?' || - ('G' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1556); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(1744); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '"' < lookahead) && - (lookahead < '$' || '9' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '?' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1615); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1491); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '-') ADVANCE(357); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1483); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'b') ADVANCE(505); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1626); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1501); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'b') ADVANCE(537); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1574); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1614); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'b') ADVANCE(520); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1573); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1614); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == '+' || - lookahead == '-') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1605); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1505); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1681); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1489); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1681); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1489); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1572); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1671); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1598); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1654); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1502); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1637); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1632); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1640); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1637); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1512); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1619); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1642); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1663); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1663); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1606); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1636); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1599); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1370); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1630); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1425); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1386); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1684); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1557); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1644); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + lookahead == 'l') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1666); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1490); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1667); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1555); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1667); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1522); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1603); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1641); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1503); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1604); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1641); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1650); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1531); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1602); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1665); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1603); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1507); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1601); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1576); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1463); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1636); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1650); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1488); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1753); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1495); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1332); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1657); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1616); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1650); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1587: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1601); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1518); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1469); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1373); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1367); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1472); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1520); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1561); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1673); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1644); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1516); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1530); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1494); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1427); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1672); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1429); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1467); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1624); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + lookahead == 'n') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1468); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1631); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1519); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1618); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1503); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1473); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1481); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1589); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1613); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + lookahead == 'o') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1659); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1517); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1627); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1661); + lookahead == 'o') ADVANCE(1627); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + lookahead == 'u') ADVANCE(1600); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1626); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1661); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1377); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1424); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1638); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1646); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1506); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1625); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1651); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1648); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1359); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1676); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1616: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1679); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1368); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1638); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1494); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1493); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1600); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1508); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1554); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1691); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1498); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1557); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1644); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1502); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1596); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1534); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1680); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1604); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1536); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1674); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1622); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1628); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1629); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1629); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1454); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1629); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1515); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1675); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1430); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1526); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1460); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1374); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1461); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1385); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1497); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1491); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1510); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1685); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1533); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1581); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1423); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1582); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1492); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1682); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1553); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1592); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1514); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1688); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1689); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1690); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1640); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1532); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1668); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1523); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1501); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1677); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1535); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1570); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1372); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1686); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1369); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1492); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1426); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1620); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1382); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1484); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(592); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(578); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1375); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1639); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1664); END_STATE(); case 1665: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token2); END_STATE(); case 1666: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1564); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token2); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1667: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token3); END_STATE(); case 1668: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1596); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token3); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1669: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1765); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token4); END_STATE(); case 1670: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1462); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token4); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1671: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1669); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token5); END_STATE(); case 1672: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1670); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token5); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1673: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token6); END_STATE(); case 1674: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token6); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1675: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token7); END_STATE(); case 1676: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1498); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token7); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1677: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1507); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token8); END_STATE(); case 1678: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token8); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1679: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1573); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token9); END_STATE(); case 1680: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1595); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token9); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1681: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1554); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token10); END_STATE(); case 1682: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1614); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token10); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1683: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1610); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token11); END_STATE(); case 1684: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token11); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '\\' || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); case 1685: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '\r') ADVANCE(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == '"' || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ',' || + lookahead == ';' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(171); + if (lookahead != 0) ADVANCE(1691); END_STATE(); case 1686: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1594); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1687: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1664); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1688: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1689: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1496); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1690: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1493); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1691: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1504); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1692: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(528); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1693: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(514); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1694: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1499); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1695: - ACCEPT_TOKEN(aux_sym_command_name_token1); - if ((!eof && set_contains(aux_sym_command_name_token1_character_set_1, 11, lookahead))) ADVANCE(1695); - END_STATE(); - case 1696: - ACCEPT_TOKEN(aux_sym_command_name_token2); + ACCEPT_TOKEN(aux_sym_command_name_token12); ADVANCE_MAP( - '#', 1715, - '*', 1708, - '-', 1705, - '1', 1709, - '2', 1710, - '3', 1711, - '4', 1712, - '5', 1713, - '6', 1714, - ':', 1754, - '<', 828, - '>', 786, - '`', 1719, - 0xa0, 1696, - 0x200b, 1696, - 0x2060, 1696, - 0xfeff, 1696, + '#', 1705, + '*', 1698, + '-', 1695, + '1', 1699, + '2', 1700, + '3', 1701, + '4', 1702, + '5', 1703, + '6', 1704, + ':', 1741, + '<', 885, + '>', 843, + '`', 1708, + 0xa0, 1686, + 0x200b, 1686, + 0x2060, 1686, + 0xfeff, 1686, ); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || @@ -22865,28 +23086,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[') && lookahead != '&' && lookahead != ',' && - (lookahead < ':' || '<' < lookahead)) ADVANCE(1719); + (lookahead < ':' || '<' < lookahead)) ADVANCE(1708); END_STATE(); - case 1697: - ACCEPT_TOKEN(aux_sym_command_name_token2); + case 1687: + ACCEPT_TOKEN(aux_sym_command_name_token12); ADVANCE_MAP( - '#', 1715, - '*', 1708, - '-', 1707, - '1', 1709, - '2', 1710, - '3', 1711, - '4', 1712, - '5', 1713, - '6', 1714, - ':', 1754, - '<', 828, - '>', 786, - '`', 1719, - 0xa0, 1697, - 0x200b, 1697, - 0x2060, 1697, - 0xfeff, 1697, + '#', 1705, + '*', 1698, + '-', 1697, + '1', 1699, + '2', 1700, + '3', 1701, + '4', 1702, + '5', 1703, + '6', 1704, + ':', 1741, + '<', 885, + '>', 843, + '`', 1708, + 0xa0, 1687, + 0x200b, 1687, + 0x2060, 1687, + 0xfeff, 1687, ); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || @@ -22894,17 +23115,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[') && lookahead != '&' && lookahead != ',' && - (lookahead < ':' || '<' < lookahead)) ADVANCE(1719); + (lookahead < ':' || '<' < lookahead)) ADVANCE(1708); END_STATE(); - case 1698: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '#') ADVANCE(1715); - if (lookahead == '<') ADVANCE(1699); - if (lookahead == '`') ADVANCE(1719); + case 1688: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '#') ADVANCE(1705); + if (lookahead == '<') ADVANCE(1689); + if (lookahead == '`') ADVANCE(1708); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1698); + lookahead == 0xfeff) ADVANCE(1688); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -22913,11 +23134,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '&' && lookahead != ',' && lookahead != ';' && - lookahead != '<') ADVANCE(1719); + lookahead != '<') ADVANCE(1708); END_STATE(); - case 1699: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '#') ADVANCE(1701); + case 1689: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '#') ADVANCE(1691); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -22926,67 +23147,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1700: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '>') ADVANCE(1719); + case 1690: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '#') ADVANCE(1690); + if (lookahead == '>') ADVANCE(1708); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '"' || ('&' <= lookahead && lookahead <= ')') || lookahead == ',' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(117); - if (lookahead != 0) ADVANCE(1701); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(171); + if (lookahead != 0) ADVANCE(1691); END_STATE(); - case 1701: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '`') ADVANCE(1717); + case 1691: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '#') ADVANCE(1690); + if (lookahead == '`') ADVANCE(1685); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '"' || ('&' <= lookahead && lookahead <= ')') || lookahead == ',' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(117); - if (lookahead != 0) ADVANCE(1701); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(171); + if (lookahead != 0) ADVANCE(1691); END_STATE(); - case 1702: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '%') ADVANCE(1761); - if (lookahead == '-') ADVANCE(1706); + case 1692: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '%') ADVANCE(1748); + if (lookahead == '-') ADVANCE(1696); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '%' && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1703: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '%') ADVANCE(1716); - if (lookahead == '-') ADVANCE(1706); + case 1693: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '%') ADVANCE(1706); + if (lookahead == '-') ADVANCE(1696); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '%' && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1704: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '&') ADVANCE(139); + case 1694: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '&') ADVANCE(193); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || lookahead == '-' || @@ -22994,50 +23215,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '[' || lookahead == '`') && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1705: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '-') ADVANCE(1702); + case 1695: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '-') ADVANCE(1692); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1706: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '-') ADVANCE(1706); + case 1696: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '-') ADVANCE(1696); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1707: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '-') ADVANCE(1703); + case 1697: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '-') ADVANCE(1693); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1708: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(821); + case 1698: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(878); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23045,11 +23266,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1709: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(1704); + case 1699: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(1694); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23057,11 +23278,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1710: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(791); + case 1700: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(848); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23069,11 +23290,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1711: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(797); + case 1701: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(854); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23081,11 +23302,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1712: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(803); + case 1702: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(860); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23093,11 +23314,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1713: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(809); + case 1703: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(866); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23105,11 +23326,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1714: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (lookahead == '>') ADVANCE(815); + case 1704: + ACCEPT_TOKEN(aux_sym_command_name_token12); + if (lookahead == '>') ADVANCE(872); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23117,60 +23338,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1715: - ACCEPT_TOKEN(aux_sym_command_name_token2); + case 1705: + ACCEPT_TOKEN(aux_sym_command_name_token12); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '"' || ('&' <= lookahead && lookahead <= ')') || lookahead == ',' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(473); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(537); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1715); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1705); END_STATE(); - case 1716: - ACCEPT_TOKEN(aux_sym_command_name_token2); + case 1706: + ACCEPT_TOKEN(aux_sym_command_name_token12); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '"' || ('&' <= lookahead && lookahead <= ')') || lookahead == ',' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(1745); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(1734); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1716); - END_STATE(); - case 1717: - ACCEPT_TOKEN(aux_sym_command_name_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '"' || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ',' || - lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(117); - if (lookahead != 0) ADVANCE(1701); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1706); END_STATE(); - case 1718: - ACCEPT_TOKEN(aux_sym_command_name_token2); + case 1707: + ACCEPT_TOKEN(aux_sym_command_name_token12); if (lookahead == '-' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1718); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1707); if (((!eof && set_contains(sym_generic_token_character_set_1, 11, lookahead)) || lookahead == '$' || ('@' <= lookahead && lookahead <= '[')) && lookahead != '&' && lookahead != ',' && - lookahead != ';') ADVANCE(1719); + lookahead != ';') ADVANCE(1708); END_STATE(); - case 1719: - ACCEPT_TOKEN(aux_sym_command_name_token2); + case 1708: + ACCEPT_TOKEN(aux_sym_command_name_token12); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23178,21 +23390,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1720: + case 1709: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1721: + case 1710: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == '"') ADVANCE(589); + if (lookahead == '"') ADVANCE(655); END_STATE(); - case 1722: + case 1711: ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE); END_STATE(); - case 1723: + case 1712: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '%') ADVANCE(1759); + if (lookahead == '%') ADVANCE(1746); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23200,77 +23412,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1724: + case 1713: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1804); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '-') ADVANCE(1792); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1725: + case 1714: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1237); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '-') ADVANCE(1294); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1726: + case 1715: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1809); + if (lookahead == '-') ADVANCE(1797); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1727: + case 1716: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1723); + if (lookahead == '-') ADVANCE(1712); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1728: + case 1717: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '-') ADVANCE(1794); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1729: + case 1718: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '-') ADVANCE(1239); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '-') ADVANCE(1296); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1730: + case 1719: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(122); + if (lookahead == '>') ADVANCE(176); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23278,11 +23490,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1731: + case 1720: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(790); + if (lookahead == '>') ADVANCE(847); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23290,11 +23502,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1732: + case 1721: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(796); + if (lookahead == '>') ADVANCE(853); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23302,11 +23514,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1733: + case 1722: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(802); + if (lookahead == '>') ADVANCE(859); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23314,11 +23526,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1734: + case 1723: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(808); + if (lookahead == '>') ADVANCE(865); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23326,11 +23538,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1735: + case 1724: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == '>') ADVANCE(814); + if (lookahead == '>') ADVANCE(871); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23338,11 +23550,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1736: + case 1725: ACCEPT_TOKEN(sym_path_command_name_token); - if (lookahead == 'b') ADVANCE(536); + if (lookahead == 'b') ADVANCE(600); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23350,12 +23562,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1737: + case 1726: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1738); + lookahead == 'a') ADVANCE(1727); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23363,12 +23575,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('B' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1738: + case 1727: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1740); + lookahead == 'c') ADVANCE(1729); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23376,12 +23588,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1739: + case 1728: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1737); + lookahead == 'e') ADVANCE(1726); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23389,12 +23601,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1740: + case 1729: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1824); + lookahead == 'h') ADVANCE(1811); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23402,12 +23614,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1741: + case 1730: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1742); + lookahead == 'o') ADVANCE(1731); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23415,12 +23627,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1742: + case 1731: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1739); + lookahead == 'r') ADVANCE(1728); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -23428,20 +23640,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1743: + case 1732: ACCEPT_TOKEN(sym_path_command_name_token); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(595); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1744: + case 1733: ACCEPT_TOKEN(sym_path_command_name_token); if (lookahead == '-' || lookahead == '.' || @@ -23450,62 +23662,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1745: + case 1734: ACCEPT_TOKEN(sym_stop_parsing); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1745); + lookahead != '\n' && + lookahead != '\r') ADVANCE(1734); END_STATE(); - case 1746: + case 1735: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1746); - if (lookahead == '-') ADVANCE(1778); + if (lookahead == ' ') ADVANCE(1735); END_STATE(); - case 1747: + case 1736: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1747); - if (lookahead == '-') ADVANCE(1778); + if (lookahead == ' ') ADVANCE(1736); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1153); - END_STATE(); - case 1748: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1748); + lookahead == 0xfeff) ADVANCE(1215); END_STATE(); - case 1749: + case 1737: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1749); - if (lookahead == '-') ADVANCE(1784); + if (lookahead == ' ') ADVANCE(1737); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1154); + lookahead == 0xfeff) ADVANCE(1216); END_STATE(); - case 1750: + case 1738: ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1750); - if (lookahead == '-') ADVANCE(1781); + if (lookahead == ' ') ADVANCE(1738); if (lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(1155); - END_STATE(); - case 1751: - ACCEPT_TOKEN(anon_sym_SPACE); - if (lookahead == ' ') ADVANCE(1751); - if (lookahead == '-') ADVANCE(1784); + lookahead == 0xfeff) ADVANCE(1217); END_STATE(); - case 1752: + case 1739: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1753: + case 1740: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(1821); + if (lookahead == ':') ADVANCE(1809); END_STATE(); - case 1754: + case 1741: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -23514,9 +23714,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || ')' < lookahead) && lookahead != ',' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1719); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1708); END_STATE(); - case 1755: + case 1742: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -23526,95 +23726,98 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1756: + case 1743: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 1757: + case 1744: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(783); + if (lookahead == '=') ADVANCE(839); END_STATE(); - case 1758: + case 1745: ACCEPT_TOKEN(aux_sym_foreach_command_token1); END_STATE(); - case 1759: + case 1746: ACCEPT_TOKEN(anon_sym_DASH_DASH_PERCENT); END_STATE(); - case 1760: + case 1747: ACCEPT_TOKEN(anon_sym_DASH_DASH_PERCENT); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ',' || lookahead == ';' || lookahead == '|' || - lookahead == '}') ADVANCE(1745); + lookahead == '}') ADVANCE(1734); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1207); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1263); END_STATE(); - case 1761: + case 1748: ACCEPT_TOKEN(anon_sym_DASH_DASH_PERCENT); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + lookahead == 0x0b || + lookahead == '\f' || lookahead == ' ' || lookahead == '"' || ('&' <= lookahead && lookahead <= ')') || lookahead == ',' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(1745); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(1734); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1716); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1706); END_STATE(); - case 1762: + case 1749: ACCEPT_TOKEN(anon_sym_DASH_DASH_PERCENT); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1745); + lookahead != '\n' && + lookahead != '\r') ADVANCE(1734); END_STATE(); - case 1763: + case 1750: ACCEPT_TOKEN(aux_sym_class_attribute_token1); END_STATE(); - case 1764: + case 1751: ACCEPT_TOKEN(aux_sym_class_attribute_token2); END_STATE(); - case 1765: + case 1752: ACCEPT_TOKEN(aux_sym_class_statement_token1); END_STATE(); - case 1766: + case 1753: ACCEPT_TOKEN(aux_sym_enum_statement_token1); END_STATE(); - case 1767: + case 1754: ACCEPT_TOKEN(aux_sym_logical_expression_token1); END_STATE(); - case 1768: + case 1755: ACCEPT_TOKEN(aux_sym_logical_expression_token2); END_STATE(); - case 1769: + case 1756: ACCEPT_TOKEN(aux_sym_logical_expression_token3); END_STATE(); - case 1770: + case 1757: ACCEPT_TOKEN(aux_sym_bitwise_expression_token1); END_STATE(); - case 1771: + case 1758: ACCEPT_TOKEN(aux_sym_bitwise_expression_token2); END_STATE(); - case 1772: + case 1759: ACCEPT_TOKEN(aux_sym_bitwise_expression_token3); END_STATE(); - case 1773: + case 1760: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1800); + if (lookahead == '+') ADVANCE(1787); END_STATE(); - case 1774: + case 1761: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1800); - if (lookahead == '=') ADVANCE(780); + if (lookahead == '+') ADVANCE(1787); + if (lookahead == '=') ADVANCE(836); END_STATE(); - case 1775: + case 1762: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1801); + if (lookahead == '+') ADVANCE(1788); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23624,174 +23827,210 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1776: + case 1763: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(780); + if (lookahead == '=') ADVANCE(836); END_STATE(); - case 1777: + case 1764: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1803, - 'A', 1357, - 'a', 1357, - 'B', 1243, - 'b', 1243, - 'C', 1244, - 'c', 1244, - 'E', 1395, - 'e', 1395, - 'F', 906, - 'f', 906, - 'G', 1286, - 'g', 1286, - 'I', 1277, - 'i', 1277, - 'J', 1377, - 'j', 1377, - 'L', 1287, - 'l', 1287, - 'M', 1245, - 'm', 1245, - 'N', 1288, - 'n', 1288, - 'O', 1398, - 'o', 1398, - 'P', 1247, - 'p', 1247, - 'R', 1289, - 'r', 1289, - 'S', 1314, - 's', 1314, - 'W', 1323, - 'w', 1323, - 'X', 1379, - 'x', 1379, + '-', 1790, + '=', 840, + 'A', 388, + 'a', 388, + 'B', 218, + 'b', 218, + 'C', 221, + 'c', 221, + 'E', 438, + 'e', 438, + 'F', 967, + 'f', 967, + 'G', 283, + 'g', 283, + 'I', 272, + 'i', 272, + 'J', 415, + 'j', 415, + 'L', 284, + 'l', 284, + 'M', 222, + 'm', 222, + 'N', 285, + 'n', 285, + 'O', 441, + 'o', 441, + 'P', 224, + 'p', 224, + 'R', 287, + 'r', 287, + 'S', 324, + 's', 324, + 'W', 339, + 'w', 339, + 'X', 417, + 'x', 417, ); - if (lookahead == '?' || - ('D' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); END_STATE(); - case 1778: + case 1765: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1803, - 'B', 1362, - 'b', 1362, - 'J', 1377, - 'j', 1377, - 'N', 1383, - 'n', 1383, - 'S', 1389, - 's', 1389, + '-', 1789, + '=', 840, + 'A', 388, + 'a', 388, + 'B', 218, + 'b', 218, + 'C', 255, + 'c', 255, + 'E', 437, + 'e', 437, + 'F', 966, + 'f', 966, + 'G', 283, + 'g', 283, + 'I', 272, + 'i', 272, + 'J', 415, + 'j', 415, + 'L', 284, + 'l', 284, + 'M', 222, + 'm', 222, + 'N', 285, + 'n', 285, + 'O', 441, + 'o', 441, + 'R', 317, + 'r', 317, + 'S', 323, + 's', 323, + 'X', 417, + 'x', 417, ); - if (lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); END_STATE(); - case 1779: + case 1766: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1802, - 'A', 335, - 'a', 335, - 'B', 170, - 'b', 170, - 'C', 204, - 'c', 204, - 'E', 379, - 'e', 379, - 'F', 905, - 'f', 905, - 'G', 228, - 'g', 228, - 'I', 217, - 'i', 217, - 'J', 355, - 'j', 355, - 'L', 229, - 'l', 229, - 'M', 180, - 'm', 180, - 'N', 230, - 'n', 230, - 'O', 382, - 'o', 382, - 'R', 257, - 'r', 257, - 'S', 275, - 's', 275, - 'X', 361, - 'x', 361, + '-', 1789, + '=', 840, + 'A', 388, + 'a', 388, + 'B', 219, + 'b', 219, + 'C', 255, + 'c', 255, + 'E', 437, + 'e', 437, + 'F', 966, + 'f', 966, + 'G', 283, + 'g', 283, + 'I', 272, + 'i', 272, + 'J', 415, + 'j', 415, + 'L', 284, + 'l', 284, + 'M', 222, + 'm', 222, + 'N', 286, + 'n', 286, + 'O', 441, + 'o', 441, + 'R', 317, + 'r', 317, + 'S', 323, + 's', 323, + 'X', 417, + 'x', 417, ); END_STATE(); - case 1780: + case 1767: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1802, - 'A', 335, - 'a', 335, - 'B', 171, - 'b', 171, - 'C', 204, - 'c', 204, - 'E', 379, - 'e', 379, - 'F', 905, - 'f', 905, - 'G', 228, - 'g', 228, - 'I', 217, - 'i', 217, - 'J', 355, - 'j', 355, - 'L', 229, - 'l', 229, - 'M', 180, - 'm', 180, - 'N', 231, - 'n', 231, - 'O', 382, - 'o', 382, - 'R', 257, - 'r', 257, - 'S', 275, - 's', 275, - 'X', 361, - 'x', 361, + '-', 1789, + 'A', 388, + 'a', 388, + 'B', 218, + 'b', 218, + 'C', 255, + 'c', 255, + 'E', 437, + 'e', 437, + 'F', 966, + 'f', 966, + 'G', 283, + 'g', 283, + 'I', 272, + 'i', 272, + 'J', 415, + 'j', 415, + 'L', 284, + 'l', 284, + 'M', 222, + 'm', 222, + 'N', 285, + 'n', 285, + 'O', 441, + 'o', 441, + 'R', 317, + 'r', 317, + 'S', 323, + 's', 323, + 'X', 417, + 'x', 417, ); END_STATE(); - case 1781: + case 1768: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1802, - 'B', 336, - 'b', 336, - 'J', 355, - 'j', 355, - 'N', 356, - 'n', 356, - 'S', 371, - 's', 371, + '-', 1789, + 'B', 395, + 'b', 395, + 'J', 415, + 'j', 415, + 'N', 422, + 'n', 422, + 'S', 429, + 's', 429, ); END_STATE(); - case 1782: + case 1769: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1807, - 'B', 1189, - 'b', 1189, - 'J', 1191, - 'j', 1191, - 'N', 1192, - 'n', 1192, - 'S', 1197, - 's', 1197, + '-', 1791, + 'B', 1304, + 'b', 1304, + 'J', 1305, + 'j', 1305, + 'N', 1306, + 'n', 1306, + 'S', 1307, + 's', 1307, ); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); + END_STATE(); + case 1770: + ACCEPT_TOKEN(anon_sym_DASH); + ADVANCE_MAP( + '-', 1795, + 'B', 1251, + 'b', 1251, + 'J', 1253, + 'j', 1253, + 'N', 1254, + 'n', 1254, + 'S', 1257, + 's', 1257, + ); + if (lookahead == '?' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23801,20 +24040,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1783: + case 1771: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1810, - 'B', 1190, - 'b', 1190, - 'J', 1193, - 'j', 1193, - 'N', 1194, - 'n', 1194, - 'S', 1198, - 's', 1198, + '-', 1798, + 'B', 1252, + 'b', 1252, + 'J', 1255, + 'j', 1255, + 'N', 1256, + 'n', 1256, + 'S', 1258, + 's', 1258, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -23825,41 +24064,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1784: + case 1772: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1805, - 'B', 1362, - 'b', 1362, - 'J', 1377, - 'j', 1377, - 'N', 1383, - 'n', 1383, - 'S', 1389, - 's', 1389, + '-', 1793, + 'B', 1304, + 'b', 1304, + 'J', 1305, + 'j', 1305, + 'N', 1306, + 'n', 1306, + 'S', 1307, + 's', 1307, ); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1785: + case 1773: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 1808, - 'B', 1189, - 'b', 1189, - 'J', 1191, - 'j', 1191, - 'N', 1192, - 'n', 1192, - 'S', 1197, - 's', 1197, + '-', 1796, + 'B', 1251, + 'b', 1251, + 'J', 1253, + 'j', 1253, + 'N', 1254, + 'n', 1254, + 'S', 1257, + 's', 1257, ); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -23869,101 +24108,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1786: + case 1774: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - 'A', 335, - 'a', 335, - 'B', 171, - 'b', 171, - 'C', 204, - 'c', 204, - 'E', 379, - 'e', 379, - 'F', 905, - 'f', 905, - 'G', 228, - 'g', 228, - 'I', 217, - 'i', 217, - 'J', 355, - 'j', 355, - 'L', 229, - 'l', 229, - 'M', 180, - 'm', 180, - 'N', 231, - 'n', 231, - 'O', 382, - 'o', 382, - 'R', 257, - 'r', 257, - 'S', 275, - 's', 275, - 'X', 361, - 'x', 361, + '=', 840, + 'A', 388, + 'a', 388, + 'B', 219, + 'b', 219, + 'C', 255, + 'c', 255, + 'E', 437, + 'e', 437, + 'F', 966, + 'f', 966, + 'G', 283, + 'g', 283, + 'I', 272, + 'i', 272, + 'J', 415, + 'j', 415, + 'L', 284, + 'l', 284, + 'M', 222, + 'm', 222, + 'N', 286, + 'n', 286, + 'O', 441, + 'o', 441, + 'R', 317, + 'r', 317, + 'S', 323, + 's', 323, + 'X', 417, + 'x', 417, ); END_STATE(); - case 1787: + case 1775: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 1788: + case 1776: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(782); + if (lookahead == '=') ADVANCE(838); END_STATE(); - case 1789: + case 1777: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 1790: + case 1778: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1791: + case 1779: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(781); - if (lookahead == '>') ADVANCE(820); + if (lookahead == '=') ADVANCE(837); + if (lookahead == '>') ADVANCE(877); END_STATE(); - case 1792: + case 1780: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 1793: - ACCEPT_TOKEN(aux_sym_expression_with_unary_operator_token1); - END_STATE(); - case 1794: + case 1781: ACCEPT_TOKEN(aux_sym_expression_with_unary_operator_token1); - ADVANCE_MAP( - 'C', 368, - 'c', 368, - 'I', 333, - 'i', 333, - 'L', 298, - 'l', 298, - 'M', 190, - 'm', 190, - ); END_STATE(); - case 1795: + case 1782: ACCEPT_TOKEN(aux_sym_expression_with_unary_operator_token1); ADVANCE_MAP( - 'C', 1386, - 'c', 1386, - 'I', 1359, - 'i', 1359, - 'L', 1334, - 'l', 1334, - 'M', 1258, - 'm', 1258, + 'C', 426, + 'c', 426, + 'I', 390, + 'i', 390, + 'L', 355, + 'l', 355, + 'M', 243, + 'm', 243, ); END_STATE(); - case 1796: + case 1783: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1797: + case 1784: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(779); + if (lookahead == '=') ADVANCE(835); END_STATE(); - case 1798: + case 1785: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -23973,15 +24200,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1799: + case 1786: ACCEPT_TOKEN(aux_sym_expression_with_unary_operator_token2); END_STATE(); - case 1800: + case 1787: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 1801: + case 1788: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -23991,58 +24218,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1802: + case 1789: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 1803: + case 1790: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '%') ADVANCE(1749); + END_STATE(); + case 1791: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1762); - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '%') ADVANCE(1749); + if (lookahead == '-') ADVANCE(1297); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1804: + case 1792: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1762); - if (lookahead == '-') ADVANCE(1241); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '%') ADVANCE(1749); + if (lookahead == '-') ADVANCE(1298); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1805: + case 1793: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1745); - if (lookahead == '-') ADVANCE(1240); + if (lookahead == '%') ADVANCE(1734); + if (lookahead == '-') ADVANCE(1297); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1440); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1310); END_STATE(); - case 1806: + case 1794: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1745); - if (lookahead == '-') ADVANCE(1241); - if (lookahead == '`') ADVANCE(1440); + if (lookahead == '%') ADVANCE(1734); + if (lookahead == '-') ADVANCE(1298); + if (lookahead == '`') ADVANCE(1310); if (lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '\\') ADVANCE(1744); + lookahead == '\\') ADVANCE(1733); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1242); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1299); END_STATE(); - case 1807: + case 1795: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1760); - if (lookahead == '-') ADVANCE(1163); + if (lookahead == '%') ADVANCE(1747); + if (lookahead == '-') ADVANCE(1225); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -24052,15 +24283,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1808: + case 1796: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '%') ADVANCE(1207); - if (lookahead == '-') ADVANCE(1163); + if (lookahead == '%') ADVANCE(1263); + if (lookahead == '-') ADVANCE(1225); if (lookahead == '?' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1211); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(1268); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -24070,9 +24301,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1809: + case 1797: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead == '-' || lookahead == '.' || @@ -24081,9 +24312,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1810: + case 1798: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -24093,18 +24324,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1811: + case 1799: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 1812: + case 1800: ACCEPT_TOKEN(anon_sym_AT_LPAREN); END_STATE(); - case 1813: + case 1801: ACCEPT_TOKEN(anon_sym_AT_LBRACE); END_STATE(); - case 1814: + case 1802: ACCEPT_TOKEN(anon_sym_AT_LBRACE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -24114,25 +24345,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ';' && lookahead != '|' && - lookahead != '}') ADVANCE(1212); + lookahead != '}') ADVANCE(1269); END_STATE(); - case 1815: + case 1803: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1792); + if (lookahead == '.') ADVANCE(1780); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(362); + lookahead == 'f') ADVANCE(421); END_STATE(); - case 1816: + case 1804: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1792); + if (lookahead == '.') ADVANCE(1780); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == 'f') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 1817: + case 1805: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1741); + lookahead == 'f') ADVANCE(1730); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -24140,43 +24371,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '\\' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1733); END_STATE(); - case 1818: + case 1806: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(362); + lookahead == 'f') ADVANCE(421); END_STATE(); - case 1819: + case 1807: ACCEPT_TOKEN(anon_sym_DOT2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == 'f') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 1820: + case 1808: ACCEPT_TOKEN(anon_sym_DOT2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(591); END_STATE(); - case 1821: + case 1809: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 1822: + case 1810: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 1823: + case 1811: ACCEPT_TOKEN(aux_sym_invokation_foreach_expression_token1); END_STATE(); - case 1824: - ACCEPT_TOKEN(aux_sym_invokation_foreach_expression_token1); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - lookahead == '?' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '\\' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1744); - END_STATE(); default: return false; } @@ -24184,2147 +24404,2121 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 89}, - [2] = {.lex_state = 454, .external_lex_state = 1}, - [3] = {.lex_state = 454, .external_lex_state = 1}, - [4] = {.lex_state = 454}, - [5] = {.lex_state = 454, .external_lex_state = 1}, - [6] = {.lex_state = 454}, - [7] = {.lex_state = 90, .external_lex_state = 1}, - [8] = {.lex_state = 90}, - [9] = {.lex_state = 90}, - [10] = {.lex_state = 90}, - [11] = {.lex_state = 90}, - [12] = {.lex_state = 90}, - [13] = {.lex_state = 90}, - [14] = {.lex_state = 90}, - [15] = {.lex_state = 90, .external_lex_state = 1}, - [16] = {.lex_state = 90}, - [17] = {.lex_state = 90}, - [18] = {.lex_state = 90}, - [19] = {.lex_state = 90}, - [20] = {.lex_state = 90}, - [21] = {.lex_state = 90}, - [22] = {.lex_state = 90, .external_lex_state = 1}, - [23] = {.lex_state = 90, .external_lex_state = 1}, - [24] = {.lex_state = 90, .external_lex_state = 1}, - [25] = {.lex_state = 90, .external_lex_state = 1}, - [26] = {.lex_state = 90, .external_lex_state = 1}, - [27] = {.lex_state = 90, .external_lex_state = 1}, - [28] = {.lex_state = 90, .external_lex_state = 1}, - [29] = {.lex_state = 90, .external_lex_state = 1}, - [30] = {.lex_state = 90}, - [31] = {.lex_state = 90}, - [32] = {.lex_state = 90}, - [33] = {.lex_state = 90}, - [34] = {.lex_state = 90}, - [35] = {.lex_state = 90}, - [36] = {.lex_state = 90}, - [37] = {.lex_state = 90}, - [38] = {.lex_state = 90}, - [39] = {.lex_state = 90}, - [40] = {.lex_state = 91}, - [41] = {.lex_state = 91}, - [42] = {.lex_state = 454}, - [43] = {.lex_state = 454, .external_lex_state = 1}, - [44] = {.lex_state = 456}, - [45] = {.lex_state = 456}, - [46] = {.lex_state = 456}, - [47] = {.lex_state = 456}, - [48] = {.lex_state = 456}, - [49] = {.lex_state = 456}, - [50] = {.lex_state = 456}, - [51] = {.lex_state = 456}, - [52] = {.lex_state = 456}, - [53] = {.lex_state = 456}, - [54] = {.lex_state = 456}, - [55] = {.lex_state = 456}, - [56] = {.lex_state = 456}, - [57] = {.lex_state = 456}, - [58] = {.lex_state = 456}, - [59] = {.lex_state = 456}, - [60] = {.lex_state = 456}, - [61] = {.lex_state = 456}, - [62] = {.lex_state = 456}, - [63] = {.lex_state = 456}, - [64] = {.lex_state = 456}, - [65] = {.lex_state = 456}, - [66] = {.lex_state = 456}, - [67] = {.lex_state = 456}, - [68] = {.lex_state = 456}, - [69] = {.lex_state = 456}, - [70] = {.lex_state = 456}, - [71] = {.lex_state = 456}, - [72] = {.lex_state = 456}, - [73] = {.lex_state = 456}, - [74] = {.lex_state = 456}, - [75] = {.lex_state = 456}, - [76] = {.lex_state = 82}, - [77] = {.lex_state = 82}, - [78] = {.lex_state = 82, .external_lex_state = 1}, - [79] = {.lex_state = 456}, - [80] = {.lex_state = 82, .external_lex_state = 1}, - [81] = {.lex_state = 456}, - [82] = {.lex_state = 456}, - [83] = {.lex_state = 92}, - [84] = {.lex_state = 92}, - [85] = {.lex_state = 92}, - [86] = {.lex_state = 92}, - [87] = {.lex_state = 92}, - [88] = {.lex_state = 92}, - [89] = {.lex_state = 92}, - [90] = {.lex_state = 92}, - [91] = {.lex_state = 92, .external_lex_state = 1}, - [92] = {.lex_state = 92}, - [93] = {.lex_state = 92}, - [94] = {.lex_state = 92}, - [95] = {.lex_state = 92}, - [96] = {.lex_state = 92}, - [97] = {.lex_state = 92}, - [98] = {.lex_state = 92}, - [99] = {.lex_state = 92}, - [100] = {.lex_state = 92}, - [101] = {.lex_state = 92}, - [102] = {.lex_state = 92, .external_lex_state = 1}, - [103] = {.lex_state = 92}, - [104] = {.lex_state = 92}, - [105] = {.lex_state = 92}, - [106] = {.lex_state = 92, .external_lex_state = 1}, - [107] = {.lex_state = 92}, - [108] = {.lex_state = 92, .external_lex_state = 1}, - [109] = {.lex_state = 92}, - [110] = {.lex_state = 92}, - [111] = {.lex_state = 92}, - [112] = {.lex_state = 92}, - [113] = {.lex_state = 92}, - [114] = {.lex_state = 92}, - [115] = {.lex_state = 92}, - [116] = {.lex_state = 92}, - [117] = {.lex_state = 92}, - [118] = {.lex_state = 92}, - [119] = {.lex_state = 92}, - [120] = {.lex_state = 92}, - [121] = {.lex_state = 92}, - [122] = {.lex_state = 92, .external_lex_state = 1}, - [123] = {.lex_state = 92, .external_lex_state = 1}, - [124] = {.lex_state = 92, .external_lex_state = 1}, - [125] = {.lex_state = 92, .external_lex_state = 1}, - [126] = {.lex_state = 92, .external_lex_state = 1}, - [127] = {.lex_state = 92, .external_lex_state = 1}, - [128] = {.lex_state = 92, .external_lex_state = 1}, - [129] = {.lex_state = 92, .external_lex_state = 1}, - [130] = {.lex_state = 92, .external_lex_state = 1}, - [131] = {.lex_state = 92, .external_lex_state = 1}, - [132] = {.lex_state = 92, .external_lex_state = 1}, - [133] = {.lex_state = 92, .external_lex_state = 1}, - [134] = {.lex_state = 92, .external_lex_state = 1}, - [135] = {.lex_state = 92, .external_lex_state = 1}, - [136] = {.lex_state = 92, .external_lex_state = 1}, - [137] = {.lex_state = 92, .external_lex_state = 1}, - [138] = {.lex_state = 92, .external_lex_state = 1}, - [139] = {.lex_state = 92, .external_lex_state = 1}, - [140] = {.lex_state = 92, .external_lex_state = 1}, - [141] = {.lex_state = 92, .external_lex_state = 1}, - [142] = {.lex_state = 92, .external_lex_state = 1}, - [143] = {.lex_state = 92, .external_lex_state = 1}, - [144] = {.lex_state = 92, .external_lex_state = 1}, - [145] = {.lex_state = 92, .external_lex_state = 1}, - [146] = {.lex_state = 92, .external_lex_state = 1}, - [147] = {.lex_state = 92, .external_lex_state = 1}, - [148] = {.lex_state = 92, .external_lex_state = 1}, - [149] = {.lex_state = 92, .external_lex_state = 1}, - [150] = {.lex_state = 92, .external_lex_state = 1}, - [151] = {.lex_state = 92}, - [152] = {.lex_state = 92, .external_lex_state = 1}, - [153] = {.lex_state = 92, .external_lex_state = 1}, - [154] = {.lex_state = 92, .external_lex_state = 1}, - [155] = {.lex_state = 92, .external_lex_state = 1}, - [156] = {.lex_state = 92}, - [157] = {.lex_state = 94}, - [158] = {.lex_state = 94}, - [159] = {.lex_state = 94, .external_lex_state = 1}, - [160] = {.lex_state = 94, .external_lex_state = 1}, - [161] = {.lex_state = 94}, - [162] = {.lex_state = 94}, - [163] = {.lex_state = 94}, - [164] = {.lex_state = 94, .external_lex_state = 1}, - [165] = {.lex_state = 94}, - [166] = {.lex_state = 94}, - [167] = {.lex_state = 94}, - [168] = {.lex_state = 94}, - [169] = {.lex_state = 94}, - [170] = {.lex_state = 94}, - [171] = {.lex_state = 94}, - [172] = {.lex_state = 94, .external_lex_state = 1}, - [173] = {.lex_state = 94, .external_lex_state = 1}, - [174] = {.lex_state = 94, .external_lex_state = 1}, - [175] = {.lex_state = 94, .external_lex_state = 1}, - [176] = {.lex_state = 94, .external_lex_state = 1}, - [177] = {.lex_state = 94, .external_lex_state = 1}, - [178] = {.lex_state = 94, .external_lex_state = 1}, - [179] = {.lex_state = 94}, - [180] = {.lex_state = 94}, - [181] = {.lex_state = 94, .external_lex_state = 1}, - [182] = {.lex_state = 94, .external_lex_state = 1}, - [183] = {.lex_state = 94}, - [184] = {.lex_state = 94}, - [185] = {.lex_state = 94, .external_lex_state = 1}, - [186] = {.lex_state = 94, .external_lex_state = 1}, - [187] = {.lex_state = 94, .external_lex_state = 1}, - [188] = {.lex_state = 94, .external_lex_state = 1}, - [189] = {.lex_state = 94, .external_lex_state = 1}, - [190] = {.lex_state = 94}, - [191] = {.lex_state = 94}, - [192] = {.lex_state = 94, .external_lex_state = 1}, - [193] = {.lex_state = 82}, - [194] = {.lex_state = 82, .external_lex_state = 1}, - [195] = {.lex_state = 94}, - [196] = {.lex_state = 94}, - [197] = {.lex_state = 94, .external_lex_state = 1}, - [198] = {.lex_state = 94, .external_lex_state = 1}, - [199] = {.lex_state = 57, .external_lex_state = 1}, - [200] = {.lex_state = 454}, - [201] = {.lex_state = 454}, - [202] = {.lex_state = 57, .external_lex_state = 1}, - [203] = {.lex_state = 57}, - [204] = {.lex_state = 57}, - [205] = {.lex_state = 57}, - [206] = {.lex_state = 57, .external_lex_state = 1}, - [207] = {.lex_state = 454, .external_lex_state = 1}, - [208] = {.lex_state = 454, .external_lex_state = 1}, - [209] = {.lex_state = 79}, - [210] = {.lex_state = 79}, - [211] = {.lex_state = 79, .external_lex_state = 1}, - [212] = {.lex_state = 79}, - [213] = {.lex_state = 58, .external_lex_state = 1}, - [214] = {.lex_state = 58}, - [215] = {.lex_state = 58}, - [216] = {.lex_state = 58, .external_lex_state = 1}, - [217] = {.lex_state = 79, .external_lex_state = 1}, - [218] = {.lex_state = 79, .external_lex_state = 1}, - [219] = {.lex_state = 76}, - [220] = {.lex_state = 76, .external_lex_state = 1}, - [221] = {.lex_state = 76, .external_lex_state = 1}, - [222] = {.lex_state = 76}, - [223] = {.lex_state = 85, .external_lex_state = 1}, - [224] = {.lex_state = 85, .external_lex_state = 1}, - [225] = {.lex_state = 85}, - [226] = {.lex_state = 85}, - [227] = {.lex_state = 95}, - [228] = {.lex_state = 95, .external_lex_state = 1}, - [229] = {.lex_state = 14}, - [230] = {.lex_state = 14}, - [231] = {.lex_state = 14}, - [232] = {.lex_state = 14}, - [233] = {.lex_state = 14}, - [234] = {.lex_state = 14}, - [235] = {.lex_state = 14}, - [236] = {.lex_state = 14}, - [237] = {.lex_state = 14}, - [238] = {.lex_state = 14}, - [239] = {.lex_state = 14}, - [240] = {.lex_state = 14}, - [241] = {.lex_state = 88}, - [242] = {.lex_state = 88}, - [243] = {.lex_state = 88}, - [244] = {.lex_state = 88}, - [245] = {.lex_state = 88}, - [246] = {.lex_state = 88}, - [247] = {.lex_state = 88}, - [248] = {.lex_state = 88}, - [249] = {.lex_state = 88}, - [250] = {.lex_state = 88}, - [251] = {.lex_state = 88}, - [252] = {.lex_state = 88}, - [253] = {.lex_state = 88}, - [254] = {.lex_state = 88}, - [255] = {.lex_state = 88}, - [256] = {.lex_state = 88}, - [257] = {.lex_state = 88}, - [258] = {.lex_state = 88}, - [259] = {.lex_state = 88}, - [260] = {.lex_state = 88}, - [261] = {.lex_state = 88}, - [262] = {.lex_state = 88}, - [263] = {.lex_state = 88, .external_lex_state = 1}, - [264] = {.lex_state = 88}, - [265] = {.lex_state = 88}, - [266] = {.lex_state = 88}, - [267] = {.lex_state = 88}, - [268] = {.lex_state = 88}, - [269] = {.lex_state = 88}, - [270] = {.lex_state = 88}, - [271] = {.lex_state = 88}, - [272] = {.lex_state = 88}, - [273] = {.lex_state = 88}, - [274] = {.lex_state = 88}, - [275] = {.lex_state = 88}, - [276] = {.lex_state = 88}, - [277] = {.lex_state = 88}, - [278] = {.lex_state = 88}, - [279] = {.lex_state = 88}, - [280] = {.lex_state = 88}, - [281] = {.lex_state = 88}, - [282] = {.lex_state = 88}, - [283] = {.lex_state = 88}, - [284] = {.lex_state = 88}, - [285] = {.lex_state = 88}, - [286] = {.lex_state = 88}, - [287] = {.lex_state = 88}, - [288] = {.lex_state = 88}, - [289] = {.lex_state = 88}, - [290] = {.lex_state = 88}, - [291] = {.lex_state = 92}, - [292] = {.lex_state = 92, .external_lex_state = 1}, - [293] = {.lex_state = 92}, - [294] = {.lex_state = 92, .external_lex_state = 1}, - [295] = {.lex_state = 94}, - [296] = {.lex_state = 82}, - [297] = {.lex_state = 82}, - [298] = {.lex_state = 94}, - [299] = {.lex_state = 94, .external_lex_state = 1}, - [300] = {.lex_state = 457}, - [301] = {.lex_state = 57, .external_lex_state = 1}, - [302] = {.lex_state = 94}, - [303] = {.lex_state = 94, .external_lex_state = 1}, - [304] = {.lex_state = 94, .external_lex_state = 1}, - [305] = {.lex_state = 57}, - [306] = {.lex_state = 94}, - [307] = {.lex_state = 94}, - [308] = {.lex_state = 458}, - [309] = {.lex_state = 79}, - [310] = {.lex_state = 79, .external_lex_state = 1}, - [311] = {.lex_state = 58}, - [312] = {.lex_state = 94}, - [313] = {.lex_state = 58, .external_lex_state = 1}, - [314] = {.lex_state = 94}, - [315] = {.lex_state = 58, .external_lex_state = 1}, - [316] = {.lex_state = 82}, - [317] = {.lex_state = 458}, - [318] = {.lex_state = 58}, - [319] = {.lex_state = 457}, - [320] = {.lex_state = 94}, - [321] = {.lex_state = 94}, - [322] = {.lex_state = 58, .external_lex_state = 1}, - [323] = {.lex_state = 458}, - [324] = {.lex_state = 458}, - [325] = {.lex_state = 76, .external_lex_state = 1}, - [326] = {.lex_state = 76, .external_lex_state = 1}, - [327] = {.lex_state = 76}, - [328] = {.lex_state = 76}, - [329] = {.lex_state = 82}, - [330] = {.lex_state = 94, .external_lex_state = 1}, - [331] = {.lex_state = 94, .external_lex_state = 1}, - [332] = {.lex_state = 94}, - [333] = {.lex_state = 94}, - [334] = {.lex_state = 82}, - [335] = {.lex_state = 82}, - [336] = {.lex_state = 82}, - [337] = {.lex_state = 82}, - [338] = {.lex_state = 90, .external_lex_state = 1}, - [339] = {.lex_state = 82}, - [340] = {.lex_state = 82}, - [341] = {.lex_state = 82}, - [342] = {.lex_state = 82}, - [343] = {.lex_state = 82}, - [344] = {.lex_state = 82}, - [345] = {.lex_state = 94, .external_lex_state = 1}, - [346] = {.lex_state = 94, .external_lex_state = 1}, - [347] = {.lex_state = 58}, - [348] = {.lex_state = 94}, - [349] = {.lex_state = 94}, - [350] = {.lex_state = 90, .external_lex_state = 1}, - [351] = {.lex_state = 457}, - [352] = {.lex_state = 91}, - [353] = {.lex_state = 90, .external_lex_state = 1}, - [354] = {.lex_state = 457}, - [355] = {.lex_state = 82}, - [356] = {.lex_state = 82}, - [357] = {.lex_state = 458}, - [358] = {.lex_state = 82}, - [359] = {.lex_state = 82}, - [360] = {.lex_state = 82}, - [361] = {.lex_state = 457}, - [362] = {.lex_state = 94}, - [363] = {.lex_state = 76, .external_lex_state = 1}, - [364] = {.lex_state = 458}, - [365] = {.lex_state = 82}, - [366] = {.lex_state = 82}, - [367] = {.lex_state = 82}, - [368] = {.lex_state = 82}, - [369] = {.lex_state = 82}, - [370] = {.lex_state = 91}, - [371] = {.lex_state = 94}, - [372] = {.lex_state = 82}, - [373] = {.lex_state = 82}, - [374] = {.lex_state = 457}, - [375] = {.lex_state = 82}, - [376] = {.lex_state = 82}, - [377] = {.lex_state = 82}, - [378] = {.lex_state = 76}, - [379] = {.lex_state = 457}, - [380] = {.lex_state = 460}, - [381] = {.lex_state = 457}, - [382] = {.lex_state = 94, .external_lex_state = 1}, - [383] = {.lex_state = 94}, - [384] = {.lex_state = 94}, - [385] = {.lex_state = 458}, - [386] = {.lex_state = 94, .external_lex_state = 1}, - [387] = {.lex_state = 458}, - [388] = {.lex_state = 82}, - [389] = {.lex_state = 459}, - [390] = {.lex_state = 94}, - [391] = {.lex_state = 458}, - [392] = {.lex_state = 94}, - [393] = {.lex_state = 94}, - [394] = {.lex_state = 94}, - [395] = {.lex_state = 94}, - [396] = {.lex_state = 94}, - [397] = {.lex_state = 457}, - [398] = {.lex_state = 457}, - [399] = {.lex_state = 77}, - [400] = {.lex_state = 82}, - [401] = {.lex_state = 457}, - [402] = {.lex_state = 458}, - [403] = {.lex_state = 82}, - [404] = {.lex_state = 82}, - [405] = {.lex_state = 457}, - [406] = {.lex_state = 82}, - [407] = {.lex_state = 457}, - [408] = {.lex_state = 458}, - [409] = {.lex_state = 85}, - [410] = {.lex_state = 457}, - [411] = {.lex_state = 77}, - [412] = {.lex_state = 77, .external_lex_state = 1}, - [413] = {.lex_state = 459}, - [414] = {.lex_state = 82}, - [415] = {.lex_state = 77, .external_lex_state = 1}, - [416] = {.lex_state = 458}, - [417] = {.lex_state = 85, .external_lex_state = 1}, - [418] = {.lex_state = 460}, - [419] = {.lex_state = 456}, - [420] = {.lex_state = 456}, - [421] = {.lex_state = 82}, - [422] = {.lex_state = 82}, - [423] = {.lex_state = 456}, - [424] = {.lex_state = 82}, - [425] = {.lex_state = 456}, - [426] = {.lex_state = 456}, - [427] = {.lex_state = 456}, - [428] = {.lex_state = 456}, - [429] = {.lex_state = 456}, - [430] = {.lex_state = 82}, - [431] = {.lex_state = 456}, - [432] = {.lex_state = 456}, - [433] = {.lex_state = 456}, - [434] = {.lex_state = 456}, - [435] = {.lex_state = 456}, - [436] = {.lex_state = 82}, - [437] = {.lex_state = 456}, - [438] = {.lex_state = 456}, - [439] = {.lex_state = 82}, - [440] = {.lex_state = 456}, - [441] = {.lex_state = 456}, - [442] = {.lex_state = 82}, - [443] = {.lex_state = 456}, - [444] = {.lex_state = 82}, - [445] = {.lex_state = 456}, - [446] = {.lex_state = 456}, - [447] = {.lex_state = 456}, - [448] = {.lex_state = 456}, - [449] = {.lex_state = 456}, - [450] = {.lex_state = 456}, - [451] = {.lex_state = 456}, - [452] = {.lex_state = 456}, - [453] = {.lex_state = 456}, - [454] = {.lex_state = 456}, - [455] = {.lex_state = 456}, - [456] = {.lex_state = 82}, - [457] = {.lex_state = 456}, - [458] = {.lex_state = 456}, - [459] = {.lex_state = 82}, - [460] = {.lex_state = 456}, - [461] = {.lex_state = 456}, - [462] = {.lex_state = 94}, - [463] = {.lex_state = 82}, - [464] = {.lex_state = 456}, - [465] = {.lex_state = 82}, - [466] = {.lex_state = 456}, - [467] = {.lex_state = 456}, - [468] = {.lex_state = 456}, - [469] = {.lex_state = 456}, - [470] = {.lex_state = 456}, - [471] = {.lex_state = 82}, - [472] = {.lex_state = 456}, - [473] = {.lex_state = 456}, - [474] = {.lex_state = 94}, - [475] = {.lex_state = 456}, - [476] = {.lex_state = 456}, - [477] = {.lex_state = 456}, - [478] = {.lex_state = 82}, - [479] = {.lex_state = 456}, - [480] = {.lex_state = 456}, - [481] = {.lex_state = 456}, - [482] = {.lex_state = 456}, - [483] = {.lex_state = 456}, - [484] = {.lex_state = 456}, - [485] = {.lex_state = 456}, - [486] = {.lex_state = 456}, - [487] = {.lex_state = 456}, - [488] = {.lex_state = 456}, - [489] = {.lex_state = 456}, - [490] = {.lex_state = 456}, - [491] = {.lex_state = 456}, - [492] = {.lex_state = 456}, - [493] = {.lex_state = 95}, - [494] = {.lex_state = 456}, - [495] = {.lex_state = 456}, - [496] = {.lex_state = 456}, - [497] = {.lex_state = 456}, - [498] = {.lex_state = 82}, - [499] = {.lex_state = 456}, - [500] = {.lex_state = 456}, - [501] = {.lex_state = 456}, - [502] = {.lex_state = 95, .external_lex_state = 1}, - [503] = {.lex_state = 456}, - [504] = {.lex_state = 456}, - [505] = {.lex_state = 456}, - [506] = {.lex_state = 82}, - [507] = {.lex_state = 456}, - [508] = {.lex_state = 456}, - [509] = {.lex_state = 456}, - [510] = {.lex_state = 456}, - [511] = {.lex_state = 456}, - [512] = {.lex_state = 456}, - [513] = {.lex_state = 456}, - [514] = {.lex_state = 456}, - [515] = {.lex_state = 82}, - [516] = {.lex_state = 94}, - [517] = {.lex_state = 82}, - [518] = {.lex_state = 456}, - [519] = {.lex_state = 82}, - [520] = {.lex_state = 456}, - [521] = {.lex_state = 456}, - [522] = {.lex_state = 82}, - [523] = {.lex_state = 456}, - [524] = {.lex_state = 456}, - [525] = {.lex_state = 456}, - [526] = {.lex_state = 94}, - [527] = {.lex_state = 456}, - [528] = {.lex_state = 456}, - [529] = {.lex_state = 456}, - [530] = {.lex_state = 456}, - [531] = {.lex_state = 456}, - [532] = {.lex_state = 456}, - [533] = {.lex_state = 82}, - [534] = {.lex_state = 456}, - [535] = {.lex_state = 456}, - [536] = {.lex_state = 456}, - [537] = {.lex_state = 456}, - [538] = {.lex_state = 456}, - [539] = {.lex_state = 456}, - [540] = {.lex_state = 456}, - [541] = {.lex_state = 456}, - [542] = {.lex_state = 456}, - [543] = {.lex_state = 456}, - [544] = {.lex_state = 456}, - [545] = {.lex_state = 456}, - [546] = {.lex_state = 82}, - [547] = {.lex_state = 94, .external_lex_state = 1}, - [548] = {.lex_state = 94}, - [549] = {.lex_state = 456}, - [550] = {.lex_state = 456}, - [551] = {.lex_state = 94}, - [552] = {.lex_state = 82}, - [553] = {.lex_state = 82}, - [554] = {.lex_state = 87, .external_lex_state = 1}, - [555] = {.lex_state = 87}, - [556] = {.lex_state = 454}, - [557] = {.lex_state = 87, .external_lex_state = 1}, - [558] = {.lex_state = 94, .external_lex_state = 1}, - [559] = {.lex_state = 87}, - [560] = {.lex_state = 82}, - [561] = {.lex_state = 82}, - [562] = {.lex_state = 454}, - [563] = {.lex_state = 82}, - [564] = {.lex_state = 82}, - [565] = {.lex_state = 82}, - [566] = {.lex_state = 82}, - [567] = {.lex_state = 454}, - [568] = {.lex_state = 454}, - [569] = {.lex_state = 454, .external_lex_state = 1}, - [570] = {.lex_state = 454, .external_lex_state = 1}, - [571] = {.lex_state = 82}, - [572] = {.lex_state = 82}, - [573] = {.lex_state = 82}, - [574] = {.lex_state = 82, .external_lex_state = 1}, - [575] = {.lex_state = 94}, - [576] = {.lex_state = 82}, - [577] = {.lex_state = 82}, - [578] = {.lex_state = 94}, - [579] = {.lex_state = 82}, - [580] = {.lex_state = 82}, - [581] = {.lex_state = 82}, - [582] = {.lex_state = 82}, - [583] = {.lex_state = 82}, - [584] = {.lex_state = 82}, - [585] = {.lex_state = 82}, - [586] = {.lex_state = 454}, - [587] = {.lex_state = 82}, - [588] = {.lex_state = 82}, - [589] = {.lex_state = 454}, - [590] = {.lex_state = 82}, - [591] = {.lex_state = 82}, - [592] = {.lex_state = 82}, - [593] = {.lex_state = 82}, - [594] = {.lex_state = 82}, - [595] = {.lex_state = 82}, - [596] = {.lex_state = 82}, - [597] = {.lex_state = 82}, - [598] = {.lex_state = 82}, - [599] = {.lex_state = 82}, - [600] = {.lex_state = 82}, - [601] = {.lex_state = 82}, - [602] = {.lex_state = 82}, - [603] = {.lex_state = 82}, - [604] = {.lex_state = 82}, - [605] = {.lex_state = 82}, - [606] = {.lex_state = 82}, - [607] = {.lex_state = 82}, - [608] = {.lex_state = 82}, - [609] = {.lex_state = 82}, - [610] = {.lex_state = 82}, - [611] = {.lex_state = 82}, - [612] = {.lex_state = 82}, - [613] = {.lex_state = 82}, - [614] = {.lex_state = 82}, - [615] = {.lex_state = 82}, - [616] = {.lex_state = 82}, - [617] = {.lex_state = 82}, - [618] = {.lex_state = 82}, - [619] = {.lex_state = 82}, - [620] = {.lex_state = 82}, - [621] = {.lex_state = 82}, - [622] = {.lex_state = 82}, - [623] = {.lex_state = 82}, - [624] = {.lex_state = 82}, - [625] = {.lex_state = 82}, - [626] = {.lex_state = 82}, - [627] = {.lex_state = 82}, - [628] = {.lex_state = 82}, - [629] = {.lex_state = 82}, - [630] = {.lex_state = 82}, - [631] = {.lex_state = 82}, - [632] = {.lex_state = 82}, - [633] = {.lex_state = 82}, - [634] = {.lex_state = 82}, - [635] = {.lex_state = 82}, - [636] = {.lex_state = 82}, - [637] = {.lex_state = 82}, - [638] = {.lex_state = 82}, - [639] = {.lex_state = 82}, - [640] = {.lex_state = 82}, - [641] = {.lex_state = 82}, - [642] = {.lex_state = 82}, - [643] = {.lex_state = 82}, - [644] = {.lex_state = 82}, - [645] = {.lex_state = 82}, - [646] = {.lex_state = 82}, - [647] = {.lex_state = 82}, - [648] = {.lex_state = 82}, - [649] = {.lex_state = 82}, - [650] = {.lex_state = 82}, - [651] = {.lex_state = 82}, - [652] = {.lex_state = 82}, - [653] = {.lex_state = 82}, - [654] = {.lex_state = 82}, - [655] = {.lex_state = 82}, - [656] = {.lex_state = 82}, - [657] = {.lex_state = 82}, - [658] = {.lex_state = 82}, - [659] = {.lex_state = 82}, - [660] = {.lex_state = 82}, - [661] = {.lex_state = 82}, - [662] = {.lex_state = 82}, - [663] = {.lex_state = 82}, - [664] = {.lex_state = 82}, - [665] = {.lex_state = 82}, - [666] = {.lex_state = 82}, - [667] = {.lex_state = 82}, - [668] = {.lex_state = 82}, - [669] = {.lex_state = 82}, - [670] = {.lex_state = 82}, - [671] = {.lex_state = 82}, - [672] = {.lex_state = 82}, - [673] = {.lex_state = 82}, - [674] = {.lex_state = 82}, - [675] = {.lex_state = 82}, - [676] = {.lex_state = 82}, - [677] = {.lex_state = 82}, - [678] = {.lex_state = 82}, - [679] = {.lex_state = 82}, - [680] = {.lex_state = 82}, - [681] = {.lex_state = 82}, - [682] = {.lex_state = 82}, - [683] = {.lex_state = 82}, - [684] = {.lex_state = 82}, - [685] = {.lex_state = 82}, - [686] = {.lex_state = 82}, - [687] = {.lex_state = 82}, - [688] = {.lex_state = 82}, - [689] = {.lex_state = 82}, - [690] = {.lex_state = 82}, - [691] = {.lex_state = 82}, - [692] = {.lex_state = 82}, - [693] = {.lex_state = 82}, - [694] = {.lex_state = 82}, - [695] = {.lex_state = 82}, - [696] = {.lex_state = 82}, - [697] = {.lex_state = 82}, - [698] = {.lex_state = 82}, - [699] = {.lex_state = 82}, - [700] = {.lex_state = 82}, - [701] = {.lex_state = 82}, - [702] = {.lex_state = 82}, - [703] = {.lex_state = 82}, - [704] = {.lex_state = 82}, - [705] = {.lex_state = 82}, - [706] = {.lex_state = 82}, - [707] = {.lex_state = 82}, - [708] = {.lex_state = 82}, - [709] = {.lex_state = 82}, - [710] = {.lex_state = 82}, - [711] = {.lex_state = 82}, - [712] = {.lex_state = 82}, - [713] = {.lex_state = 82}, - [714] = {.lex_state = 62}, - [715] = {.lex_state = 62}, - [716] = {.lex_state = 62, .external_lex_state = 1}, - [717] = {.lex_state = 62, .external_lex_state = 1}, - [718] = {.lex_state = 100}, - [719] = {.lex_state = 64}, - [720] = {.lex_state = 64}, - [721] = {.lex_state = 64, .external_lex_state = 1}, - [722] = {.lex_state = 64, .external_lex_state = 1}, - [723] = {.lex_state = 100}, - [724] = {.lex_state = 59}, - [725] = {.lex_state = 100}, - [726] = {.lex_state = 101}, - [727] = {.lex_state = 101}, - [728] = {.lex_state = 59}, - [729] = {.lex_state = 59}, - [730] = {.lex_state = 100}, - [731] = {.lex_state = 101}, - [732] = {.lex_state = 59}, - [733] = {.lex_state = 100}, - [734] = {.lex_state = 59}, - [735] = {.lex_state = 59}, - [736] = {.lex_state = 101}, - [737] = {.lex_state = 100}, - [738] = {.lex_state = 101}, - [739] = {.lex_state = 106}, - [740] = {.lex_state = 101}, - [741] = {.lex_state = 66}, - [742] = {.lex_state = 66, .external_lex_state = 1}, - [743] = {.lex_state = 66, .external_lex_state = 1}, - [744] = {.lex_state = 66}, - [745] = {.lex_state = 68}, - [746] = {.lex_state = 72}, - [747] = {.lex_state = 68, .external_lex_state = 1}, - [748] = {.lex_state = 72, .external_lex_state = 1}, - [749] = {.lex_state = 67}, - [750] = {.lex_state = 68}, - [751] = {.lex_state = 67, .external_lex_state = 1}, - [752] = {.lex_state = 72}, - [753] = {.lex_state = 67}, - [754] = {.lex_state = 67, .external_lex_state = 1}, - [755] = {.lex_state = 68, .external_lex_state = 1}, - [756] = {.lex_state = 72, .external_lex_state = 1}, - [757] = {.lex_state = 68, .external_lex_state = 1}, - [758] = {.lex_state = 68, .external_lex_state = 1}, - [759] = {.lex_state = 68}, - [760] = {.lex_state = 73, .external_lex_state = 1}, - [761] = {.lex_state = 68}, - [762] = {.lex_state = 68}, - [763] = {.lex_state = 68}, - [764] = {.lex_state = 68}, - [765] = {.lex_state = 68, .external_lex_state = 1}, - [766] = {.lex_state = 68, .external_lex_state = 1}, - [767] = {.lex_state = 68, .external_lex_state = 1}, - [768] = {.lex_state = 68}, - [769] = {.lex_state = 68}, - [770] = {.lex_state = 73, .external_lex_state = 1}, - [771] = {.lex_state = 68}, - [772] = {.lex_state = 70}, - [773] = {.lex_state = 66}, - [774] = {.lex_state = 68}, - [775] = {.lex_state = 68}, - [776] = {.lex_state = 72, .external_lex_state = 1}, - [777] = {.lex_state = 68}, - [778] = {.lex_state = 68}, - [779] = {.lex_state = 72, .external_lex_state = 1}, - [780] = {.lex_state = 68}, - [781] = {.lex_state = 68}, - [782] = {.lex_state = 68, .external_lex_state = 1}, - [783] = {.lex_state = 68, .external_lex_state = 1}, - [784] = {.lex_state = 68, .external_lex_state = 1}, - [785] = {.lex_state = 73}, - [786] = {.lex_state = 68, .external_lex_state = 1}, - [787] = {.lex_state = 72}, - [788] = {.lex_state = 68, .external_lex_state = 1}, - [789] = {.lex_state = 73}, - [790] = {.lex_state = 68}, - [791] = {.lex_state = 68, .external_lex_state = 1}, - [792] = {.lex_state = 68}, - [793] = {.lex_state = 68, .external_lex_state = 1}, - [794] = {.lex_state = 70, .external_lex_state = 1}, - [795] = {.lex_state = 68, .external_lex_state = 1}, - [796] = {.lex_state = 68, .external_lex_state = 1}, - [797] = {.lex_state = 68, .external_lex_state = 1}, - [798] = {.lex_state = 68}, - [799] = {.lex_state = 68, .external_lex_state = 1}, - [800] = {.lex_state = 72}, - [801] = {.lex_state = 68, .external_lex_state = 1}, - [802] = {.lex_state = 68}, - [803] = {.lex_state = 68, .external_lex_state = 1}, - [804] = {.lex_state = 68}, - [805] = {.lex_state = 70}, - [806] = {.lex_state = 68}, - [807] = {.lex_state = 68, .external_lex_state = 1}, - [808] = {.lex_state = 68}, - [809] = {.lex_state = 68}, - [810] = {.lex_state = 68}, - [811] = {.lex_state = 101}, - [812] = {.lex_state = 68, .external_lex_state = 1}, - [813] = {.lex_state = 68}, - [814] = {.lex_state = 68}, - [815] = {.lex_state = 68, .external_lex_state = 1}, - [816] = {.lex_state = 68, .external_lex_state = 1}, - [817] = {.lex_state = 68, .external_lex_state = 1}, - [818] = {.lex_state = 68}, - [819] = {.lex_state = 68, .external_lex_state = 1}, - [820] = {.lex_state = 68, .external_lex_state = 1}, - [821] = {.lex_state = 68, .external_lex_state = 1}, - [822] = {.lex_state = 68, .external_lex_state = 1}, - [823] = {.lex_state = 68, .external_lex_state = 1}, - [824] = {.lex_state = 68, .external_lex_state = 1}, - [825] = {.lex_state = 68}, - [826] = {.lex_state = 68}, - [827] = {.lex_state = 68, .external_lex_state = 1}, - [828] = {.lex_state = 68}, - [829] = {.lex_state = 68}, - [830] = {.lex_state = 68}, - [831] = {.lex_state = 68, .external_lex_state = 1}, - [832] = {.lex_state = 68}, - [833] = {.lex_state = 70, .external_lex_state = 1}, - [834] = {.lex_state = 68, .external_lex_state = 1}, - [835] = {.lex_state = 66, .external_lex_state = 1}, - [836] = {.lex_state = 68, .external_lex_state = 1}, - [837] = {.lex_state = 68, .external_lex_state = 1}, - [838] = {.lex_state = 68}, - [839] = {.lex_state = 68}, - [840] = {.lex_state = 70}, - [841] = {.lex_state = 73, .external_lex_state = 1}, - [842] = {.lex_state = 73}, - [843] = {.lex_state = 73}, - [844] = {.lex_state = 70, .external_lex_state = 1}, - [845] = {.lex_state = 70, .external_lex_state = 1}, - [846] = {.lex_state = 70, .external_lex_state = 1}, - [847] = {.lex_state = 70, .external_lex_state = 1}, - [848] = {.lex_state = 70, .external_lex_state = 1}, - [849] = {.lex_state = 70, .external_lex_state = 1}, - [850] = {.lex_state = 70, .external_lex_state = 1}, - [851] = {.lex_state = 70, .external_lex_state = 1}, - [852] = {.lex_state = 70, .external_lex_state = 1}, - [853] = {.lex_state = 70, .external_lex_state = 1}, - [854] = {.lex_state = 70, .external_lex_state = 1}, - [855] = {.lex_state = 70, .external_lex_state = 1}, - [856] = {.lex_state = 70, .external_lex_state = 1}, - [857] = {.lex_state = 70, .external_lex_state = 1}, - [858] = {.lex_state = 70, .external_lex_state = 1}, - [859] = {.lex_state = 70, .external_lex_state = 1}, - [860] = {.lex_state = 70, .external_lex_state = 1}, - [861] = {.lex_state = 70, .external_lex_state = 1}, - [862] = {.lex_state = 70, .external_lex_state = 1}, - [863] = {.lex_state = 70, .external_lex_state = 1}, - [864] = {.lex_state = 70, .external_lex_state = 1}, - [865] = {.lex_state = 70}, - [866] = {.lex_state = 70}, - [867] = {.lex_state = 70}, - [868] = {.lex_state = 70}, - [869] = {.lex_state = 70}, - [870] = {.lex_state = 70}, - [871] = {.lex_state = 70}, - [872] = {.lex_state = 70}, - [873] = {.lex_state = 70}, - [874] = {.lex_state = 70}, - [875] = {.lex_state = 70}, - [876] = {.lex_state = 70}, - [877] = {.lex_state = 70}, - [878] = {.lex_state = 70}, - [879] = {.lex_state = 70}, - [880] = {.lex_state = 70}, - [881] = {.lex_state = 70}, - [882] = {.lex_state = 70}, - [883] = {.lex_state = 70}, - [884] = {.lex_state = 70, .external_lex_state = 1}, - [885] = {.lex_state = 70, .external_lex_state = 1}, - [886] = {.lex_state = 70, .external_lex_state = 1}, - [887] = {.lex_state = 70}, - [888] = {.lex_state = 70, .external_lex_state = 1}, - [889] = {.lex_state = 70}, - [890] = {.lex_state = 70}, - [891] = {.lex_state = 70}, - [892] = {.lex_state = 70, .external_lex_state = 1}, - [893] = {.lex_state = 70, .external_lex_state = 1}, - [894] = {.lex_state = 70}, - [895] = {.lex_state = 70}, - [896] = {.lex_state = 70, .external_lex_state = 1}, - [897] = {.lex_state = 70, .external_lex_state = 1}, - [898] = {.lex_state = 70, .external_lex_state = 1}, - [899] = {.lex_state = 70, .external_lex_state = 1}, - [900] = {.lex_state = 70, .external_lex_state = 1}, - [901] = {.lex_state = 70, .external_lex_state = 1}, - [902] = {.lex_state = 70}, - [903] = {.lex_state = 70}, - [904] = {.lex_state = 70}, - [905] = {.lex_state = 70}, - [906] = {.lex_state = 70}, - [907] = {.lex_state = 70}, - [908] = {.lex_state = 67, .external_lex_state = 1}, - [909] = {.lex_state = 70, .external_lex_state = 1}, - [910] = {.lex_state = 67}, - [911] = {.lex_state = 70}, - [912] = {.lex_state = 454}, - [913] = {.lex_state = 454}, - [914] = {.lex_state = 454, .external_lex_state = 1}, - [915] = {.lex_state = 454}, - [916] = {.lex_state = 454, .external_lex_state = 1}, - [917] = {.lex_state = 454, .external_lex_state = 1}, - [918] = {.lex_state = 68, .external_lex_state = 1}, - [919] = {.lex_state = 68}, - [920] = {.lex_state = 73, .external_lex_state = 1}, - [921] = {.lex_state = 70}, - [922] = {.lex_state = 68}, - [923] = {.lex_state = 106}, - [924] = {.lex_state = 106}, - [925] = {.lex_state = 68}, - [926] = {.lex_state = 68, .external_lex_state = 1}, - [927] = {.lex_state = 68, .external_lex_state = 1}, - [928] = {.lex_state = 70, .external_lex_state = 1}, - [929] = {.lex_state = 70}, - [930] = {.lex_state = 68, .external_lex_state = 1}, - [931] = {.lex_state = 68}, - [932] = {.lex_state = 106}, - [933] = {.lex_state = 70, .external_lex_state = 1}, - [934] = {.lex_state = 60, .external_lex_state = 1}, - [935] = {.lex_state = 106}, - [936] = {.lex_state = 106}, - [937] = {.lex_state = 106}, - [938] = {.lex_state = 106}, - [939] = {.lex_state = 70, .external_lex_state = 1}, - [940] = {.lex_state = 106}, - [941] = {.lex_state = 106}, - [942] = {.lex_state = 106}, - [943] = {.lex_state = 106}, - [944] = {.lex_state = 106}, - [945] = {.lex_state = 106}, - [946] = {.lex_state = 70}, - [947] = {.lex_state = 106}, - [948] = {.lex_state = 106}, - [949] = {.lex_state = 106}, - [950] = {.lex_state = 106}, - [951] = {.lex_state = 106}, - [952] = {.lex_state = 70}, - [953] = {.lex_state = 106}, - [954] = {.lex_state = 70}, - [955] = {.lex_state = 106}, - [956] = {.lex_state = 60}, - [957] = {.lex_state = 106}, - [958] = {.lex_state = 106}, - [959] = {.lex_state = 60, .external_lex_state = 1}, - [960] = {.lex_state = 60}, - [961] = {.lex_state = 106}, - [962] = {.lex_state = 106}, - [963] = {.lex_state = 106}, - [964] = {.lex_state = 60}, - [965] = {.lex_state = 106}, - [966] = {.lex_state = 60, .external_lex_state = 1}, - [967] = {.lex_state = 70, .external_lex_state = 1}, - [968] = {.lex_state = 106}, - [969] = {.lex_state = 106}, - [970] = {.lex_state = 106}, - [971] = {.lex_state = 106}, - [972] = {.lex_state = 106}, - [973] = {.lex_state = 106}, - [974] = {.lex_state = 106}, - [975] = {.lex_state = 106}, - [976] = {.lex_state = 106}, - [977] = {.lex_state = 454, .external_lex_state = 1}, - [978] = {.lex_state = 106, .external_lex_state = 1}, - [979] = {.lex_state = 60}, - [980] = {.lex_state = 60}, - [981] = {.lex_state = 60, .external_lex_state = 1}, - [982] = {.lex_state = 61}, - [983] = {.lex_state = 454}, - [984] = {.lex_state = 60}, - [985] = {.lex_state = 60, .external_lex_state = 1}, - [986] = {.lex_state = 61, .external_lex_state = 1}, - [987] = {.lex_state = 61, .external_lex_state = 1}, - [988] = {.lex_state = 60, .external_lex_state = 1}, - [989] = {.lex_state = 61}, - [990] = {.lex_state = 61, .external_lex_state = 1}, - [991] = {.lex_state = 106, .external_lex_state = 1}, - [992] = {.lex_state = 61}, - [993] = {.lex_state = 106, .external_lex_state = 1}, - [994] = {.lex_state = 106, .external_lex_state = 1}, - [995] = {.lex_state = 61}, - [996] = {.lex_state = 61}, - [997] = {.lex_state = 106, .external_lex_state = 1}, - [998] = {.lex_state = 106, .external_lex_state = 1}, - [999] = {.lex_state = 72}, - [1000] = {.lex_state = 61, .external_lex_state = 1}, - [1001] = {.lex_state = 106, .external_lex_state = 1}, - [1002] = {.lex_state = 106, .external_lex_state = 1}, - [1003] = {.lex_state = 72}, - [1004] = {.lex_state = 87}, - [1005] = {.lex_state = 106, .external_lex_state = 1}, - [1006] = {.lex_state = 106, .external_lex_state = 1}, - [1007] = {.lex_state = 106, .external_lex_state = 1}, - [1008] = {.lex_state = 106, .external_lex_state = 1}, - [1009] = {.lex_state = 106, .external_lex_state = 1}, - [1010] = {.lex_state = 72, .external_lex_state = 1}, - [1011] = {.lex_state = 106, .external_lex_state = 1}, - [1012] = {.lex_state = 106, .external_lex_state = 1}, - [1013] = {.lex_state = 61, .external_lex_state = 1}, - [1014] = {.lex_state = 106, .external_lex_state = 1}, - [1015] = {.lex_state = 106, .external_lex_state = 1}, - [1016] = {.lex_state = 106, .external_lex_state = 1}, - [1017] = {.lex_state = 106, .external_lex_state = 1}, - [1018] = {.lex_state = 106}, - [1019] = {.lex_state = 61}, - [1020] = {.lex_state = 72, .external_lex_state = 1}, - [1021] = {.lex_state = 106, .external_lex_state = 1}, - [1022] = {.lex_state = 106, .external_lex_state = 1}, - [1023] = {.lex_state = 72}, - [1024] = {.lex_state = 106, .external_lex_state = 1}, - [1025] = {.lex_state = 106, .external_lex_state = 1}, - [1026] = {.lex_state = 106, .external_lex_state = 1}, - [1027] = {.lex_state = 106, .external_lex_state = 1}, - [1028] = {.lex_state = 61, .external_lex_state = 1}, - [1029] = {.lex_state = 106, .external_lex_state = 1}, - [1030] = {.lex_state = 106, .external_lex_state = 1}, - [1031] = {.lex_state = 106, .external_lex_state = 1}, - [1032] = {.lex_state = 106, .external_lex_state = 1}, - [1033] = {.lex_state = 106, .external_lex_state = 1}, - [1034] = {.lex_state = 72, .external_lex_state = 1}, - [1035] = {.lex_state = 106, .external_lex_state = 1}, - [1036] = {.lex_state = 106, .external_lex_state = 1}, - [1037] = {.lex_state = 106, .external_lex_state = 1}, - [1038] = {.lex_state = 106, .external_lex_state = 1}, - [1039] = {.lex_state = 106, .external_lex_state = 1}, - [1040] = {.lex_state = 106, .external_lex_state = 1}, - [1041] = {.lex_state = 72, .external_lex_state = 1}, - [1042] = {.lex_state = 73, .external_lex_state = 1}, - [1043] = {.lex_state = 72, .external_lex_state = 1}, - [1044] = {.lex_state = 73}, - [1045] = {.lex_state = 73}, - [1046] = {.lex_state = 72}, - [1047] = {.lex_state = 73, .external_lex_state = 1}, - [1048] = {.lex_state = 72}, - [1049] = {.lex_state = 73}, - [1050] = {.lex_state = 72}, - [1051] = {.lex_state = 106, .external_lex_state = 1}, - [1052] = {.lex_state = 106}, - [1053] = {.lex_state = 72, .external_lex_state = 1}, - [1054] = {.lex_state = 72, .external_lex_state = 1}, - [1055] = {.lex_state = 72}, - [1056] = {.lex_state = 72, .external_lex_state = 1}, - [1057] = {.lex_state = 72, .external_lex_state = 1}, - [1058] = {.lex_state = 72, .external_lex_state = 1}, - [1059] = {.lex_state = 72}, - [1060] = {.lex_state = 73, .external_lex_state = 1}, - [1061] = {.lex_state = 72}, - [1062] = {.lex_state = 72}, - [1063] = {.lex_state = 72, .external_lex_state = 1}, - [1064] = {.lex_state = 72, .external_lex_state = 1}, - [1065] = {.lex_state = 72}, - [1066] = {.lex_state = 72}, - [1067] = {.lex_state = 72, .external_lex_state = 1}, - [1068] = {.lex_state = 72}, - [1069] = {.lex_state = 72, .external_lex_state = 1}, - [1070] = {.lex_state = 72}, - [1071] = {.lex_state = 106}, - [1072] = {.lex_state = 73}, - [1073] = {.lex_state = 73}, - [1074] = {.lex_state = 72, .external_lex_state = 1}, - [1075] = {.lex_state = 106, .external_lex_state = 1}, - [1076] = {.lex_state = 72}, - [1077] = {.lex_state = 73, .external_lex_state = 1}, - [1078] = {.lex_state = 73, .external_lex_state = 1}, - [1079] = {.lex_state = 73}, - [1080] = {.lex_state = 106, .external_lex_state = 1}, - [1081] = {.lex_state = 73}, - [1082] = {.lex_state = 73, .external_lex_state = 1}, - [1083] = {.lex_state = 73, .external_lex_state = 1}, - [1084] = {.lex_state = 73, .external_lex_state = 1}, - [1085] = {.lex_state = 73, .external_lex_state = 1}, - [1086] = {.lex_state = 73, .external_lex_state = 1}, - [1087] = {.lex_state = 73, .external_lex_state = 1}, - [1088] = {.lex_state = 73}, - [1089] = {.lex_state = 73}, - [1090] = {.lex_state = 73}, - [1091] = {.lex_state = 73}, - [1092] = {.lex_state = 73, .external_lex_state = 1}, - [1093] = {.lex_state = 73}, - [1094] = {.lex_state = 73, .external_lex_state = 1}, - [1095] = {.lex_state = 73}, - [1096] = {.lex_state = 73, .external_lex_state = 1}, - [1097] = {.lex_state = 73}, - [1098] = {.lex_state = 82}, - [1099] = {.lex_state = 72}, - [1100] = {.lex_state = 72}, - [1101] = {.lex_state = 73}, - [1102] = {.lex_state = 72, .external_lex_state = 1}, - [1103] = {.lex_state = 72}, - [1104] = {.lex_state = 72}, - [1105] = {.lex_state = 72}, - [1106] = {.lex_state = 72, .external_lex_state = 1}, - [1107] = {.lex_state = 72, .external_lex_state = 1}, - [1108] = {.lex_state = 87, .external_lex_state = 1}, - [1109] = {.lex_state = 72, .external_lex_state = 1}, - [1110] = {.lex_state = 72, .external_lex_state = 1}, - [1111] = {.lex_state = 72, .external_lex_state = 1}, - [1112] = {.lex_state = 72}, - [1113] = {.lex_state = 82}, - [1114] = {.lex_state = 72}, - [1115] = {.lex_state = 82}, - [1116] = {.lex_state = 72}, - [1117] = {.lex_state = 73, .external_lex_state = 1}, - [1118] = {.lex_state = 72, .external_lex_state = 1}, - [1119] = {.lex_state = 72, .external_lex_state = 1}, - [1120] = {.lex_state = 454, .external_lex_state = 1}, - [1121] = {.lex_state = 73}, - [1122] = {.lex_state = 454}, - [1123] = {.lex_state = 73}, - [1124] = {.lex_state = 73, .external_lex_state = 1}, - [1125] = {.lex_state = 73}, - [1126] = {.lex_state = 73, .external_lex_state = 1}, - [1127] = {.lex_state = 73, .external_lex_state = 1}, - [1128] = {.lex_state = 73}, - [1129] = {.lex_state = 73, .external_lex_state = 1}, - [1130] = {.lex_state = 73}, - [1131] = {.lex_state = 73}, - [1132] = {.lex_state = 73}, - [1133] = {.lex_state = 73, .external_lex_state = 1}, - [1134] = {.lex_state = 73, .external_lex_state = 1}, - [1135] = {.lex_state = 73, .external_lex_state = 1}, - [1136] = {.lex_state = 73}, - [1137] = {.lex_state = 73, .external_lex_state = 1}, - [1138] = {.lex_state = 454, .external_lex_state = 1}, - [1139] = {.lex_state = 454}, - [1140] = {.lex_state = 454, .external_lex_state = 1}, - [1141] = {.lex_state = 454, .external_lex_state = 1}, - [1142] = {.lex_state = 454, .external_lex_state = 1}, - [1143] = {.lex_state = 454}, - [1144] = {.lex_state = 454}, - [1145] = {.lex_state = 454}, - [1146] = {.lex_state = 82}, - [1147] = {.lex_state = 82}, - [1148] = {.lex_state = 454, .external_lex_state = 1}, - [1149] = {.lex_state = 454}, - [1150] = {.lex_state = 454}, - [1151] = {.lex_state = 454}, - [1152] = {.lex_state = 454, .external_lex_state = 1}, - [1153] = {.lex_state = 454, .external_lex_state = 1}, - [1154] = {.lex_state = 454}, - [1155] = {.lex_state = 454, .external_lex_state = 1}, - [1156] = {.lex_state = 454, .external_lex_state = 1}, - [1157] = {.lex_state = 454}, - [1158] = {.lex_state = 101}, - [1159] = {.lex_state = 101}, - [1160] = {.lex_state = 101}, - [1161] = {.lex_state = 100}, - [1162] = {.lex_state = 59}, - [1163] = {.lex_state = 94}, - [1164] = {.lex_state = 94}, - [1165] = {.lex_state = 94}, - [1166] = {.lex_state = 94}, - [1167] = {.lex_state = 94}, - [1168] = {.lex_state = 94}, - [1169] = {.lex_state = 94}, - [1170] = {.lex_state = 94}, - [1171] = {.lex_state = 94}, - [1172] = {.lex_state = 94}, - [1173] = {.lex_state = 94}, - [1174] = {.lex_state = 94}, - [1175] = {.lex_state = 94}, - [1176] = {.lex_state = 94}, - [1177] = {.lex_state = 94}, - [1178] = {.lex_state = 94}, - [1179] = {.lex_state = 94}, - [1180] = {.lex_state = 94}, - [1181] = {.lex_state = 94}, - [1182] = {.lex_state = 94}, - [1183] = {.lex_state = 94}, - [1184] = {.lex_state = 94}, - [1185] = {.lex_state = 94}, - [1186] = {.lex_state = 94}, - [1187] = {.lex_state = 94}, - [1188] = {.lex_state = 103}, - [1189] = {.lex_state = 103}, - [1190] = {.lex_state = 103}, - [1191] = {.lex_state = 103}, - [1192] = {.lex_state = 103}, - [1193] = {.lex_state = 103}, - [1194] = {.lex_state = 104}, - [1195] = {.lex_state = 103}, - [1196] = {.lex_state = 104}, - [1197] = {.lex_state = 104}, - [1198] = {.lex_state = 103}, - [1199] = {.lex_state = 104}, - [1200] = {.lex_state = 104}, - [1201] = {.lex_state = 104}, - [1202] = {.lex_state = 104}, - [1203] = {.lex_state = 104}, - [1204] = {.lex_state = 103}, - [1205] = {.lex_state = 104}, - [1206] = {.lex_state = 104}, - [1207] = {.lex_state = 104}, - [1208] = {.lex_state = 104}, - [1209] = {.lex_state = 104}, - [1210] = {.lex_state = 103}, - [1211] = {.lex_state = 104}, - [1212] = {.lex_state = 104}, - [1213] = {.lex_state = 104}, - [1214] = {.lex_state = 28}, - [1215] = {.lex_state = 28}, - [1216] = {.lex_state = 28}, - [1217] = {.lex_state = 103}, - [1218] = {.lex_state = 28}, - [1219] = {.lex_state = 104}, - [1220] = {.lex_state = 28}, - [1221] = {.lex_state = 28}, - [1222] = {.lex_state = 28}, - [1223] = {.lex_state = 28}, - [1224] = {.lex_state = 28}, - [1225] = {.lex_state = 28}, - [1226] = {.lex_state = 28}, - [1227] = {.lex_state = 28}, - [1228] = {.lex_state = 28}, - [1229] = {.lex_state = 28}, - [1230] = {.lex_state = 28}, - [1231] = {.lex_state = 28}, - [1232] = {.lex_state = 28}, - [1233] = {.lex_state = 454}, - [1234] = {.lex_state = 454}, - [1235] = {.lex_state = 454}, - [1236] = {.lex_state = 454}, - [1237] = {.lex_state = 109}, - [1238] = {.lex_state = 454}, - [1239] = {.lex_state = 109}, - [1240] = {.lex_state = 454}, - [1241] = {.lex_state = 454}, - [1242] = {.lex_state = 94}, - [1243] = {.lex_state = 94}, - [1244] = {.lex_state = 94}, - [1245] = {.lex_state = 104}, - [1246] = {.lex_state = 104}, - [1247] = {.lex_state = 94}, - [1248] = {.lex_state = 28}, - [1249] = {.lex_state = 103}, - [1250] = {.lex_state = 103}, - [1251] = {.lex_state = 104}, - [1252] = {.lex_state = 454}, - [1253] = {.lex_state = 94}, - [1254] = {.lex_state = 28}, - [1255] = {.lex_state = 94}, - [1256] = {.lex_state = 28}, - [1257] = {.lex_state = 104}, - [1258] = {.lex_state = 103}, - [1259] = {.lex_state = 454}, - [1260] = {.lex_state = 454}, - [1261] = {.lex_state = 454}, - [1262] = {.lex_state = 94}, - [1263] = {.lex_state = 454}, - [1264] = {.lex_state = 454}, - [1265] = {.lex_state = 94}, - [1266] = {.lex_state = 454}, - [1267] = {.lex_state = 454}, - [1268] = {.lex_state = 94}, - [1269] = {.lex_state = 94}, - [1270] = {.lex_state = 108}, - [1271] = {.lex_state = 454}, - [1272] = {.lex_state = 94}, - [1273] = {.lex_state = 108}, - [1274] = {.lex_state = 94}, - [1275] = {.lex_state = 94}, - [1276] = {.lex_state = 94}, - [1277] = {.lex_state = 454}, - [1278] = {.lex_state = 106}, - [1279] = {.lex_state = 106}, - [1280] = {.lex_state = 454}, - [1281] = {.lex_state = 454}, - [1282] = {.lex_state = 94}, - [1283] = {.lex_state = 106}, - [1284] = {.lex_state = 94}, - [1285] = {.lex_state = 454}, - [1286] = {.lex_state = 94}, - [1287] = {.lex_state = 106}, - [1288] = {.lex_state = 454}, - [1289] = {.lex_state = 108}, - [1290] = {.lex_state = 106}, - [1291] = {.lex_state = 454}, - [1292] = {.lex_state = 106}, - [1293] = {.lex_state = 82}, - [1294] = {.lex_state = 454}, - [1295] = {.lex_state = 454}, - [1296] = {.lex_state = 118}, - [1297] = {.lex_state = 106}, - [1298] = {.lex_state = 118}, - [1299] = {.lex_state = 82}, - [1300] = {.lex_state = 454}, - [1301] = {.lex_state = 106, .external_lex_state = 1}, - [1302] = {.lex_state = 454}, - [1303] = {.lex_state = 454}, - [1304] = {.lex_state = 454}, - [1305] = {.lex_state = 106}, - [1306] = {.lex_state = 454}, - [1307] = {.lex_state = 454}, - [1308] = {.lex_state = 454}, - [1309] = {.lex_state = 454}, - [1310] = {.lex_state = 454}, - [1311] = {.lex_state = 454}, - [1312] = {.lex_state = 454}, - [1313] = {.lex_state = 454}, - [1314] = {.lex_state = 454}, - [1315] = {.lex_state = 454}, - [1316] = {.lex_state = 454, .external_lex_state = 1}, - [1317] = {.lex_state = 454, .external_lex_state = 1}, - [1318] = {.lex_state = 106}, - [1319] = {.lex_state = 106}, - [1320] = {.lex_state = 102}, - [1321] = {.lex_state = 454}, - [1322] = {.lex_state = 454}, - [1323] = {.lex_state = 454}, - [1324] = {.lex_state = 106}, - [1325] = {.lex_state = 454, .external_lex_state = 1}, - [1326] = {.lex_state = 106, .external_lex_state = 1}, - [1327] = {.lex_state = 454}, - [1328] = {.lex_state = 102}, - [1329] = {.lex_state = 454, .external_lex_state = 1}, - [1330] = {.lex_state = 454}, - [1331] = {.lex_state = 106}, - [1332] = {.lex_state = 454}, - [1333] = {.lex_state = 102}, - [1334] = {.lex_state = 108, .external_lex_state = 1}, - [1335] = {.lex_state = 33}, - [1336] = {.lex_state = 111}, - [1337] = {.lex_state = 35, .external_lex_state = 1}, - [1338] = {.lex_state = 102}, - [1339] = {.lex_state = 111}, - [1340] = {.lex_state = 108}, - [1341] = {.lex_state = 111}, - [1342] = {.lex_state = 108, .external_lex_state = 1}, - [1343] = {.lex_state = 33}, - [1344] = {.lex_state = 102}, - [1345] = {.lex_state = 102}, - [1346] = {.lex_state = 108}, - [1347] = {.lex_state = 35, .external_lex_state = 1}, - [1348] = {.lex_state = 111}, - [1349] = {.lex_state = 454, .external_lex_state = 1}, - [1350] = {.lex_state = 111}, - [1351] = {.lex_state = 111}, - [1352] = {.lex_state = 111}, - [1353] = {.lex_state = 111}, - [1354] = {.lex_state = 111}, - [1355] = {.lex_state = 111}, - [1356] = {.lex_state = 111}, - [1357] = {.lex_state = 111}, - [1358] = {.lex_state = 454}, - [1359] = {.lex_state = 108}, - [1360] = {.lex_state = 454}, - [1361] = {.lex_state = 454}, - [1362] = {.lex_state = 111}, - [1363] = {.lex_state = 454}, - [1364] = {.lex_state = 111}, - [1365] = {.lex_state = 454, .external_lex_state = 1}, - [1366] = {.lex_state = 454}, - [1367] = {.lex_state = 111}, - [1368] = {.lex_state = 454}, - [1369] = {.lex_state = 454, .external_lex_state = 1}, - [1370] = {.lex_state = 454}, - [1371] = {.lex_state = 111}, - [1372] = {.lex_state = 454, .external_lex_state = 1}, - [1373] = {.lex_state = 111}, - [1374] = {.lex_state = 108, .external_lex_state = 1}, - [1375] = {.lex_state = 111}, - [1376] = {.lex_state = 454}, - [1377] = {.lex_state = 454}, - [1378] = {.lex_state = 454, .external_lex_state = 1}, - [1379] = {.lex_state = 454, .external_lex_state = 1}, - [1380] = {.lex_state = 111}, - [1381] = {.lex_state = 111}, - [1382] = {.lex_state = 454}, - [1383] = {.lex_state = 111}, - [1384] = {.lex_state = 454}, - [1385] = {.lex_state = 111}, - [1386] = {.lex_state = 454}, - [1387] = {.lex_state = 454}, - [1388] = {.lex_state = 111}, - [1389] = {.lex_state = 454, .external_lex_state = 1}, - [1390] = {.lex_state = 454}, - [1391] = {.lex_state = 111}, - [1392] = {.lex_state = 454}, - [1393] = {.lex_state = 111}, - [1394] = {.lex_state = 111}, - [1395] = {.lex_state = 454, .external_lex_state = 1}, - [1396] = {.lex_state = 454, .external_lex_state = 1}, - [1397] = {.lex_state = 108, .external_lex_state = 1}, - [1398] = {.lex_state = 106}, - [1399] = {.lex_state = 108}, - [1400] = {.lex_state = 108}, - [1401] = {.lex_state = 82}, - [1402] = {.lex_state = 454}, - [1403] = {.lex_state = 35}, - [1404] = {.lex_state = 82}, - [1405] = {.lex_state = 108, .external_lex_state = 1}, - [1406] = {.lex_state = 35}, - [1407] = {.lex_state = 82}, - [1408] = {.lex_state = 454}, - [1409] = {.lex_state = 454}, - [1410] = {.lex_state = 82}, - [1411] = {.lex_state = 454}, - [1412] = {.lex_state = 454}, - [1413] = {.lex_state = 82}, - [1414] = {.lex_state = 82}, - [1415] = {.lex_state = 82}, - [1416] = {.lex_state = 82}, - [1417] = {.lex_state = 454}, - [1418] = {.lex_state = 454}, - [1419] = {.lex_state = 454}, - [1420] = {.lex_state = 82}, - [1421] = {.lex_state = 106}, - [1422] = {.lex_state = 106}, - [1423] = {.lex_state = 82}, - [1424] = {.lex_state = 82}, - [1425] = {.lex_state = 106}, - [1426] = {.lex_state = 454}, - [1427] = {.lex_state = 92}, - [1428] = {.lex_state = 454}, - [1429] = {.lex_state = 454}, - [1430] = {.lex_state = 108}, - [1431] = {.lex_state = 454}, - [1432] = {.lex_state = 106}, - [1433] = {.lex_state = 454}, - [1434] = {.lex_state = 92}, - [1435] = {.lex_state = 454}, - [1436] = {.lex_state = 106}, - [1437] = {.lex_state = 454}, - [1438] = {.lex_state = 454}, - [1439] = {.lex_state = 454, .external_lex_state = 1}, - [1440] = {.lex_state = 454, .external_lex_state = 1}, - [1441] = {.lex_state = 108}, - [1442] = {.lex_state = 108, .external_lex_state = 1}, - [1443] = {.lex_state = 111}, - [1444] = {.lex_state = 454}, - [1445] = {.lex_state = 454}, - [1446] = {.lex_state = 97}, - [1447] = {.lex_state = 454}, - [1448] = {.lex_state = 97}, - [1449] = {.lex_state = 454}, - [1450] = {.lex_state = 454}, - [1451] = {.lex_state = 454, .external_lex_state = 1}, - [1452] = {.lex_state = 92}, - [1453] = {.lex_state = 454}, - [1454] = {.lex_state = 454}, - [1455] = {.lex_state = 92}, - [1456] = {.lex_state = 454, .external_lex_state = 1}, - [1457] = {.lex_state = 108, .external_lex_state = 1}, - [1458] = {.lex_state = 108, .external_lex_state = 1}, - [1459] = {.lex_state = 454}, - [1460] = {.lex_state = 454}, - [1461] = {.lex_state = 454, .external_lex_state = 1}, - [1462] = {.lex_state = 454}, - [1463] = {.lex_state = 454}, - [1464] = {.lex_state = 454}, - [1465] = {.lex_state = 108}, - [1466] = {.lex_state = 454}, - [1467] = {.lex_state = 97}, - [1468] = {.lex_state = 97}, - [1469] = {.lex_state = 38}, - [1470] = {.lex_state = 454}, - [1471] = {.lex_state = 92}, - [1472] = {.lex_state = 113}, - [1473] = {.lex_state = 454}, - [1474] = {.lex_state = 92}, - [1475] = {.lex_state = 454}, - [1476] = {.lex_state = 454}, - [1477] = {.lex_state = 454}, - [1478] = {.lex_state = 38}, - [1479] = {.lex_state = 97}, - [1480] = {.lex_state = 97}, - [1481] = {.lex_state = 97}, - [1482] = {.lex_state = 92}, - [1483] = {.lex_state = 92}, - [1484] = {.lex_state = 454}, - [1485] = {.lex_state = 97}, - [1486] = {.lex_state = 106}, - [1487] = {.lex_state = 97}, - [1488] = {.lex_state = 97}, - [1489] = {.lex_state = 454}, - [1490] = {.lex_state = 38}, - [1491] = {.lex_state = 97}, - [1492] = {.lex_state = 97}, - [1493] = {.lex_state = 454}, - [1494] = {.lex_state = 454}, - [1495] = {.lex_state = 454, .external_lex_state = 1}, - [1496] = {.lex_state = 454}, - [1497] = {.lex_state = 454}, - [1498] = {.lex_state = 454}, - [1499] = {.lex_state = 106}, - [1500] = {.lex_state = 454}, - [1501] = {.lex_state = 454}, - [1502] = {.lex_state = 38}, - [1503] = {.lex_state = 454}, - [1504] = {.lex_state = 38}, - [1505] = {.lex_state = 92}, - [1506] = {.lex_state = 454}, - [1507] = {.lex_state = 92}, - [1508] = {.lex_state = 38}, - [1509] = {.lex_state = 454}, - [1510] = {.lex_state = 454}, - [1511] = {.lex_state = 454, .external_lex_state = 1}, - [1512] = {.lex_state = 106}, - [1513] = {.lex_state = 454}, - [1514] = {.lex_state = 454, .external_lex_state = 1}, - [1515] = {.lex_state = 38}, - [1516] = {.lex_state = 97}, - [1517] = {.lex_state = 454}, - [1518] = {.lex_state = 38}, - [1519] = {.lex_state = 454}, - [1520] = {.lex_state = 38}, - [1521] = {.lex_state = 454}, - [1522] = {.lex_state = 454}, - [1523] = {.lex_state = 106}, - [1524] = {.lex_state = 454}, - [1525] = {.lex_state = 454}, - [1526] = {.lex_state = 454}, - [1527] = {.lex_state = 38}, - [1528] = {.lex_state = 454}, - [1529] = {.lex_state = 38}, - [1530] = {.lex_state = 454}, - [1531] = {.lex_state = 454}, - [1532] = {.lex_state = 38}, - [1533] = {.lex_state = 97}, - [1534] = {.lex_state = 454, .external_lex_state = 1}, - [1535] = {.lex_state = 97}, - [1536] = {.lex_state = 454}, - [1537] = {.lex_state = 106}, - [1538] = {.lex_state = 97}, - [1539] = {.lex_state = 92}, - [1540] = {.lex_state = 454}, - [1541] = {.lex_state = 106}, - [1542] = {.lex_state = 97}, - [1543] = {.lex_state = 454}, - [1544] = {.lex_state = 454}, - [1545] = {.lex_state = 454}, - [1546] = {.lex_state = 454}, - [1547] = {.lex_state = 454}, - [1548] = {.lex_state = 454}, - [1549] = {.lex_state = 454}, - [1550] = {.lex_state = 454}, - [1551] = {.lex_state = 454}, - [1552] = {.lex_state = 454}, - [1553] = {.lex_state = 454}, - [1554] = {.lex_state = 454}, - [1555] = {.lex_state = 454}, - [1556] = {.lex_state = 454}, - [1557] = {.lex_state = 454}, - [1558] = {.lex_state = 454}, - [1559] = {.lex_state = 454}, - [1560] = {.lex_state = 454}, - [1561] = {.lex_state = 454}, - [1562] = {.lex_state = 454}, - [1563] = {.lex_state = 454}, - [1564] = {.lex_state = 454}, - [1565] = {.lex_state = 454}, - [1566] = {.lex_state = 454}, - [1567] = {.lex_state = 454}, - [1568] = {.lex_state = 454}, - [1569] = {.lex_state = 454}, - [1570] = {.lex_state = 454}, - [1571] = {.lex_state = 454}, - [1572] = {.lex_state = 454}, - [1573] = {.lex_state = 454}, - [1574] = {.lex_state = 454}, - [1575] = {.lex_state = 454}, - [1576] = {.lex_state = 454}, - [1577] = {.lex_state = 454}, - [1578] = {.lex_state = 454}, - [1579] = {.lex_state = 454}, - [1580] = {.lex_state = 454}, - [1581] = {.lex_state = 454}, - [1582] = {.lex_state = 94}, - [1583] = {.lex_state = 454}, - [1584] = {.lex_state = 454}, - [1585] = {.lex_state = 454}, - [1586] = {.lex_state = 454}, - [1587] = {.lex_state = 454, .external_lex_state = 1}, - [1588] = {.lex_state = 454}, - [1589] = {.lex_state = 454}, - [1590] = {.lex_state = 454}, - [1591] = {.lex_state = 454}, - [1592] = {.lex_state = 454}, - [1593] = {.lex_state = 454}, - [1594] = {.lex_state = 454}, - [1595] = {.lex_state = 454}, - [1596] = {.lex_state = 454}, - [1597] = {.lex_state = 454}, - [1598] = {.lex_state = 454}, - [1599] = {.lex_state = 454}, - [1600] = {.lex_state = 454}, - [1601] = {.lex_state = 454}, - [1602] = {.lex_state = 454}, - [1603] = {.lex_state = 454}, - [1604] = {.lex_state = 454}, - [1605] = {.lex_state = 454}, - [1606] = {.lex_state = 454}, - [1607] = {.lex_state = 454}, - [1608] = {.lex_state = 454}, - [1609] = {.lex_state = 454}, - [1610] = {.lex_state = 454}, - [1611] = {.lex_state = 119}, - [1612] = {.lex_state = 454}, - [1613] = {.lex_state = 454}, - [1614] = {.lex_state = 454}, - [1615] = {.lex_state = 454}, - [1616] = {.lex_state = 454}, - [1617] = {.lex_state = 454}, - [1618] = {.lex_state = 454}, - [1619] = {.lex_state = 82}, - [1620] = {.lex_state = 454}, - [1621] = {.lex_state = 454}, - [1622] = {.lex_state = 454}, - [1623] = {.lex_state = 454}, - [1624] = {.lex_state = 454}, - [1625] = {.lex_state = 454}, - [1626] = {.lex_state = 454}, - [1627] = {.lex_state = 94}, - [1628] = {.lex_state = 454}, - [1629] = {.lex_state = 454}, - [1630] = {.lex_state = 454}, - [1631] = {.lex_state = 454}, - [1632] = {.lex_state = 454}, - [1633] = {.lex_state = 454}, - [1634] = {.lex_state = 454}, - [1635] = {.lex_state = 454}, - [1636] = {.lex_state = 454}, - [1637] = {.lex_state = 454}, - [1638] = {.lex_state = 454, .external_lex_state = 1}, - [1639] = {.lex_state = 454}, - [1640] = {.lex_state = 454}, - [1641] = {.lex_state = 454}, - [1642] = {.lex_state = 454}, - [1643] = {.lex_state = 454}, - [1644] = {.lex_state = 454, .external_lex_state = 1}, - [1645] = {.lex_state = 454}, - [1646] = {.lex_state = 454}, - [1647] = {.lex_state = 454}, - [1648] = {.lex_state = 82}, - [1649] = {.lex_state = 454}, - [1650] = {.lex_state = 454}, - [1651] = {.lex_state = 454}, - [1652] = {.lex_state = 94}, - [1653] = {.lex_state = 454}, - [1654] = {.lex_state = 454}, - [1655] = {.lex_state = 454}, - [1656] = {.lex_state = 454, .external_lex_state = 1}, - [1657] = {.lex_state = 106}, - [1658] = {.lex_state = 454}, - [1659] = {.lex_state = 454}, - [1660] = {.lex_state = 454}, - [1661] = {.lex_state = 454}, - [1662] = {.lex_state = 454}, - [1663] = {.lex_state = 454}, - [1664] = {.lex_state = 454}, - [1665] = {.lex_state = 454}, - [1666] = {.lex_state = 454}, - [1667] = {.lex_state = 454}, - [1668] = {.lex_state = 82}, - [1669] = {.lex_state = 454}, - [1670] = {.lex_state = 454, .external_lex_state = 1}, - [1671] = {.lex_state = 454}, - [1672] = {.lex_state = 454}, - [1673] = {.lex_state = 94}, - [1674] = {.lex_state = 454}, - [1675] = {.lex_state = 454}, - [1676] = {.lex_state = 454}, - [1677] = {.lex_state = 454}, - [1678] = {.lex_state = 454}, - [1679] = {.lex_state = 454}, - [1680] = {.lex_state = 454}, - [1681] = {.lex_state = 454}, - [1682] = {.lex_state = 454}, - [1683] = {.lex_state = 454}, - [1684] = {.lex_state = 454}, - [1685] = {.lex_state = 454}, - [1686] = {.lex_state = 454}, - [1687] = {.lex_state = 454}, - [1688] = {.lex_state = 454}, - [1689] = {.lex_state = 119}, - [1690] = {.lex_state = 82}, - [1691] = {.lex_state = 454}, - [1692] = {.lex_state = 454}, - [1693] = {.lex_state = 454}, - [1694] = {.lex_state = 454}, - [1695] = {.lex_state = 454}, - [1696] = {.lex_state = 454}, - [1697] = {.lex_state = 454}, - [1698] = {.lex_state = 454}, - [1699] = {.lex_state = 454}, - [1700] = {.lex_state = 454}, - [1701] = {.lex_state = 454}, - [1702] = {.lex_state = 454}, - [1703] = {.lex_state = 454}, - [1704] = {.lex_state = 454, .external_lex_state = 1}, - [1705] = {.lex_state = 454}, - [1706] = {.lex_state = 119}, - [1707] = {.lex_state = 454}, - [1708] = {.lex_state = 454}, - [1709] = {.lex_state = 119}, - [1710] = {.lex_state = 454}, - [1711] = {.lex_state = 454}, - [1712] = {.lex_state = 454}, - [1713] = {.lex_state = 454}, - [1714] = {.lex_state = 454}, - [1715] = {.lex_state = 454}, - [1716] = {.lex_state = 454}, - [1717] = {.lex_state = 454}, - [1718] = {.lex_state = 454}, - [1719] = {.lex_state = 454}, - [1720] = {.lex_state = 454}, - [1721] = {.lex_state = 454}, - [1722] = {.lex_state = 454}, - [1723] = {.lex_state = 454}, - [1724] = {.lex_state = 454, .external_lex_state = 1}, - [1725] = {.lex_state = 454}, - [1726] = {.lex_state = 454}, - [1727] = {.lex_state = 454}, - [1728] = {.lex_state = 454, .external_lex_state = 1}, - [1729] = {.lex_state = 454}, - [1730] = {.lex_state = 454}, - [1731] = {.lex_state = 454}, - [1732] = {.lex_state = 454}, - [1733] = {.lex_state = 454}, - [1734] = {.lex_state = 454}, - [1735] = {.lex_state = 454}, - [1736] = {.lex_state = 454}, - [1737] = {.lex_state = 454, .external_lex_state = 1}, - [1738] = {.lex_state = 454}, - [1739] = {.lex_state = 454}, - [1740] = {.lex_state = 454}, - [1741] = {.lex_state = 454}, - [1742] = {.lex_state = 111}, - [1743] = {.lex_state = 454}, - [1744] = {.lex_state = 454}, - [1745] = {.lex_state = 454}, - [1746] = {.lex_state = 454}, - [1747] = {.lex_state = 454}, - [1748] = {.lex_state = 454, .external_lex_state = 1}, - [1749] = {.lex_state = 454}, - [1750] = {.lex_state = 82}, - [1751] = {.lex_state = 454}, - [1752] = {.lex_state = 454}, - [1753] = {.lex_state = 454, .external_lex_state = 1}, - [1754] = {.lex_state = 454}, - [1755] = {.lex_state = 454}, - [1756] = {.lex_state = 454}, - [1757] = {.lex_state = 454}, - [1758] = {.lex_state = 454}, - [1759] = {.lex_state = 454}, - [1760] = {.lex_state = 454}, - [1761] = {.lex_state = 454}, - [1762] = {.lex_state = 454}, - [1763] = {.lex_state = 454}, - [1764] = {.lex_state = 454}, - [1765] = {.lex_state = 454}, - [1766] = {.lex_state = 454}, - [1767] = {.lex_state = 454}, - [1768] = {.lex_state = 454}, - [1769] = {.lex_state = 454}, - [1770] = {.lex_state = 454}, - [1771] = {.lex_state = 454}, - [1772] = {.lex_state = 454}, - [1773] = {.lex_state = 454, .external_lex_state = 1}, - [1774] = {.lex_state = 454, .external_lex_state = 1}, - [1775] = {.lex_state = 454}, - [1776] = {.lex_state = 454, .external_lex_state = 1}, - [1777] = {.lex_state = 454}, - [1778] = {.lex_state = 454, .external_lex_state = 1}, - [1779] = {.lex_state = 454}, - [1780] = {.lex_state = 454}, - [1781] = {.lex_state = 454, .external_lex_state = 1}, - [1782] = {.lex_state = 454}, - [1783] = {.lex_state = 454}, - [1784] = {.lex_state = 454}, - [1785] = {.lex_state = 454, .external_lex_state = 1}, - [1786] = {.lex_state = 454, .external_lex_state = 1}, - [1787] = {.lex_state = 454}, - [1788] = {.lex_state = 454}, - [1789] = {.lex_state = 454}, - [1790] = {.lex_state = 454}, - [1791] = {.lex_state = 454}, - [1792] = {.lex_state = 454}, - [1793] = {.lex_state = 454}, - [1794] = {.lex_state = 454, .external_lex_state = 1}, - [1795] = {.lex_state = 454}, - [1796] = {.lex_state = 454}, - [1797] = {.lex_state = 454}, - [1798] = {.lex_state = 454}, - [1799] = {.lex_state = 454}, - [1800] = {.lex_state = 454, .external_lex_state = 1}, - [1801] = {.lex_state = 454}, - [1802] = {.lex_state = 454}, - [1803] = {.lex_state = 454, .external_lex_state = 1}, - [1804] = {.lex_state = 454}, - [1805] = {.lex_state = 454}, - [1806] = {.lex_state = 454}, - [1807] = {.lex_state = 454}, - [1808] = {.lex_state = 454}, - [1809] = {.lex_state = 454}, - [1810] = {.lex_state = 454}, - [1811] = {.lex_state = 454}, - [1812] = {.lex_state = 454}, - [1813] = {.lex_state = 454}, - [1814] = {.lex_state = 454}, - [1815] = {.lex_state = 454}, - [1816] = {.lex_state = 454}, - [1817] = {.lex_state = 454}, - [1818] = {.lex_state = 454}, - [1819] = {.lex_state = 454, .external_lex_state = 1}, - [1820] = {.lex_state = 454}, - [1821] = {.lex_state = 454, .external_lex_state = 1}, - [1822] = {.lex_state = 454}, - [1823] = {.lex_state = 454}, - [1824] = {.lex_state = 454}, - [1825] = {.lex_state = 454}, - [1826] = {.lex_state = 454}, - [1827] = {.lex_state = 454}, - [1828] = {.lex_state = 454}, - [1829] = {.lex_state = 454}, - [1830] = {.lex_state = 454}, - [1831] = {.lex_state = 454}, - [1832] = {.lex_state = 454}, - [1833] = {.lex_state = 454}, - [1834] = {.lex_state = 454, .external_lex_state = 1}, - [1835] = {.lex_state = 454}, - [1836] = {.lex_state = 454}, - [1837] = {.lex_state = 454, .external_lex_state = 1}, - [1838] = {.lex_state = 454}, - [1839] = {.lex_state = 454, .external_lex_state = 1}, - [1840] = {.lex_state = 454}, - [1841] = {.lex_state = 454}, - [1842] = {.lex_state = 454, .external_lex_state = 1}, - [1843] = {.lex_state = 454}, - [1844] = {.lex_state = 454}, - [1845] = {.lex_state = 454}, - [1846] = {.lex_state = 454, .external_lex_state = 1}, - [1847] = {.lex_state = 454}, - [1848] = {.lex_state = 454, .external_lex_state = 1}, - [1849] = {.lex_state = 454}, - [1850] = {.lex_state = 454}, - [1851] = {.lex_state = 454}, - [1852] = {.lex_state = 454}, - [1853] = {.lex_state = 454, .external_lex_state = 1}, - [1854] = {.lex_state = 454, .external_lex_state = 1}, - [1855] = {.lex_state = 454}, - [1856] = {.lex_state = 454}, - [1857] = {.lex_state = 454}, - [1858] = {.lex_state = 454}, - [1859] = {.lex_state = 454}, - [1860] = {.lex_state = 454}, - [1861] = {.lex_state = 454}, - [1862] = {.lex_state = 454, .external_lex_state = 1}, - [1863] = {.lex_state = 454, .external_lex_state = 1}, - [1864] = {.lex_state = 454}, - [1865] = {.lex_state = 454}, - [1866] = {.lex_state = 454, .external_lex_state = 1}, - [1867] = {.lex_state = 454}, - [1868] = {.lex_state = 454, .external_lex_state = 1}, - [1869] = {.lex_state = 454}, - [1870] = {.lex_state = 454}, - [1871] = {.lex_state = 454}, - [1872] = {.lex_state = 454}, - [1873] = {.lex_state = 454, .external_lex_state = 1}, - [1874] = {.lex_state = 454}, - [1875] = {.lex_state = 454, .external_lex_state = 1}, - [1876] = {.lex_state = 454, .external_lex_state = 1}, - [1877] = {.lex_state = 454}, - [1878] = {.lex_state = 454}, - [1879] = {.lex_state = 454}, - [1880] = {.lex_state = 454}, - [1881] = {.lex_state = 454}, - [1882] = {.lex_state = 454}, - [1883] = {.lex_state = 454}, - [1884] = {.lex_state = 454}, - [1885] = {.lex_state = 454}, - [1886] = {.lex_state = 454}, - [1887] = {.lex_state = 454}, - [1888] = {.lex_state = 454}, - [1889] = {.lex_state = 454}, - [1890] = {.lex_state = 454}, - [1891] = {.lex_state = 454, .external_lex_state = 1}, - [1892] = {.lex_state = 454}, - [1893] = {.lex_state = 454}, - [1894] = {.lex_state = 454}, - [1895] = {.lex_state = 454}, - [1896] = {.lex_state = 454}, - [1897] = {.lex_state = 454, .external_lex_state = 1}, - [1898] = {.lex_state = 454}, - [1899] = {.lex_state = 454, .external_lex_state = 1}, - [1900] = {.lex_state = 454, .external_lex_state = 1}, - [1901] = {.lex_state = 454, .external_lex_state = 1}, - [1902] = {.lex_state = 454, .external_lex_state = 1}, - [1903] = {.lex_state = 454, .external_lex_state = 1}, - [1904] = {.lex_state = 454}, - [1905] = {.lex_state = 454}, - [1906] = {.lex_state = 454}, - [1907] = {.lex_state = 454, .external_lex_state = 1}, - [1908] = {.lex_state = 82}, - [1909] = {.lex_state = 454}, - [1910] = {.lex_state = 454}, - [1911] = {.lex_state = 454, .external_lex_state = 1}, - [1912] = {.lex_state = 454}, - [1913] = {.lex_state = 454}, - [1914] = {.lex_state = 454}, - [1915] = {.lex_state = 454}, - [1916] = {.lex_state = 454}, - [1917] = {.lex_state = 454}, - [1918] = {.lex_state = 454, .external_lex_state = 1}, - [1919] = {.lex_state = 454}, - [1920] = {.lex_state = 454}, - [1921] = {.lex_state = 454}, - [1922] = {.lex_state = 454, .external_lex_state = 1}, - [1923] = {.lex_state = 454, .external_lex_state = 1}, - [1924] = {.lex_state = 454, .external_lex_state = 1}, - [1925] = {.lex_state = 454}, - [1926] = {.lex_state = 454}, - [1927] = {.lex_state = 454}, - [1928] = {.lex_state = 454}, - [1929] = {.lex_state = 454}, - [1930] = {.lex_state = 454}, - [1931] = {.lex_state = 454}, - [1932] = {.lex_state = 454}, - [1933] = {.lex_state = 454}, - [1934] = {.lex_state = 454}, - [1935] = {.lex_state = 454, .external_lex_state = 1}, - [1936] = {.lex_state = 454}, - [1937] = {.lex_state = 454}, - [1938] = {.lex_state = 454}, - [1939] = {.lex_state = 454}, - [1940] = {.lex_state = 454, .external_lex_state = 1}, - [1941] = {.lex_state = 454}, - [1942] = {.lex_state = 454}, - [1943] = {.lex_state = 454}, - [1944] = {.lex_state = 454}, - [1945] = {.lex_state = 454}, - [1946] = {.lex_state = 454}, - [1947] = {.lex_state = 454}, - [1948] = {.lex_state = 454}, - [1949] = {.lex_state = 454}, - [1950] = {.lex_state = 454, .external_lex_state = 1}, - [1951] = {.lex_state = 454}, - [1952] = {.lex_state = 454}, - [1953] = {.lex_state = 454}, - [1954] = {.lex_state = 454}, - [1955] = {.lex_state = 454, .external_lex_state = 1}, - [1956] = {.lex_state = 454}, - [1957] = {.lex_state = 454, .external_lex_state = 1}, - [1958] = {.lex_state = 454, .external_lex_state = 1}, - [1959] = {.lex_state = 454}, - [1960] = {.lex_state = 454}, - [1961] = {.lex_state = 454, .external_lex_state = 1}, - [1962] = {.lex_state = 454, .external_lex_state = 1}, - [1963] = {.lex_state = 454, .external_lex_state = 1}, - [1964] = {.lex_state = 454}, - [1965] = {.lex_state = 454}, - [1966] = {.lex_state = 454, .external_lex_state = 1}, - [1967] = {.lex_state = 454}, - [1968] = {.lex_state = 454}, - [1969] = {.lex_state = 82}, - [1970] = {.lex_state = 454}, - [1971] = {.lex_state = 454}, - [1972] = {.lex_state = 454}, - [1973] = {.lex_state = 454}, - [1974] = {.lex_state = 454}, - [1975] = {.lex_state = 454}, - [1976] = {.lex_state = 454}, - [1977] = {.lex_state = 454}, - [1978] = {.lex_state = 454}, - [1979] = {.lex_state = 454}, - [1980] = {.lex_state = 454}, - [1981] = {.lex_state = 454}, - [1982] = {.lex_state = 454}, - [1983] = {.lex_state = 454, .external_lex_state = 1}, - [1984] = {.lex_state = 454}, - [1985] = {.lex_state = 454}, - [1986] = {.lex_state = 454}, - [1987] = {.lex_state = 454}, - [1988] = {.lex_state = 454}, - [1989] = {.lex_state = 454, .external_lex_state = 1}, - [1990] = {.lex_state = 454, .external_lex_state = 1}, - [1991] = {.lex_state = 454}, - [1992] = {.lex_state = 454}, - [1993] = {.lex_state = 454}, - [1994] = {.lex_state = 454}, - [1995] = {.lex_state = 454}, - [1996] = {.lex_state = 454, .external_lex_state = 1}, - [1997] = {.lex_state = 454}, - [1998] = {.lex_state = 454}, - [1999] = {.lex_state = 454}, - [2000] = {.lex_state = 454}, - [2001] = {.lex_state = 454}, - [2002] = {.lex_state = 454}, - [2003] = {.lex_state = 454, .external_lex_state = 1}, - [2004] = {.lex_state = 454}, - [2005] = {.lex_state = 454}, - [2006] = {.lex_state = 454}, - [2007] = {.lex_state = 454}, - [2008] = {.lex_state = 454}, - [2009] = {.lex_state = 454}, - [2010] = {.lex_state = 454}, - [2011] = {.lex_state = 454, .external_lex_state = 1}, - [2012] = {.lex_state = 454}, - [2013] = {.lex_state = 454}, - [2014] = {.lex_state = 454}, - [2015] = {.lex_state = 454}, - [2016] = {.lex_state = 454}, - [2017] = {.lex_state = 454, .external_lex_state = 1}, - [2018] = {.lex_state = 454}, - [2019] = {.lex_state = 454}, - [2020] = {.lex_state = 454}, - [2021] = {.lex_state = 82}, - [2022] = {.lex_state = 82}, - [2023] = {.lex_state = 454}, - [2024] = {.lex_state = 454}, - [2025] = {.lex_state = 454}, - [2026] = {.lex_state = 454, .external_lex_state = 1}, - [2027] = {.lex_state = 454}, - [2028] = {.lex_state = 454, .external_lex_state = 1}, - [2029] = {.lex_state = 454}, - [2030] = {.lex_state = 82}, - [2031] = {.lex_state = 454, .external_lex_state = 1}, - [2032] = {.lex_state = 454, .external_lex_state = 1}, - [2033] = {.lex_state = 454}, - [2034] = {.lex_state = 454, .external_lex_state = 1}, - [2035] = {.lex_state = 454, .external_lex_state = 1}, - [2036] = {.lex_state = 454, .external_lex_state = 1}, - [2037] = {.lex_state = 454, .external_lex_state = 1}, - [2038] = {.lex_state = 454, .external_lex_state = 1}, - [2039] = {.lex_state = 454, .external_lex_state = 1}, - [2040] = {.lex_state = 454, .external_lex_state = 1}, - [2041] = {.lex_state = 454}, - [2042] = {.lex_state = 454}, - [2043] = {.lex_state = 454, .external_lex_state = 1}, - [2044] = {.lex_state = 454}, - [2045] = {.lex_state = 454}, - [2046] = {.lex_state = 454}, - [2047] = {.lex_state = 454}, - [2048] = {.lex_state = 454}, - [2049] = {.lex_state = 454}, - [2050] = {.lex_state = 454}, - [2051] = {.lex_state = 454}, - [2052] = {.lex_state = 454}, - [2053] = {.lex_state = 454, .external_lex_state = 1}, - [2054] = {.lex_state = 454}, - [2055] = {.lex_state = 454}, - [2056] = {.lex_state = 454}, - [2057] = {.lex_state = 454}, - [2058] = {.lex_state = 454}, - [2059] = {.lex_state = 454}, - [2060] = {.lex_state = 454}, - [2061] = {.lex_state = 454}, - [2062] = {.lex_state = 454}, - [2063] = {.lex_state = 454}, - [2064] = {.lex_state = 454}, - [2065] = {.lex_state = 454}, - [2066] = {.lex_state = 454}, - [2067] = {.lex_state = 454, .external_lex_state = 1}, - [2068] = {.lex_state = 454}, - [2069] = {.lex_state = 454}, - [2070] = {.lex_state = 454}, - [2071] = {.lex_state = 454, .external_lex_state = 1}, - [2072] = {.lex_state = 82}, - [2073] = {.lex_state = 82}, - [2074] = {.lex_state = 454}, - [2075] = {.lex_state = 454}, - [2076] = {.lex_state = 454}, - [2077] = {.lex_state = 454, .external_lex_state = 1}, - [2078] = {.lex_state = 454}, - [2079] = {.lex_state = 82}, - [2080] = {.lex_state = 454}, - [2081] = {.lex_state = 454, .external_lex_state = 1}, - [2082] = {.lex_state = 454}, - [2083] = {.lex_state = 454, .external_lex_state = 1}, - [2084] = {.lex_state = 454, .external_lex_state = 1}, - [2085] = {.lex_state = 454}, - [2086] = {.lex_state = 454, .external_lex_state = 1}, - [2087] = {.lex_state = 454, .external_lex_state = 1}, - [2088] = {.lex_state = 454, .external_lex_state = 1}, - [2089] = {.lex_state = 454}, - [2090] = {.lex_state = 454}, - [2091] = {.lex_state = 82}, - [2092] = {.lex_state = 82}, - [2093] = {.lex_state = 454, .external_lex_state = 1}, - [2094] = {.lex_state = 454, .external_lex_state = 1}, - [2095] = {.lex_state = 454, .external_lex_state = 1}, - [2096] = {.lex_state = 454}, - [2097] = {.lex_state = 82}, - [2098] = {.lex_state = 454}, - [2099] = {.lex_state = 454, .external_lex_state = 1}, - [2100] = {.lex_state = 454, .external_lex_state = 1}, - [2101] = {.lex_state = 454, .external_lex_state = 1}, - [2102] = {.lex_state = 454, .external_lex_state = 1}, - [2103] = {.lex_state = 454, .external_lex_state = 1}, - [2104] = {.lex_state = 454, .external_lex_state = 1}, - [2105] = {.lex_state = 454, .external_lex_state = 1}, - [2106] = {.lex_state = 454, .external_lex_state = 1}, - [2107] = {.lex_state = 454}, - [2108] = {.lex_state = 454}, - [2109] = {.lex_state = 454, .external_lex_state = 1}, - [2110] = {.lex_state = 454}, - [2111] = {.lex_state = 454}, - [2112] = {.lex_state = 454}, - [2113] = {.lex_state = 454}, - [2114] = {.lex_state = 454}, - [2115] = {.lex_state = 454}, - [2116] = {.lex_state = 454}, - [2117] = {.lex_state = 454}, - [2118] = {.lex_state = 454}, - [2119] = {.lex_state = 454}, - [2120] = {.lex_state = 454}, - [2121] = {.lex_state = 454}, - [2122] = {.lex_state = 82}, - [2123] = {.lex_state = 454}, - [2124] = {.lex_state = 454}, - [2125] = {.lex_state = 454}, - [2126] = {.lex_state = 454}, - [2127] = {.lex_state = 454, .external_lex_state = 1}, - [2128] = {.lex_state = 454}, - [2129] = {.lex_state = 454}, - [2130] = {.lex_state = 454}, - [2131] = {.lex_state = 454}, - [2132] = {.lex_state = 454}, - [2133] = {.lex_state = 454}, - [2134] = {.lex_state = 454}, - [2135] = {.lex_state = 454, .external_lex_state = 1}, - [2136] = {.lex_state = 454}, - [2137] = {.lex_state = 454, .external_lex_state = 1}, - [2138] = {.lex_state = 454}, - [2139] = {.lex_state = 454}, - [2140] = {.lex_state = 454}, - [2141] = {.lex_state = 454}, + [1] = {.lex_state = 139}, + [2] = {.lex_state = 518, .external_lex_state = 1}, + [3] = {.lex_state = 518, .external_lex_state = 1}, + [4] = {.lex_state = 518}, + [5] = {.lex_state = 518, .external_lex_state = 1}, + [6] = {.lex_state = 518}, + [7] = {.lex_state = 140, .external_lex_state = 1}, + [8] = {.lex_state = 140}, + [9] = {.lex_state = 140}, + [10] = {.lex_state = 140}, + [11] = {.lex_state = 140}, + [12] = {.lex_state = 140}, + [13] = {.lex_state = 140}, + [14] = {.lex_state = 140}, + [15] = {.lex_state = 140, .external_lex_state = 1}, + [16] = {.lex_state = 140}, + [17] = {.lex_state = 140}, + [18] = {.lex_state = 140}, + [19] = {.lex_state = 140}, + [20] = {.lex_state = 140}, + [21] = {.lex_state = 140, .external_lex_state = 1}, + [22] = {.lex_state = 140}, + [23] = {.lex_state = 140, .external_lex_state = 1}, + [24] = {.lex_state = 140, .external_lex_state = 1}, + [25] = {.lex_state = 140, .external_lex_state = 1}, + [26] = {.lex_state = 140, .external_lex_state = 1}, + [27] = {.lex_state = 140, .external_lex_state = 1}, + [28] = {.lex_state = 140, .external_lex_state = 1}, + [29] = {.lex_state = 140, .external_lex_state = 1}, + [30] = {.lex_state = 140}, + [31] = {.lex_state = 140}, + [32] = {.lex_state = 140}, + [33] = {.lex_state = 140}, + [34] = {.lex_state = 140}, + [35] = {.lex_state = 140}, + [36] = {.lex_state = 140}, + [37] = {.lex_state = 140}, + [38] = {.lex_state = 140}, + [39] = {.lex_state = 140}, + [40] = {.lex_state = 141}, + [41] = {.lex_state = 141}, + [42] = {.lex_state = 520}, + [43] = {.lex_state = 520}, + [44] = {.lex_state = 520}, + [45] = {.lex_state = 520}, + [46] = {.lex_state = 520}, + [47] = {.lex_state = 520}, + [48] = {.lex_state = 520}, + [49] = {.lex_state = 520}, + [50] = {.lex_state = 520}, + [51] = {.lex_state = 520}, + [52] = {.lex_state = 520}, + [53] = {.lex_state = 520}, + [54] = {.lex_state = 520}, + [55] = {.lex_state = 520}, + [56] = {.lex_state = 520}, + [57] = {.lex_state = 520}, + [58] = {.lex_state = 520}, + [59] = {.lex_state = 520}, + [60] = {.lex_state = 520}, + [61] = {.lex_state = 520}, + [62] = {.lex_state = 520}, + [63] = {.lex_state = 520}, + [64] = {.lex_state = 520}, + [65] = {.lex_state = 520}, + [66] = {.lex_state = 520}, + [67] = {.lex_state = 520}, + [68] = {.lex_state = 520}, + [69] = {.lex_state = 520}, + [70] = {.lex_state = 520}, + [71] = {.lex_state = 520}, + [72] = {.lex_state = 520}, + [73] = {.lex_state = 520}, + [74] = {.lex_state = 518}, + [75] = {.lex_state = 518, .external_lex_state = 1}, + [76] = {.lex_state = 520}, + [77] = {.lex_state = 520}, + [78] = {.lex_state = 520}, + [79] = {.lex_state = 131}, + [80] = {.lex_state = 131}, + [81] = {.lex_state = 131, .external_lex_state = 1}, + [82] = {.lex_state = 131, .external_lex_state = 1}, + [83] = {.lex_state = 142}, + [84] = {.lex_state = 142}, + [85] = {.lex_state = 142}, + [86] = {.lex_state = 142}, + [87] = {.lex_state = 142}, + [88] = {.lex_state = 142}, + [89] = {.lex_state = 142}, + [90] = {.lex_state = 142}, + [91] = {.lex_state = 142}, + [92] = {.lex_state = 142}, + [93] = {.lex_state = 142}, + [94] = {.lex_state = 142}, + [95] = {.lex_state = 142}, + [96] = {.lex_state = 142}, + [97] = {.lex_state = 142}, + [98] = {.lex_state = 142}, + [99] = {.lex_state = 142}, + [100] = {.lex_state = 142}, + [101] = {.lex_state = 142}, + [102] = {.lex_state = 142}, + [103] = {.lex_state = 142}, + [104] = {.lex_state = 142}, + [105] = {.lex_state = 142}, + [106] = {.lex_state = 142}, + [107] = {.lex_state = 142}, + [108] = {.lex_state = 142}, + [109] = {.lex_state = 142}, + [110] = {.lex_state = 142}, + [111] = {.lex_state = 142}, + [112] = {.lex_state = 142}, + [113] = {.lex_state = 142}, + [114] = {.lex_state = 142}, + [115] = {.lex_state = 142, .external_lex_state = 1}, + [116] = {.lex_state = 142, .external_lex_state = 1}, + [117] = {.lex_state = 142, .external_lex_state = 1}, + [118] = {.lex_state = 142, .external_lex_state = 1}, + [119] = {.lex_state = 142}, + [120] = {.lex_state = 142}, + [121] = {.lex_state = 142}, + [122] = {.lex_state = 142, .external_lex_state = 1}, + [123] = {.lex_state = 142, .external_lex_state = 1}, + [124] = {.lex_state = 142, .external_lex_state = 1}, + [125] = {.lex_state = 142, .external_lex_state = 1}, + [126] = {.lex_state = 142, .external_lex_state = 1}, + [127] = {.lex_state = 142, .external_lex_state = 1}, + [128] = {.lex_state = 142, .external_lex_state = 1}, + [129] = {.lex_state = 142, .external_lex_state = 1}, + [130] = {.lex_state = 142, .external_lex_state = 1}, + [131] = {.lex_state = 142, .external_lex_state = 1}, + [132] = {.lex_state = 142, .external_lex_state = 1}, + [133] = {.lex_state = 142, .external_lex_state = 1}, + [134] = {.lex_state = 142, .external_lex_state = 1}, + [135] = {.lex_state = 142, .external_lex_state = 1}, + [136] = {.lex_state = 142, .external_lex_state = 1}, + [137] = {.lex_state = 142, .external_lex_state = 1}, + [138] = {.lex_state = 142, .external_lex_state = 1}, + [139] = {.lex_state = 142, .external_lex_state = 1}, + [140] = {.lex_state = 142, .external_lex_state = 1}, + [141] = {.lex_state = 142, .external_lex_state = 1}, + [142] = {.lex_state = 142, .external_lex_state = 1}, + [143] = {.lex_state = 142, .external_lex_state = 1}, + [144] = {.lex_state = 142, .external_lex_state = 1}, + [145] = {.lex_state = 142, .external_lex_state = 1}, + [146] = {.lex_state = 142, .external_lex_state = 1}, + [147] = {.lex_state = 142, .external_lex_state = 1}, + [148] = {.lex_state = 142, .external_lex_state = 1}, + [149] = {.lex_state = 142, .external_lex_state = 1}, + [150] = {.lex_state = 142, .external_lex_state = 1}, + [151] = {.lex_state = 142, .external_lex_state = 1}, + [152] = {.lex_state = 142, .external_lex_state = 1}, + [153] = {.lex_state = 142}, + [154] = {.lex_state = 142, .external_lex_state = 1}, + [155] = {.lex_state = 142}, + [156] = {.lex_state = 142, .external_lex_state = 1}, + [157] = {.lex_state = 144}, + [158] = {.lex_state = 144}, + [159] = {.lex_state = 144}, + [160] = {.lex_state = 144, .external_lex_state = 1}, + [161] = {.lex_state = 144, .external_lex_state = 1}, + [162] = {.lex_state = 144, .external_lex_state = 1}, + [163] = {.lex_state = 144}, + [164] = {.lex_state = 144}, + [165] = {.lex_state = 144}, + [166] = {.lex_state = 144}, + [167] = {.lex_state = 144}, + [168] = {.lex_state = 144}, + [169] = {.lex_state = 144}, + [170] = {.lex_state = 144}, + [171] = {.lex_state = 144}, + [172] = {.lex_state = 144, .external_lex_state = 1}, + [173] = {.lex_state = 144, .external_lex_state = 1}, + [174] = {.lex_state = 144, .external_lex_state = 1}, + [175] = {.lex_state = 144, .external_lex_state = 1}, + [176] = {.lex_state = 144, .external_lex_state = 1}, + [177] = {.lex_state = 144, .external_lex_state = 1}, + [178] = {.lex_state = 144, .external_lex_state = 1}, + [179] = {.lex_state = 144, .external_lex_state = 1}, + [180] = {.lex_state = 144, .external_lex_state = 1}, + [181] = {.lex_state = 144, .external_lex_state = 1}, + [182] = {.lex_state = 144}, + [183] = {.lex_state = 144}, + [184] = {.lex_state = 144, .external_lex_state = 1}, + [185] = {.lex_state = 144}, + [186] = {.lex_state = 144, .external_lex_state = 1}, + [187] = {.lex_state = 144}, + [188] = {.lex_state = 144, .external_lex_state = 1}, + [189] = {.lex_state = 144, .external_lex_state = 1}, + [190] = {.lex_state = 144}, + [191] = {.lex_state = 144, .external_lex_state = 1}, + [192] = {.lex_state = 144}, + [193] = {.lex_state = 131}, + [194] = {.lex_state = 144, .external_lex_state = 1}, + [195] = {.lex_state = 131, .external_lex_state = 1}, + [196] = {.lex_state = 144}, + [197] = {.lex_state = 144, .external_lex_state = 1}, + [198] = {.lex_state = 144}, + [199] = {.lex_state = 518, .external_lex_state = 1}, + [200] = {.lex_state = 518}, + [201] = {.lex_state = 518, .external_lex_state = 1}, + [202] = {.lex_state = 518}, + [203] = {.lex_state = 106}, + [204] = {.lex_state = 106, .external_lex_state = 1}, + [205] = {.lex_state = 106, .external_lex_state = 1}, + [206] = {.lex_state = 106}, + [207] = {.lex_state = 108, .external_lex_state = 1}, + [208] = {.lex_state = 108}, + [209] = {.lex_state = 126}, + [210] = {.lex_state = 108, .external_lex_state = 1}, + [211] = {.lex_state = 108}, + [212] = {.lex_state = 126, .external_lex_state = 1}, + [213] = {.lex_state = 21}, + [214] = {.lex_state = 21}, + [215] = {.lex_state = 21}, + [216] = {.lex_state = 21}, + [217] = {.lex_state = 21}, + [218] = {.lex_state = 21}, + [219] = {.lex_state = 128, .external_lex_state = 1}, + [220] = {.lex_state = 21}, + [221] = {.lex_state = 21}, + [222] = {.lex_state = 21}, + [223] = {.lex_state = 128}, + [224] = {.lex_state = 21}, + [225] = {.lex_state = 21}, + [226] = {.lex_state = 21}, + [227] = {.lex_state = 138}, + [228] = {.lex_state = 138}, + [229] = {.lex_state = 138}, + [230] = {.lex_state = 138}, + [231] = {.lex_state = 138}, + [232] = {.lex_state = 138}, + [233] = {.lex_state = 138}, + [234] = {.lex_state = 138}, + [235] = {.lex_state = 138}, + [236] = {.lex_state = 138}, + [237] = {.lex_state = 138}, + [238] = {.lex_state = 138}, + [239] = {.lex_state = 138}, + [240] = {.lex_state = 138}, + [241] = {.lex_state = 138}, + [242] = {.lex_state = 138}, + [243] = {.lex_state = 138}, + [244] = {.lex_state = 138}, + [245] = {.lex_state = 134, .external_lex_state = 1}, + [246] = {.lex_state = 134}, + [247] = {.lex_state = 138, .external_lex_state = 1}, + [248] = {.lex_state = 134, .external_lex_state = 1}, + [249] = {.lex_state = 134}, + [250] = {.lex_state = 138}, + [251] = {.lex_state = 138}, + [252] = {.lex_state = 138}, + [253] = {.lex_state = 138}, + [254] = {.lex_state = 138}, + [255] = {.lex_state = 138}, + [256] = {.lex_state = 138}, + [257] = {.lex_state = 145, .external_lex_state = 1}, + [258] = {.lex_state = 138}, + [259] = {.lex_state = 138}, + [260] = {.lex_state = 145}, + [261] = {.lex_state = 138}, + [262] = {.lex_state = 138}, + [263] = {.lex_state = 138}, + [264] = {.lex_state = 138}, + [265] = {.lex_state = 138}, + [266] = {.lex_state = 138}, + [267] = {.lex_state = 138}, + [268] = {.lex_state = 138}, + [269] = {.lex_state = 138}, + [270] = {.lex_state = 138}, + [271] = {.lex_state = 138}, + [272] = {.lex_state = 138}, + [273] = {.lex_state = 138}, + [274] = {.lex_state = 138}, + [275] = {.lex_state = 138}, + [276] = {.lex_state = 138}, + [277] = {.lex_state = 138}, + [278] = {.lex_state = 138}, + [279] = {.lex_state = 138}, + [280] = {.lex_state = 138}, + [281] = {.lex_state = 138}, + [282] = {.lex_state = 138}, + [283] = {.lex_state = 138}, + [284] = {.lex_state = 138}, + [285] = {.lex_state = 138}, + [286] = {.lex_state = 138}, + [287] = {.lex_state = 521}, + [288] = {.lex_state = 522}, + [289] = {.lex_state = 521}, + [290] = {.lex_state = 522}, + [291] = {.lex_state = 140, .external_lex_state = 1}, + [292] = {.lex_state = 521}, + [293] = {.lex_state = 521}, + [294] = {.lex_state = 140, .external_lex_state = 1}, + [295] = {.lex_state = 140, .external_lex_state = 1}, + [296] = {.lex_state = 141}, + [297] = {.lex_state = 522}, + [298] = {.lex_state = 522}, + [299] = {.lex_state = 521}, + [300] = {.lex_state = 521}, + [301] = {.lex_state = 522}, + [302] = {.lex_state = 522}, + [303] = {.lex_state = 142}, + [304] = {.lex_state = 141}, + [305] = {.lex_state = 521}, + [306] = {.lex_state = 142}, + [307] = {.lex_state = 522}, + [308] = {.lex_state = 142, .external_lex_state = 1}, + [309] = {.lex_state = 521}, + [310] = {.lex_state = 522}, + [311] = {.lex_state = 523}, + [312] = {.lex_state = 524}, + [313] = {.lex_state = 522}, + [314] = {.lex_state = 521}, + [315] = {.lex_state = 521}, + [316] = {.lex_state = 522}, + [317] = {.lex_state = 142, .external_lex_state = 1}, + [318] = {.lex_state = 524}, + [319] = {.lex_state = 521}, + [320] = {.lex_state = 523}, + [321] = {.lex_state = 521}, + [322] = {.lex_state = 521}, + [323] = {.lex_state = 522}, + [324] = {.lex_state = 522}, + [325] = {.lex_state = 521}, + [326] = {.lex_state = 520}, + [327] = {.lex_state = 520}, + [328] = {.lex_state = 520}, + [329] = {.lex_state = 520}, + [330] = {.lex_state = 520}, + [331] = {.lex_state = 520}, + [332] = {.lex_state = 520}, + [333] = {.lex_state = 520}, + [334] = {.lex_state = 520}, + [335] = {.lex_state = 520}, + [336] = {.lex_state = 520}, + [337] = {.lex_state = 520}, + [338] = {.lex_state = 520}, + [339] = {.lex_state = 520}, + [340] = {.lex_state = 520}, + [341] = {.lex_state = 520}, + [342] = {.lex_state = 520}, + [343] = {.lex_state = 520}, + [344] = {.lex_state = 520}, + [345] = {.lex_state = 520}, + [346] = {.lex_state = 520}, + [347] = {.lex_state = 520}, + [348] = {.lex_state = 520}, + [349] = {.lex_state = 520}, + [350] = {.lex_state = 520}, + [351] = {.lex_state = 520}, + [352] = {.lex_state = 520}, + [353] = {.lex_state = 520}, + [354] = {.lex_state = 520}, + [355] = {.lex_state = 520}, + [356] = {.lex_state = 520}, + [357] = {.lex_state = 520}, + [358] = {.lex_state = 520}, + [359] = {.lex_state = 520}, + [360] = {.lex_state = 520}, + [361] = {.lex_state = 520}, + [362] = {.lex_state = 520}, + [363] = {.lex_state = 520}, + [364] = {.lex_state = 520}, + [365] = {.lex_state = 520}, + [366] = {.lex_state = 520}, + [367] = {.lex_state = 520}, + [368] = {.lex_state = 520}, + [369] = {.lex_state = 520}, + [370] = {.lex_state = 520}, + [371] = {.lex_state = 520}, + [372] = {.lex_state = 520}, + [373] = {.lex_state = 520}, + [374] = {.lex_state = 520}, + [375] = {.lex_state = 520}, + [376] = {.lex_state = 520}, + [377] = {.lex_state = 520}, + [378] = {.lex_state = 520}, + [379] = {.lex_state = 520}, + [380] = {.lex_state = 520}, + [381] = {.lex_state = 520}, + [382] = {.lex_state = 520}, + [383] = {.lex_state = 520}, + [384] = {.lex_state = 520}, + [385] = {.lex_state = 520}, + [386] = {.lex_state = 520}, + [387] = {.lex_state = 520}, + [388] = {.lex_state = 520}, + [389] = {.lex_state = 520}, + [390] = {.lex_state = 520}, + [391] = {.lex_state = 520}, + [392] = {.lex_state = 520}, + [393] = {.lex_state = 520}, + [394] = {.lex_state = 520}, + [395] = {.lex_state = 520}, + [396] = {.lex_state = 520}, + [397] = {.lex_state = 520}, + [398] = {.lex_state = 520}, + [399] = {.lex_state = 520}, + [400] = {.lex_state = 520}, + [401] = {.lex_state = 520}, + [402] = {.lex_state = 520}, + [403] = {.lex_state = 520}, + [404] = {.lex_state = 520}, + [405] = {.lex_state = 520}, + [406] = {.lex_state = 520}, + [407] = {.lex_state = 520}, + [408] = {.lex_state = 520}, + [409] = {.lex_state = 520}, + [410] = {.lex_state = 520}, + [411] = {.lex_state = 520}, + [412] = {.lex_state = 520}, + [413] = {.lex_state = 520}, + [414] = {.lex_state = 520}, + [415] = {.lex_state = 520}, + [416] = {.lex_state = 520}, + [417] = {.lex_state = 520}, + [418] = {.lex_state = 520}, + [419] = {.lex_state = 520}, + [420] = {.lex_state = 520}, + [421] = {.lex_state = 520}, + [422] = {.lex_state = 520}, + [423] = {.lex_state = 520}, + [424] = {.lex_state = 520}, + [425] = {.lex_state = 520}, + [426] = {.lex_state = 520}, + [427] = {.lex_state = 520}, + [428] = {.lex_state = 520}, + [429] = {.lex_state = 520}, + [430] = {.lex_state = 131}, + [431] = {.lex_state = 144}, + [432] = {.lex_state = 131}, + [433] = {.lex_state = 144, .external_lex_state = 1}, + [434] = {.lex_state = 144}, + [435] = {.lex_state = 144, .external_lex_state = 1}, + [436] = {.lex_state = 144, .external_lex_state = 1}, + [437] = {.lex_state = 106}, + [438] = {.lex_state = 144}, + [439] = {.lex_state = 144}, + [440] = {.lex_state = 106, .external_lex_state = 1}, + [441] = {.lex_state = 144}, + [442] = {.lex_state = 126}, + [443] = {.lex_state = 108, .external_lex_state = 1}, + [444] = {.lex_state = 108}, + [445] = {.lex_state = 126, .external_lex_state = 1}, + [446] = {.lex_state = 144}, + [447] = {.lex_state = 144}, + [448] = {.lex_state = 144}, + [449] = {.lex_state = 126, .external_lex_state = 1}, + [450] = {.lex_state = 126}, + [451] = {.lex_state = 144}, + [452] = {.lex_state = 131}, + [453] = {.lex_state = 131}, + [454] = {.lex_state = 144, .external_lex_state = 1}, + [455] = {.lex_state = 126}, + [456] = {.lex_state = 131}, + [457] = {.lex_state = 131}, + [458] = {.lex_state = 131}, + [459] = {.lex_state = 144}, + [460] = {.lex_state = 128, .external_lex_state = 1}, + [461] = {.lex_state = 144}, + [462] = {.lex_state = 128, .external_lex_state = 1}, + [463] = {.lex_state = 131}, + [464] = {.lex_state = 144}, + [465] = {.lex_state = 128}, + [466] = {.lex_state = 144, .external_lex_state = 1}, + [467] = {.lex_state = 144, .external_lex_state = 1}, + [468] = {.lex_state = 144}, + [469] = {.lex_state = 131}, + [470] = {.lex_state = 144, .external_lex_state = 1}, + [471] = {.lex_state = 126, .external_lex_state = 1}, + [472] = {.lex_state = 128}, + [473] = {.lex_state = 131}, + [474] = {.lex_state = 131}, + [475] = {.lex_state = 131}, + [476] = {.lex_state = 128, .external_lex_state = 1}, + [477] = {.lex_state = 131}, + [478] = {.lex_state = 144}, + [479] = {.lex_state = 128}, + [480] = {.lex_state = 131}, + [481] = {.lex_state = 131}, + [482] = {.lex_state = 131}, + [483] = {.lex_state = 131}, + [484] = {.lex_state = 131}, + [485] = {.lex_state = 131}, + [486] = {.lex_state = 131}, + [487] = {.lex_state = 131}, + [488] = {.lex_state = 131}, + [489] = {.lex_state = 131}, + [490] = {.lex_state = 144}, + [491] = {.lex_state = 131}, + [492] = {.lex_state = 131}, + [493] = {.lex_state = 144, .external_lex_state = 1}, + [494] = {.lex_state = 144}, + [495] = {.lex_state = 144}, + [496] = {.lex_state = 144, .external_lex_state = 1}, + [497] = {.lex_state = 144}, + [498] = {.lex_state = 144}, + [499] = {.lex_state = 144}, + [500] = {.lex_state = 144}, + [501] = {.lex_state = 144}, + [502] = {.lex_state = 131}, + [503] = {.lex_state = 144}, + [504] = {.lex_state = 131}, + [505] = {.lex_state = 131}, + [506] = {.lex_state = 131}, + [507] = {.lex_state = 131}, + [508] = {.lex_state = 127, .external_lex_state = 1}, + [509] = {.lex_state = 127}, + [510] = {.lex_state = 134, .external_lex_state = 1}, + [511] = {.lex_state = 131}, + [512] = {.lex_state = 127}, + [513] = {.lex_state = 127, .external_lex_state = 1}, + [514] = {.lex_state = 134}, + [515] = {.lex_state = 131}, + [516] = {.lex_state = 131}, + [517] = {.lex_state = 131}, + [518] = {.lex_state = 131}, + [519] = {.lex_state = 131}, + [520] = {.lex_state = 144}, + [521] = {.lex_state = 144}, + [522] = {.lex_state = 131}, + [523] = {.lex_state = 131}, + [524] = {.lex_state = 131}, + [525] = {.lex_state = 131}, + [526] = {.lex_state = 131}, + [527] = {.lex_state = 131}, + [528] = {.lex_state = 131}, + [529] = {.lex_state = 131}, + [530] = {.lex_state = 131}, + [531] = {.lex_state = 131}, + [532] = {.lex_state = 131}, + [533] = {.lex_state = 145}, + [534] = {.lex_state = 131}, + [535] = {.lex_state = 131}, + [536] = {.lex_state = 131}, + [537] = {.lex_state = 131}, + [538] = {.lex_state = 145, .external_lex_state = 1}, + [539] = {.lex_state = 131}, + [540] = {.lex_state = 144}, + [541] = {.lex_state = 144}, + [542] = {.lex_state = 144}, + [543] = {.lex_state = 131}, + [544] = {.lex_state = 144, .external_lex_state = 1}, + [545] = {.lex_state = 131}, + [546] = {.lex_state = 131}, + [547] = {.lex_state = 131}, + [548] = {.lex_state = 136, .external_lex_state = 1}, + [549] = {.lex_state = 136}, + [550] = {.lex_state = 136}, + [551] = {.lex_state = 131}, + [552] = {.lex_state = 518}, + [553] = {.lex_state = 131}, + [554] = {.lex_state = 144, .external_lex_state = 1}, + [555] = {.lex_state = 144}, + [556] = {.lex_state = 518}, + [557] = {.lex_state = 136, .external_lex_state = 1}, + [558] = {.lex_state = 150}, + [559] = {.lex_state = 518}, + [560] = {.lex_state = 131}, + [561] = {.lex_state = 131}, + [562] = {.lex_state = 131}, + [563] = {.lex_state = 131}, + [564] = {.lex_state = 131, .external_lex_state = 1}, + [565] = {.lex_state = 518, .external_lex_state = 1}, + [566] = {.lex_state = 131}, + [567] = {.lex_state = 518, .external_lex_state = 1}, + [568] = {.lex_state = 518}, + [569] = {.lex_state = 131}, + [570] = {.lex_state = 144}, + [571] = {.lex_state = 131}, + [572] = {.lex_state = 131}, + [573] = {.lex_state = 131}, + [574] = {.lex_state = 144}, + [575] = {.lex_state = 131}, + [576] = {.lex_state = 131}, + [577] = {.lex_state = 150}, + [578] = {.lex_state = 131}, + [579] = {.lex_state = 131}, + [580] = {.lex_state = 131}, + [581] = {.lex_state = 131}, + [582] = {.lex_state = 518}, + [583] = {.lex_state = 150}, + [584] = {.lex_state = 131}, + [585] = {.lex_state = 131}, + [586] = {.lex_state = 150}, + [587] = {.lex_state = 518}, + [588] = {.lex_state = 131}, + [589] = {.lex_state = 150}, + [590] = {.lex_state = 150}, + [591] = {.lex_state = 131}, + [592] = {.lex_state = 131}, + [593] = {.lex_state = 131}, + [594] = {.lex_state = 131}, + [595] = {.lex_state = 131}, + [596] = {.lex_state = 131}, + [597] = {.lex_state = 131}, + [598] = {.lex_state = 131}, + [599] = {.lex_state = 131}, + [600] = {.lex_state = 131}, + [601] = {.lex_state = 131}, + [602] = {.lex_state = 131}, + [603] = {.lex_state = 131}, + [604] = {.lex_state = 131}, + [605] = {.lex_state = 131}, + [606] = {.lex_state = 131}, + [607] = {.lex_state = 131}, + [608] = {.lex_state = 131}, + [609] = {.lex_state = 131}, + [610] = {.lex_state = 131}, + [611] = {.lex_state = 131}, + [612] = {.lex_state = 131}, + [613] = {.lex_state = 131}, + [614] = {.lex_state = 131}, + [615] = {.lex_state = 131}, + [616] = {.lex_state = 131}, + [617] = {.lex_state = 131}, + [618] = {.lex_state = 131}, + [619] = {.lex_state = 131}, + [620] = {.lex_state = 131}, + [621] = {.lex_state = 131}, + [622] = {.lex_state = 131}, + [623] = {.lex_state = 131}, + [624] = {.lex_state = 131}, + [625] = {.lex_state = 131}, + [626] = {.lex_state = 131}, + [627] = {.lex_state = 131}, + [628] = {.lex_state = 131}, + [629] = {.lex_state = 131}, + [630] = {.lex_state = 131}, + [631] = {.lex_state = 131}, + [632] = {.lex_state = 131}, + [633] = {.lex_state = 131}, + [634] = {.lex_state = 131}, + [635] = {.lex_state = 131}, + [636] = {.lex_state = 131}, + [637] = {.lex_state = 131}, + [638] = {.lex_state = 131}, + [639] = {.lex_state = 131}, + [640] = {.lex_state = 131}, + [641] = {.lex_state = 131}, + [642] = {.lex_state = 131}, + [643] = {.lex_state = 131}, + [644] = {.lex_state = 131}, + [645] = {.lex_state = 131}, + [646] = {.lex_state = 131}, + [647] = {.lex_state = 131}, + [648] = {.lex_state = 131}, + [649] = {.lex_state = 131}, + [650] = {.lex_state = 131}, + [651] = {.lex_state = 131}, + [652] = {.lex_state = 131}, + [653] = {.lex_state = 131}, + [654] = {.lex_state = 131}, + [655] = {.lex_state = 131}, + [656] = {.lex_state = 131}, + [657] = {.lex_state = 131}, + [658] = {.lex_state = 131}, + [659] = {.lex_state = 131}, + [660] = {.lex_state = 131}, + [661] = {.lex_state = 131}, + [662] = {.lex_state = 131}, + [663] = {.lex_state = 131}, + [664] = {.lex_state = 131}, + [665] = {.lex_state = 131}, + [666] = {.lex_state = 131}, + [667] = {.lex_state = 131}, + [668] = {.lex_state = 131}, + [669] = {.lex_state = 131}, + [670] = {.lex_state = 131}, + [671] = {.lex_state = 131}, + [672] = {.lex_state = 131}, + [673] = {.lex_state = 131}, + [674] = {.lex_state = 131}, + [675] = {.lex_state = 131}, + [676] = {.lex_state = 131}, + [677] = {.lex_state = 131}, + [678] = {.lex_state = 131}, + [679] = {.lex_state = 131}, + [680] = {.lex_state = 131}, + [681] = {.lex_state = 131}, + [682] = {.lex_state = 131}, + [683] = {.lex_state = 131}, + [684] = {.lex_state = 112}, + [685] = {.lex_state = 131}, + [686] = {.lex_state = 112, .external_lex_state = 1}, + [687] = {.lex_state = 131}, + [688] = {.lex_state = 131}, + [689] = {.lex_state = 131}, + [690] = {.lex_state = 131}, + [691] = {.lex_state = 131}, + [692] = {.lex_state = 112, .external_lex_state = 1}, + [693] = {.lex_state = 131}, + [694] = {.lex_state = 131}, + [695] = {.lex_state = 131}, + [696] = {.lex_state = 131}, + [697] = {.lex_state = 112}, + [698] = {.lex_state = 114, .external_lex_state = 1}, + [699] = {.lex_state = 114, .external_lex_state = 1}, + [700] = {.lex_state = 114}, + [701] = {.lex_state = 114}, + [702] = {.lex_state = 151}, + [703] = {.lex_state = 109}, + [704] = {.lex_state = 109}, + [705] = {.lex_state = 151}, + [706] = {.lex_state = 151}, + [707] = {.lex_state = 109}, + [708] = {.lex_state = 109}, + [709] = {.lex_state = 109}, + [710] = {.lex_state = 109}, + [711] = {.lex_state = 151}, + [712] = {.lex_state = 122}, + [713] = {.lex_state = 116}, + [714] = {.lex_state = 116, .external_lex_state = 1}, + [715] = {.lex_state = 151}, + [716] = {.lex_state = 122}, + [717] = {.lex_state = 159}, + [718] = {.lex_state = 122, .external_lex_state = 1}, + [719] = {.lex_state = 116, .external_lex_state = 1}, + [720] = {.lex_state = 122, .external_lex_state = 1}, + [721] = {.lex_state = 116}, + [722] = {.lex_state = 151}, + [723] = {.lex_state = 122, .external_lex_state = 1}, + [724] = {.lex_state = 122}, + [725] = {.lex_state = 117, .external_lex_state = 1}, + [726] = {.lex_state = 122}, + [727] = {.lex_state = 123}, + [728] = {.lex_state = 117, .external_lex_state = 1}, + [729] = {.lex_state = 117}, + [730] = {.lex_state = 117}, + [731] = {.lex_state = 123, .external_lex_state = 1}, + [732] = {.lex_state = 122, .external_lex_state = 1}, + [733] = {.lex_state = 123, .external_lex_state = 1}, + [734] = {.lex_state = 123}, + [735] = {.lex_state = 123, .external_lex_state = 1}, + [736] = {.lex_state = 116}, + [737] = {.lex_state = 118, .external_lex_state = 1}, + [738] = {.lex_state = 123}, + [739] = {.lex_state = 118}, + [740] = {.lex_state = 123}, + [741] = {.lex_state = 123, .external_lex_state = 1}, + [742] = {.lex_state = 116, .external_lex_state = 1}, + [743] = {.lex_state = 118}, + [744] = {.lex_state = 118, .external_lex_state = 1}, + [745] = {.lex_state = 118}, + [746] = {.lex_state = 118, .external_lex_state = 1}, + [747] = {.lex_state = 118, .external_lex_state = 1}, + [748] = {.lex_state = 118, .external_lex_state = 1}, + [749] = {.lex_state = 118, .external_lex_state = 1}, + [750] = {.lex_state = 118}, + [751] = {.lex_state = 118}, + [752] = {.lex_state = 118, .external_lex_state = 1}, + [753] = {.lex_state = 518}, + [754] = {.lex_state = 118}, + [755] = {.lex_state = 118}, + [756] = {.lex_state = 118}, + [757] = {.lex_state = 118}, + [758] = {.lex_state = 518, .external_lex_state = 1}, + [759] = {.lex_state = 118, .external_lex_state = 1}, + [760] = {.lex_state = 118}, + [761] = {.lex_state = 118}, + [762] = {.lex_state = 118, .external_lex_state = 1}, + [763] = {.lex_state = 118, .external_lex_state = 1}, + [764] = {.lex_state = 118}, + [765] = {.lex_state = 118}, + [766] = {.lex_state = 118, .external_lex_state = 1}, + [767] = {.lex_state = 118}, + [768] = {.lex_state = 118}, + [769] = {.lex_state = 118, .external_lex_state = 1}, + [770] = {.lex_state = 118}, + [771] = {.lex_state = 118}, + [772] = {.lex_state = 118}, + [773] = {.lex_state = 118}, + [774] = {.lex_state = 118, .external_lex_state = 1}, + [775] = {.lex_state = 118}, + [776] = {.lex_state = 118}, + [777] = {.lex_state = 118, .external_lex_state = 1}, + [778] = {.lex_state = 118}, + [779] = {.lex_state = 118}, + [780] = {.lex_state = 118, .external_lex_state = 1}, + [781] = {.lex_state = 118, .external_lex_state = 1}, + [782] = {.lex_state = 118, .external_lex_state = 1}, + [783] = {.lex_state = 118, .external_lex_state = 1}, + [784] = {.lex_state = 118}, + [785] = {.lex_state = 518, .external_lex_state = 1}, + [786] = {.lex_state = 118, .external_lex_state = 1}, + [787] = {.lex_state = 120, .external_lex_state = 1}, + [788] = {.lex_state = 118, .external_lex_state = 1}, + [789] = {.lex_state = 118, .external_lex_state = 1}, + [790] = {.lex_state = 117}, + [791] = {.lex_state = 118, .external_lex_state = 1}, + [792] = {.lex_state = 118, .external_lex_state = 1}, + [793] = {.lex_state = 118}, + [794] = {.lex_state = 118}, + [795] = {.lex_state = 118, .external_lex_state = 1}, + [796] = {.lex_state = 118}, + [797] = {.lex_state = 118}, + [798] = {.lex_state = 151}, + [799] = {.lex_state = 118, .external_lex_state = 1}, + [800] = {.lex_state = 118, .external_lex_state = 1}, + [801] = {.lex_state = 118, .external_lex_state = 1}, + [802] = {.lex_state = 118, .external_lex_state = 1}, + [803] = {.lex_state = 118, .external_lex_state = 1}, + [804] = {.lex_state = 118, .external_lex_state = 1}, + [805] = {.lex_state = 118, .external_lex_state = 1}, + [806] = {.lex_state = 118, .external_lex_state = 1}, + [807] = {.lex_state = 518}, + [808] = {.lex_state = 120}, + [809] = {.lex_state = 118, .external_lex_state = 1}, + [810] = {.lex_state = 118}, + [811] = {.lex_state = 118}, + [812] = {.lex_state = 118, .external_lex_state = 1}, + [813] = {.lex_state = 118}, + [814] = {.lex_state = 118}, + [815] = {.lex_state = 118}, + [816] = {.lex_state = 118}, + [817] = {.lex_state = 118}, + [818] = {.lex_state = 518}, + [819] = {.lex_state = 518, .external_lex_state = 1}, + [820] = {.lex_state = 118, .external_lex_state = 1}, + [821] = {.lex_state = 117, .external_lex_state = 1}, + [822] = {.lex_state = 120, .external_lex_state = 1}, + [823] = {.lex_state = 120}, + [824] = {.lex_state = 120}, + [825] = {.lex_state = 120}, + [826] = {.lex_state = 120}, + [827] = {.lex_state = 120, .external_lex_state = 1}, + [828] = {.lex_state = 120, .external_lex_state = 1}, + [829] = {.lex_state = 120, .external_lex_state = 1}, + [830] = {.lex_state = 120, .external_lex_state = 1}, + [831] = {.lex_state = 120, .external_lex_state = 1}, + [832] = {.lex_state = 120, .external_lex_state = 1}, + [833] = {.lex_state = 120, .external_lex_state = 1}, + [834] = {.lex_state = 120}, + [835] = {.lex_state = 120}, + [836] = {.lex_state = 120}, + [837] = {.lex_state = 120}, + [838] = {.lex_state = 118}, + [839] = {.lex_state = 120, .external_lex_state = 1}, + [840] = {.lex_state = 120}, + [841] = {.lex_state = 120}, + [842] = {.lex_state = 120}, + [843] = {.lex_state = 120}, + [844] = {.lex_state = 120, .external_lex_state = 1}, + [845] = {.lex_state = 118}, + [846] = {.lex_state = 120}, + [847] = {.lex_state = 120}, + [848] = {.lex_state = 120}, + [849] = {.lex_state = 120}, + [850] = {.lex_state = 118, .external_lex_state = 1}, + [851] = {.lex_state = 120}, + [852] = {.lex_state = 120}, + [853] = {.lex_state = 118, .external_lex_state = 1}, + [854] = {.lex_state = 120}, + [855] = {.lex_state = 120}, + [856] = {.lex_state = 120}, + [857] = {.lex_state = 120}, + [858] = {.lex_state = 120}, + [859] = {.lex_state = 120}, + [860] = {.lex_state = 120, .external_lex_state = 1}, + [861] = {.lex_state = 120, .external_lex_state = 1}, + [862] = {.lex_state = 120, .external_lex_state = 1}, + [863] = {.lex_state = 120}, + [864] = {.lex_state = 120}, + [865] = {.lex_state = 120}, + [866] = {.lex_state = 120, .external_lex_state = 1}, + [867] = {.lex_state = 120, .external_lex_state = 1}, + [868] = {.lex_state = 120, .external_lex_state = 1}, + [869] = {.lex_state = 120, .external_lex_state = 1}, + [870] = {.lex_state = 120}, + [871] = {.lex_state = 120, .external_lex_state = 1}, + [872] = {.lex_state = 120, .external_lex_state = 1}, + [873] = {.lex_state = 118}, + [874] = {.lex_state = 120, .external_lex_state = 1}, + [875] = {.lex_state = 120, .external_lex_state = 1}, + [876] = {.lex_state = 120, .external_lex_state = 1}, + [877] = {.lex_state = 120, .external_lex_state = 1}, + [878] = {.lex_state = 120, .external_lex_state = 1}, + [879] = {.lex_state = 118}, + [880] = {.lex_state = 120, .external_lex_state = 1}, + [881] = {.lex_state = 120, .external_lex_state = 1}, + [882] = {.lex_state = 120}, + [883] = {.lex_state = 120, .external_lex_state = 1}, + [884] = {.lex_state = 120}, + [885] = {.lex_state = 120, .external_lex_state = 1}, + [886] = {.lex_state = 120, .external_lex_state = 1}, + [887] = {.lex_state = 118, .external_lex_state = 1}, + [888] = {.lex_state = 118, .external_lex_state = 1}, + [889] = {.lex_state = 120, .external_lex_state = 1}, + [890] = {.lex_state = 120}, + [891] = {.lex_state = 120}, + [892] = {.lex_state = 120}, + [893] = {.lex_state = 120, .external_lex_state = 1}, + [894] = {.lex_state = 120, .external_lex_state = 1}, + [895] = {.lex_state = 120, .external_lex_state = 1}, + [896] = {.lex_state = 120, .external_lex_state = 1}, + [897] = {.lex_state = 120}, + [898] = {.lex_state = 120}, + [899] = {.lex_state = 110, .external_lex_state = 1}, + [900] = {.lex_state = 110, .external_lex_state = 1}, + [901] = {.lex_state = 110}, + [902] = {.lex_state = 120}, + [903] = {.lex_state = 120, .external_lex_state = 1}, + [904] = {.lex_state = 110, .external_lex_state = 1}, + [905] = {.lex_state = 110}, + [906] = {.lex_state = 110}, + [907] = {.lex_state = 159}, + [908] = {.lex_state = 120}, + [909] = {.lex_state = 120, .external_lex_state = 1}, + [910] = {.lex_state = 120, .external_lex_state = 1}, + [911] = {.lex_state = 120}, + [912] = {.lex_state = 120, .external_lex_state = 1}, + [913] = {.lex_state = 159}, + [914] = {.lex_state = 159}, + [915] = {.lex_state = 159}, + [916] = {.lex_state = 159}, + [917] = {.lex_state = 159}, + [918] = {.lex_state = 159}, + [919] = {.lex_state = 111, .external_lex_state = 1}, + [920] = {.lex_state = 159}, + [921] = {.lex_state = 159}, + [922] = {.lex_state = 159}, + [923] = {.lex_state = 159}, + [924] = {.lex_state = 159}, + [925] = {.lex_state = 159}, + [926] = {.lex_state = 159}, + [927] = {.lex_state = 159}, + [928] = {.lex_state = 159}, + [929] = {.lex_state = 159}, + [930] = {.lex_state = 159}, + [931] = {.lex_state = 111}, + [932] = {.lex_state = 111}, + [933] = {.lex_state = 159}, + [934] = {.lex_state = 159}, + [935] = {.lex_state = 159}, + [936] = {.lex_state = 159}, + [937] = {.lex_state = 159}, + [938] = {.lex_state = 159}, + [939] = {.lex_state = 159}, + [940] = {.lex_state = 111, .external_lex_state = 1}, + [941] = {.lex_state = 159}, + [942] = {.lex_state = 110}, + [943] = {.lex_state = 159}, + [944] = {.lex_state = 159}, + [945] = {.lex_state = 111}, + [946] = {.lex_state = 159}, + [947] = {.lex_state = 159}, + [948] = {.lex_state = 111, .external_lex_state = 1}, + [949] = {.lex_state = 159}, + [950] = {.lex_state = 110, .external_lex_state = 1}, + [951] = {.lex_state = 159}, + [952] = {.lex_state = 159}, + [953] = {.lex_state = 518}, + [954] = {.lex_state = 110}, + [955] = {.lex_state = 110, .external_lex_state = 1}, + [956] = {.lex_state = 110}, + [957] = {.lex_state = 110, .external_lex_state = 1}, + [958] = {.lex_state = 159}, + [959] = {.lex_state = 518, .external_lex_state = 1}, + [960] = {.lex_state = 159}, + [961] = {.lex_state = 111}, + [962] = {.lex_state = 111, .external_lex_state = 1}, + [963] = {.lex_state = 111}, + [964] = {.lex_state = 159, .external_lex_state = 1}, + [965] = {.lex_state = 111, .external_lex_state = 1}, + [966] = {.lex_state = 111, .external_lex_state = 1}, + [967] = {.lex_state = 111}, + [968] = {.lex_state = 159, .external_lex_state = 1}, + [969] = {.lex_state = 159, .external_lex_state = 1}, + [970] = {.lex_state = 122, .external_lex_state = 1}, + [971] = {.lex_state = 122, .external_lex_state = 1}, + [972] = {.lex_state = 159, .external_lex_state = 1}, + [973] = {.lex_state = 159, .external_lex_state = 1}, + [974] = {.lex_state = 159, .external_lex_state = 1}, + [975] = {.lex_state = 159, .external_lex_state = 1}, + [976] = {.lex_state = 122}, + [977] = {.lex_state = 159, .external_lex_state = 1}, + [978] = {.lex_state = 159, .external_lex_state = 1}, + [979] = {.lex_state = 159, .external_lex_state = 1}, + [980] = {.lex_state = 159, .external_lex_state = 1}, + [981] = {.lex_state = 122}, + [982] = {.lex_state = 136}, + [983] = {.lex_state = 159, .external_lex_state = 1}, + [984] = {.lex_state = 159, .external_lex_state = 1}, + [985] = {.lex_state = 159, .external_lex_state = 1}, + [986] = {.lex_state = 159, .external_lex_state = 1}, + [987] = {.lex_state = 159, .external_lex_state = 1}, + [988] = {.lex_state = 159, .external_lex_state = 1}, + [989] = {.lex_state = 159, .external_lex_state = 1}, + [990] = {.lex_state = 159, .external_lex_state = 1}, + [991] = {.lex_state = 159, .external_lex_state = 1}, + [992] = {.lex_state = 159, .external_lex_state = 1}, + [993] = {.lex_state = 159, .external_lex_state = 1}, + [994] = {.lex_state = 159, .external_lex_state = 1}, + [995] = {.lex_state = 159, .external_lex_state = 1}, + [996] = {.lex_state = 159, .external_lex_state = 1}, + [997] = {.lex_state = 159, .external_lex_state = 1}, + [998] = {.lex_state = 159, .external_lex_state = 1}, + [999] = {.lex_state = 159, .external_lex_state = 1}, + [1000] = {.lex_state = 159, .external_lex_state = 1}, + [1001] = {.lex_state = 159}, + [1002] = {.lex_state = 159, .external_lex_state = 1}, + [1003] = {.lex_state = 159, .external_lex_state = 1}, + [1004] = {.lex_state = 122, .external_lex_state = 1}, + [1005] = {.lex_state = 159, .external_lex_state = 1}, + [1006] = {.lex_state = 159, .external_lex_state = 1}, + [1007] = {.lex_state = 159, .external_lex_state = 1}, + [1008] = {.lex_state = 159, .external_lex_state = 1}, + [1009] = {.lex_state = 159, .external_lex_state = 1}, + [1010] = {.lex_state = 122}, + [1011] = {.lex_state = 122, .external_lex_state = 1}, + [1012] = {.lex_state = 122, .external_lex_state = 1}, + [1013] = {.lex_state = 122}, + [1014] = {.lex_state = 122, .external_lex_state = 1}, + [1015] = {.lex_state = 123}, + [1016] = {.lex_state = 122}, + [1017] = {.lex_state = 122}, + [1018] = {.lex_state = 123, .external_lex_state = 1}, + [1019] = {.lex_state = 123, .external_lex_state = 1}, + [1020] = {.lex_state = 123, .external_lex_state = 1}, + [1021] = {.lex_state = 122}, + [1022] = {.lex_state = 122, .external_lex_state = 1}, + [1023] = {.lex_state = 122, .external_lex_state = 1}, + [1024] = {.lex_state = 122}, + [1025] = {.lex_state = 122}, + [1026] = {.lex_state = 123}, + [1027] = {.lex_state = 122, .external_lex_state = 1}, + [1028] = {.lex_state = 122, .external_lex_state = 1}, + [1029] = {.lex_state = 122, .external_lex_state = 1}, + [1030] = {.lex_state = 123}, + [1031] = {.lex_state = 159, .external_lex_state = 1}, + [1032] = {.lex_state = 122}, + [1033] = {.lex_state = 122}, + [1034] = {.lex_state = 159}, + [1035] = {.lex_state = 123}, + [1036] = {.lex_state = 123, .external_lex_state = 1}, + [1037] = {.lex_state = 123}, + [1038] = {.lex_state = 159}, + [1039] = {.lex_state = 159}, + [1040] = {.lex_state = 123}, + [1041] = {.lex_state = 122, .external_lex_state = 1}, + [1042] = {.lex_state = 122}, + [1043] = {.lex_state = 122, .external_lex_state = 1}, + [1044] = {.lex_state = 123, .external_lex_state = 1}, + [1045] = {.lex_state = 122, .external_lex_state = 1}, + [1046] = {.lex_state = 123, .external_lex_state = 1}, + [1047] = {.lex_state = 159, .external_lex_state = 1}, + [1048] = {.lex_state = 122, .external_lex_state = 1}, + [1049] = {.lex_state = 159, .external_lex_state = 1}, + [1050] = {.lex_state = 159, .external_lex_state = 1}, + [1051] = {.lex_state = 122}, + [1052] = {.lex_state = 122}, + [1053] = {.lex_state = 122, .external_lex_state = 1}, + [1054] = {.lex_state = 122}, + [1055] = {.lex_state = 123}, + [1056] = {.lex_state = 123}, + [1057] = {.lex_state = 122}, + [1058] = {.lex_state = 122}, + [1059] = {.lex_state = 122}, + [1060] = {.lex_state = 122}, + [1061] = {.lex_state = 122, .external_lex_state = 1}, + [1062] = {.lex_state = 122, .external_lex_state = 1}, + [1063] = {.lex_state = 122, .external_lex_state = 1}, + [1064] = {.lex_state = 123}, + [1065] = {.lex_state = 122, .external_lex_state = 1}, + [1066] = {.lex_state = 122, .external_lex_state = 1}, + [1067] = {.lex_state = 123, .external_lex_state = 1}, + [1068] = {.lex_state = 123, .external_lex_state = 1}, + [1069] = {.lex_state = 123, .external_lex_state = 1}, + [1070] = {.lex_state = 123, .external_lex_state = 1}, + [1071] = {.lex_state = 123, .external_lex_state = 1}, + [1072] = {.lex_state = 123}, + [1073] = {.lex_state = 122}, + [1074] = {.lex_state = 122}, + [1075] = {.lex_state = 123}, + [1076] = {.lex_state = 123, .external_lex_state = 1}, + [1077] = {.lex_state = 123}, + [1078] = {.lex_state = 123, .external_lex_state = 1}, + [1079] = {.lex_state = 131}, + [1080] = {.lex_state = 123, .external_lex_state = 1}, + [1081] = {.lex_state = 123}, + [1082] = {.lex_state = 136, .external_lex_state = 1}, + [1083] = {.lex_state = 123}, + [1084] = {.lex_state = 123}, + [1085] = {.lex_state = 123}, + [1086] = {.lex_state = 123, .external_lex_state = 1}, + [1087] = {.lex_state = 123, .external_lex_state = 1}, + [1088] = {.lex_state = 123}, + [1089] = {.lex_state = 131}, + [1090] = {.lex_state = 123, .external_lex_state = 1}, + [1091] = {.lex_state = 123}, + [1092] = {.lex_state = 123}, + [1093] = {.lex_state = 123, .external_lex_state = 1}, + [1094] = {.lex_state = 123, .external_lex_state = 1}, + [1095] = {.lex_state = 123}, + [1096] = {.lex_state = 123}, + [1097] = {.lex_state = 131}, + [1098] = {.lex_state = 123, .external_lex_state = 1}, + [1099] = {.lex_state = 123, .external_lex_state = 1}, + [1100] = {.lex_state = 518}, + [1101] = {.lex_state = 518, .external_lex_state = 1}, + [1102] = {.lex_state = 518}, + [1103] = {.lex_state = 518, .external_lex_state = 1}, + [1104] = {.lex_state = 150}, + [1105] = {.lex_state = 518, .external_lex_state = 1}, + [1106] = {.lex_state = 518}, + [1107] = {.lex_state = 518}, + [1108] = {.lex_state = 518, .external_lex_state = 1}, + [1109] = {.lex_state = 518}, + [1110] = {.lex_state = 518, .external_lex_state = 1}, + [1111] = {.lex_state = 131}, + [1112] = {.lex_state = 131}, + [1113] = {.lex_state = 518, .external_lex_state = 1}, + [1114] = {.lex_state = 518, .external_lex_state = 1}, + [1115] = {.lex_state = 518}, + [1116] = {.lex_state = 518}, + [1117] = {.lex_state = 518}, + [1118] = {.lex_state = 518, .external_lex_state = 1}, + [1119] = {.lex_state = 518}, + [1120] = {.lex_state = 518}, + [1121] = {.lex_state = 518, .external_lex_state = 1}, + [1122] = {.lex_state = 518, .external_lex_state = 1}, + [1123] = {.lex_state = 151}, + [1124] = {.lex_state = 151}, + [1125] = {.lex_state = 151}, + [1126] = {.lex_state = 109}, + [1127] = {.lex_state = 144}, + [1128] = {.lex_state = 144}, + [1129] = {.lex_state = 144}, + [1130] = {.lex_state = 144}, + [1131] = {.lex_state = 144}, + [1132] = {.lex_state = 144}, + [1133] = {.lex_state = 144}, + [1134] = {.lex_state = 144}, + [1135] = {.lex_state = 144}, + [1136] = {.lex_state = 144}, + [1137] = {.lex_state = 144}, + [1138] = {.lex_state = 144}, + [1139] = {.lex_state = 144}, + [1140] = {.lex_state = 144}, + [1141] = {.lex_state = 144}, + [1142] = {.lex_state = 144}, + [1143] = {.lex_state = 144}, + [1144] = {.lex_state = 144}, + [1145] = {.lex_state = 144}, + [1146] = {.lex_state = 144}, + [1147] = {.lex_state = 144}, + [1148] = {.lex_state = 144}, + [1149] = {.lex_state = 144}, + [1150] = {.lex_state = 144}, + [1151] = {.lex_state = 144}, + [1152] = {.lex_state = 153}, + [1153] = {.lex_state = 153}, + [1154] = {.lex_state = 153}, + [1155] = {.lex_state = 153}, + [1156] = {.lex_state = 172}, + [1157] = {.lex_state = 172}, + [1158] = {.lex_state = 153}, + [1159] = {.lex_state = 154}, + [1160] = {.lex_state = 154}, + [1161] = {.lex_state = 154}, + [1162] = {.lex_state = 154}, + [1163] = {.lex_state = 154}, + [1164] = {.lex_state = 154}, + [1165] = {.lex_state = 154}, + [1166] = {.lex_state = 154}, + [1167] = {.lex_state = 154}, + [1168] = {.lex_state = 154}, + [1169] = {.lex_state = 154}, + [1170] = {.lex_state = 154}, + [1171] = {.lex_state = 153}, + [1172] = {.lex_state = 154}, + [1173] = {.lex_state = 154}, + [1174] = {.lex_state = 153}, + [1175] = {.lex_state = 154}, + [1176] = {.lex_state = 153}, + [1177] = {.lex_state = 153}, + [1178] = {.lex_state = 153}, + [1179] = {.lex_state = 154}, + [1180] = {.lex_state = 55}, + [1181] = {.lex_state = 55}, + [1182] = {.lex_state = 55}, + [1183] = {.lex_state = 55}, + [1184] = {.lex_state = 55}, + [1185] = {.lex_state = 55}, + [1186] = {.lex_state = 55}, + [1187] = {.lex_state = 153}, + [1188] = {.lex_state = 55}, + [1189] = {.lex_state = 55}, + [1190] = {.lex_state = 154}, + [1191] = {.lex_state = 55}, + [1192] = {.lex_state = 55}, + [1193] = {.lex_state = 55}, + [1194] = {.lex_state = 55}, + [1195] = {.lex_state = 55}, + [1196] = {.lex_state = 55}, + [1197] = {.lex_state = 55}, + [1198] = {.lex_state = 55}, + [1199] = {.lex_state = 518}, + [1200] = {.lex_state = 162}, + [1201] = {.lex_state = 518}, + [1202] = {.lex_state = 518}, + [1203] = {.lex_state = 518}, + [1204] = {.lex_state = 518}, + [1205] = {.lex_state = 518}, + [1206] = {.lex_state = 162}, + [1207] = {.lex_state = 518}, + [1208] = {.lex_state = 144}, + [1209] = {.lex_state = 144}, + [1210] = {.lex_state = 144}, + [1211] = {.lex_state = 154}, + [1212] = {.lex_state = 518}, + [1213] = {.lex_state = 154}, + [1214] = {.lex_state = 154}, + [1215] = {.lex_state = 153}, + [1216] = {.lex_state = 144}, + [1217] = {.lex_state = 55}, + [1218] = {.lex_state = 144}, + [1219] = {.lex_state = 55}, + [1220] = {.lex_state = 154}, + [1221] = {.lex_state = 55}, + [1222] = {.lex_state = 144}, + [1223] = {.lex_state = 153}, + [1224] = {.lex_state = 153}, + [1225] = {.lex_state = 144}, + [1226] = {.lex_state = 518}, + [1227] = {.lex_state = 518}, + [1228] = {.lex_state = 518}, + [1229] = {.lex_state = 518}, + [1230] = {.lex_state = 518}, + [1231] = {.lex_state = 144}, + [1232] = {.lex_state = 144}, + [1233] = {.lex_state = 144}, + [1234] = {.lex_state = 144}, + [1235] = {.lex_state = 518}, + [1236] = {.lex_state = 144}, + [1237] = {.lex_state = 161}, + [1238] = {.lex_state = 518}, + [1239] = {.lex_state = 144}, + [1240] = {.lex_state = 518}, + [1241] = {.lex_state = 144}, + [1242] = {.lex_state = 161}, + [1243] = {.lex_state = 159}, + [1244] = {.lex_state = 144}, + [1245] = {.lex_state = 159}, + [1246] = {.lex_state = 159}, + [1247] = {.lex_state = 518}, + [1248] = {.lex_state = 144}, + [1249] = {.lex_state = 144}, + [1250] = {.lex_state = 518}, + [1251] = {.lex_state = 518}, + [1252] = {.lex_state = 518}, + [1253] = {.lex_state = 518}, + [1254] = {.lex_state = 159}, + [1255] = {.lex_state = 161}, + [1256] = {.lex_state = 159}, + [1257] = {.lex_state = 518}, + [1258] = {.lex_state = 518}, + [1259] = {.lex_state = 131}, + [1260] = {.lex_state = 131}, + [1261] = {.lex_state = 159}, + [1262] = {.lex_state = 518}, + [1263] = {.lex_state = 159}, + [1264] = {.lex_state = 518}, + [1265] = {.lex_state = 518}, + [1266] = {.lex_state = 518}, + [1267] = {.lex_state = 518}, + [1268] = {.lex_state = 518}, + [1269] = {.lex_state = 518}, + [1270] = {.lex_state = 518}, + [1271] = {.lex_state = 518}, + [1272] = {.lex_state = 159}, + [1273] = {.lex_state = 159, .external_lex_state = 1}, + [1274] = {.lex_state = 518}, + [1275] = {.lex_state = 518}, + [1276] = {.lex_state = 518}, + [1277] = {.lex_state = 518}, + [1278] = {.lex_state = 518}, + [1279] = {.lex_state = 518}, + [1280] = {.lex_state = 518}, + [1281] = {.lex_state = 518}, + [1282] = {.lex_state = 518, .external_lex_state = 1}, + [1283] = {.lex_state = 518}, + [1284] = {.lex_state = 159, .external_lex_state = 1}, + [1285] = {.lex_state = 518, .external_lex_state = 1}, + [1286] = {.lex_state = 518, .external_lex_state = 1}, + [1287] = {.lex_state = 518}, + [1288] = {.lex_state = 518, .external_lex_state = 1}, + [1289] = {.lex_state = 152}, + [1290] = {.lex_state = 159}, + [1291] = {.lex_state = 152}, + [1292] = {.lex_state = 159}, + [1293] = {.lex_state = 518}, + [1294] = {.lex_state = 152}, + [1295] = {.lex_state = 159}, + [1296] = {.lex_state = 159}, + [1297] = {.lex_state = 518}, + [1298] = {.lex_state = 161, .external_lex_state = 1}, + [1299] = {.lex_state = 152}, + [1300] = {.lex_state = 164}, + [1301] = {.lex_state = 164}, + [1302] = {.lex_state = 156, .external_lex_state = 1}, + [1303] = {.lex_state = 161, .external_lex_state = 1}, + [1304] = {.lex_state = 156, .external_lex_state = 1}, + [1305] = {.lex_state = 159}, + [1306] = {.lex_state = 159}, + [1307] = {.lex_state = 152}, + [1308] = {.lex_state = 159}, + [1309] = {.lex_state = 164}, + [1310] = {.lex_state = 161}, + [1311] = {.lex_state = 155}, + [1312] = {.lex_state = 155}, + [1313] = {.lex_state = 161}, + [1314] = {.lex_state = 159}, + [1315] = {.lex_state = 164}, + [1316] = {.lex_state = 152}, + [1317] = {.lex_state = 518, .external_lex_state = 1}, + [1318] = {.lex_state = 518}, + [1319] = {.lex_state = 164}, + [1320] = {.lex_state = 518}, + [1321] = {.lex_state = 518}, + [1322] = {.lex_state = 518}, + [1323] = {.lex_state = 164}, + [1324] = {.lex_state = 518}, + [1325] = {.lex_state = 518}, + [1326] = {.lex_state = 518}, + [1327] = {.lex_state = 518}, + [1328] = {.lex_state = 518}, + [1329] = {.lex_state = 164}, + [1330] = {.lex_state = 518}, + [1331] = {.lex_state = 164}, + [1332] = {.lex_state = 518}, + [1333] = {.lex_state = 518}, + [1334] = {.lex_state = 161, .external_lex_state = 1}, + [1335] = {.lex_state = 164}, + [1336] = {.lex_state = 164}, + [1337] = {.lex_state = 518, .external_lex_state = 1}, + [1338] = {.lex_state = 164}, + [1339] = {.lex_state = 164}, + [1340] = {.lex_state = 164}, + [1341] = {.lex_state = 164}, + [1342] = {.lex_state = 164}, + [1343] = {.lex_state = 164}, + [1344] = {.lex_state = 164}, + [1345] = {.lex_state = 164}, + [1346] = {.lex_state = 164}, + [1347] = {.lex_state = 164}, + [1348] = {.lex_state = 164}, + [1349] = {.lex_state = 164}, + [1350] = {.lex_state = 164}, + [1351] = {.lex_state = 164}, + [1352] = {.lex_state = 518, .external_lex_state = 1}, + [1353] = {.lex_state = 518, .external_lex_state = 1}, + [1354] = {.lex_state = 164}, + [1355] = {.lex_state = 518, .external_lex_state = 1}, + [1356] = {.lex_state = 518}, + [1357] = {.lex_state = 164}, + [1358] = {.lex_state = 518, .external_lex_state = 1}, + [1359] = {.lex_state = 518, .external_lex_state = 1}, + [1360] = {.lex_state = 161}, + [1361] = {.lex_state = 518}, + [1362] = {.lex_state = 518}, + [1363] = {.lex_state = 518, .external_lex_state = 1}, + [1364] = {.lex_state = 161, .external_lex_state = 1}, + [1365] = {.lex_state = 159}, + [1366] = {.lex_state = 131}, + [1367] = {.lex_state = 131}, + [1368] = {.lex_state = 518}, + [1369] = {.lex_state = 518}, + [1370] = {.lex_state = 161}, + [1371] = {.lex_state = 131}, + [1372] = {.lex_state = 131}, + [1373] = {.lex_state = 131}, + [1374] = {.lex_state = 518}, + [1375] = {.lex_state = 518}, + [1376] = {.lex_state = 131}, + [1377] = {.lex_state = 159}, + [1378] = {.lex_state = 131}, + [1379] = {.lex_state = 518, .external_lex_state = 1}, + [1380] = {.lex_state = 161}, + [1381] = {.lex_state = 131}, + [1382] = {.lex_state = 131}, + [1383] = {.lex_state = 131}, + [1384] = {.lex_state = 518}, + [1385] = {.lex_state = 131}, + [1386] = {.lex_state = 161, .external_lex_state = 1}, + [1387] = {.lex_state = 518}, + [1388] = {.lex_state = 159}, + [1389] = {.lex_state = 159}, + [1390] = {.lex_state = 518}, + [1391] = {.lex_state = 156}, + [1392] = {.lex_state = 156}, + [1393] = {.lex_state = 518}, + [1394] = {.lex_state = 518}, + [1395] = {.lex_state = 142}, + [1396] = {.lex_state = 518}, + [1397] = {.lex_state = 22}, + [1398] = {.lex_state = 518}, + [1399] = {.lex_state = 518}, + [1400] = {.lex_state = 518}, + [1401] = {.lex_state = 518}, + [1402] = {.lex_state = 161}, + [1403] = {.lex_state = 518, .external_lex_state = 1}, + [1404] = {.lex_state = 518}, + [1405] = {.lex_state = 518, .external_lex_state = 1}, + [1406] = {.lex_state = 142}, + [1407] = {.lex_state = 147}, + [1408] = {.lex_state = 518}, + [1409] = {.lex_state = 518}, + [1410] = {.lex_state = 167}, + [1411] = {.lex_state = 142}, + [1412] = {.lex_state = 147}, + [1413] = {.lex_state = 161}, + [1414] = {.lex_state = 147}, + [1415] = {.lex_state = 142}, + [1416] = {.lex_state = 518}, + [1417] = {.lex_state = 142}, + [1418] = {.lex_state = 161, .external_lex_state = 1}, + [1419] = {.lex_state = 518}, + [1420] = {.lex_state = 518, .external_lex_state = 1}, + [1421] = {.lex_state = 518, .external_lex_state = 1}, + [1422] = {.lex_state = 161, .external_lex_state = 1}, + [1423] = {.lex_state = 159}, + [1424] = {.lex_state = 159}, + [1425] = {.lex_state = 518}, + [1426] = {.lex_state = 518}, + [1427] = {.lex_state = 147}, + [1428] = {.lex_state = 518}, + [1429] = {.lex_state = 518}, + [1430] = {.lex_state = 518}, + [1431] = {.lex_state = 147}, + [1432] = {.lex_state = 518}, + [1433] = {.lex_state = 518}, + [1434] = {.lex_state = 142}, + [1435] = {.lex_state = 518}, + [1436] = {.lex_state = 159}, + [1437] = {.lex_state = 518}, + [1438] = {.lex_state = 142}, + [1439] = {.lex_state = 518}, + [1440] = {.lex_state = 518}, + [1441] = {.lex_state = 518}, + [1442] = {.lex_state = 518}, + [1443] = {.lex_state = 22}, + [1444] = {.lex_state = 147}, + [1445] = {.lex_state = 147}, + [1446] = {.lex_state = 518}, + [1447] = {.lex_state = 518}, + [1448] = {.lex_state = 147}, + [1449] = {.lex_state = 142}, + [1450] = {.lex_state = 142}, + [1451] = {.lex_state = 147}, + [1452] = {.lex_state = 518}, + [1453] = {.lex_state = 147}, + [1454] = {.lex_state = 518}, + [1455] = {.lex_state = 518}, + [1456] = {.lex_state = 147}, + [1457] = {.lex_state = 147}, + [1458] = {.lex_state = 161, .external_lex_state = 1}, + [1459] = {.lex_state = 147}, + [1460] = {.lex_state = 518}, + [1461] = {.lex_state = 147}, + [1462] = {.lex_state = 147}, + [1463] = {.lex_state = 518}, + [1464] = {.lex_state = 142}, + [1465] = {.lex_state = 518}, + [1466] = {.lex_state = 518}, + [1467] = {.lex_state = 518}, + [1468] = {.lex_state = 142}, + [1469] = {.lex_state = 147}, + [1470] = {.lex_state = 518}, + [1471] = {.lex_state = 518, .external_lex_state = 1}, + [1472] = {.lex_state = 159}, + [1473] = {.lex_state = 518}, + [1474] = {.lex_state = 22}, + [1475] = {.lex_state = 518}, + [1476] = {.lex_state = 22}, + [1477] = {.lex_state = 518}, + [1478] = {.lex_state = 22}, + [1479] = {.lex_state = 164}, + [1480] = {.lex_state = 518}, + [1481] = {.lex_state = 159}, + [1482] = {.lex_state = 518}, + [1483] = {.lex_state = 518}, + [1484] = {.lex_state = 22}, + [1485] = {.lex_state = 518}, + [1486] = {.lex_state = 22}, + [1487] = {.lex_state = 518, .external_lex_state = 1}, + [1488] = {.lex_state = 518}, + [1489] = {.lex_state = 22}, + [1490] = {.lex_state = 518}, + [1491] = {.lex_state = 518, .external_lex_state = 1}, + [1492] = {.lex_state = 159}, + [1493] = {.lex_state = 518}, + [1494] = {.lex_state = 22}, + [1495] = {.lex_state = 22}, + [1496] = {.lex_state = 518}, + [1497] = {.lex_state = 22}, + [1498] = {.lex_state = 518, .external_lex_state = 1}, + [1499] = {.lex_state = 518}, + [1500] = {.lex_state = 22}, + [1501] = {.lex_state = 518, .external_lex_state = 1}, + [1502] = {.lex_state = 518}, + [1503] = {.lex_state = 161}, + [1504] = {.lex_state = 518}, + [1505] = {.lex_state = 518}, + [1506] = {.lex_state = 518}, + [1507] = {.lex_state = 518}, + [1508] = {.lex_state = 159}, + [1509] = {.lex_state = 159}, + [1510] = {.lex_state = 147}, + [1511] = {.lex_state = 518}, + [1512] = {.lex_state = 518}, + [1513] = {.lex_state = 518}, + [1514] = {.lex_state = 518}, + [1515] = {.lex_state = 518}, + [1516] = {.lex_state = 518}, + [1517] = {.lex_state = 518}, + [1518] = {.lex_state = 518}, + [1519] = {.lex_state = 518}, + [1520] = {.lex_state = 518}, + [1521] = {.lex_state = 518}, + [1522] = {.lex_state = 518}, + [1523] = {.lex_state = 518}, + [1524] = {.lex_state = 518}, + [1525] = {.lex_state = 518}, + [1526] = {.lex_state = 518}, + [1527] = {.lex_state = 518}, + [1528] = {.lex_state = 518}, + [1529] = {.lex_state = 518}, + [1530] = {.lex_state = 518}, + [1531] = {.lex_state = 518}, + [1532] = {.lex_state = 518}, + [1533] = {.lex_state = 518}, + [1534] = {.lex_state = 518}, + [1535] = {.lex_state = 518}, + [1536] = {.lex_state = 518}, + [1537] = {.lex_state = 159}, + [1538] = {.lex_state = 518}, + [1539] = {.lex_state = 518}, + [1540] = {.lex_state = 518}, + [1541] = {.lex_state = 518}, + [1542] = {.lex_state = 518}, + [1543] = {.lex_state = 518}, + [1544] = {.lex_state = 518}, + [1545] = {.lex_state = 518}, + [1546] = {.lex_state = 518}, + [1547] = {.lex_state = 518}, + [1548] = {.lex_state = 518}, + [1549] = {.lex_state = 518}, + [1550] = {.lex_state = 518}, + [1551] = {.lex_state = 518}, + [1552] = {.lex_state = 518}, + [1553] = {.lex_state = 518}, + [1554] = {.lex_state = 518}, + [1555] = {.lex_state = 518}, + [1556] = {.lex_state = 518}, + [1557] = {.lex_state = 518}, + [1558] = {.lex_state = 518}, + [1559] = {.lex_state = 518}, + [1560] = {.lex_state = 518}, + [1561] = {.lex_state = 518}, + [1562] = {.lex_state = 518}, + [1563] = {.lex_state = 518}, + [1564] = {.lex_state = 518}, + [1565] = {.lex_state = 518}, + [1566] = {.lex_state = 518}, + [1567] = {.lex_state = 518}, + [1568] = {.lex_state = 518}, + [1569] = {.lex_state = 518}, + [1570] = {.lex_state = 518}, + [1571] = {.lex_state = 518}, + [1572] = {.lex_state = 518, .external_lex_state = 1}, + [1573] = {.lex_state = 518}, + [1574] = {.lex_state = 518}, + [1575] = {.lex_state = 518}, + [1576] = {.lex_state = 518}, + [1577] = {.lex_state = 518, .external_lex_state = 1}, + [1578] = {.lex_state = 518}, + [1579] = {.lex_state = 518}, + [1580] = {.lex_state = 518}, + [1581] = {.lex_state = 518}, + [1582] = {.lex_state = 518, .external_lex_state = 1}, + [1583] = {.lex_state = 173}, + [1584] = {.lex_state = 518}, + [1585] = {.lex_state = 518}, + [1586] = {.lex_state = 518}, + [1587] = {.lex_state = 518}, + [1588] = {.lex_state = 518}, + [1589] = {.lex_state = 518}, + [1590] = {.lex_state = 518}, + [1591] = {.lex_state = 518}, + [1592] = {.lex_state = 518}, + [1593] = {.lex_state = 518}, + [1594] = {.lex_state = 518}, + [1595] = {.lex_state = 518}, + [1596] = {.lex_state = 518}, + [1597] = {.lex_state = 518}, + [1598] = {.lex_state = 518}, + [1599] = {.lex_state = 518}, + [1600] = {.lex_state = 518}, + [1601] = {.lex_state = 518}, + [1602] = {.lex_state = 518}, + [1603] = {.lex_state = 518}, + [1604] = {.lex_state = 518}, + [1605] = {.lex_state = 518}, + [1606] = {.lex_state = 518}, + [1607] = {.lex_state = 518}, + [1608] = {.lex_state = 518}, + [1609] = {.lex_state = 518}, + [1610] = {.lex_state = 518}, + [1611] = {.lex_state = 518}, + [1612] = {.lex_state = 518}, + [1613] = {.lex_state = 518}, + [1614] = {.lex_state = 518}, + [1615] = {.lex_state = 518}, + [1616] = {.lex_state = 518, .external_lex_state = 1}, + [1617] = {.lex_state = 518}, + [1618] = {.lex_state = 518}, + [1619] = {.lex_state = 518}, + [1620] = {.lex_state = 144}, + [1621] = {.lex_state = 518}, + [1622] = {.lex_state = 518}, + [1623] = {.lex_state = 518}, + [1624] = {.lex_state = 518}, + [1625] = {.lex_state = 518}, + [1626] = {.lex_state = 518}, + [1627] = {.lex_state = 518}, + [1628] = {.lex_state = 518}, + [1629] = {.lex_state = 518}, + [1630] = {.lex_state = 518}, + [1631] = {.lex_state = 518}, + [1632] = {.lex_state = 518}, + [1633] = {.lex_state = 518}, + [1634] = {.lex_state = 518}, + [1635] = {.lex_state = 518}, + [1636] = {.lex_state = 518}, + [1637] = {.lex_state = 518}, + [1638] = {.lex_state = 144}, + [1639] = {.lex_state = 518}, + [1640] = {.lex_state = 518}, + [1641] = {.lex_state = 518}, + [1642] = {.lex_state = 518}, + [1643] = {.lex_state = 518}, + [1644] = {.lex_state = 518}, + [1645] = {.lex_state = 518}, + [1646] = {.lex_state = 518}, + [1647] = {.lex_state = 518}, + [1648] = {.lex_state = 518}, + [1649] = {.lex_state = 518}, + [1650] = {.lex_state = 518}, + [1651] = {.lex_state = 518}, + [1652] = {.lex_state = 518}, + [1653] = {.lex_state = 518}, + [1654] = {.lex_state = 144}, + [1655] = {.lex_state = 518}, + [1656] = {.lex_state = 518}, + [1657] = {.lex_state = 518}, + [1658] = {.lex_state = 518, .external_lex_state = 1}, + [1659] = {.lex_state = 518}, + [1660] = {.lex_state = 518}, + [1661] = {.lex_state = 518}, + [1662] = {.lex_state = 518}, + [1663] = {.lex_state = 518}, + [1664] = {.lex_state = 518}, + [1665] = {.lex_state = 518}, + [1666] = {.lex_state = 518}, + [1667] = {.lex_state = 173}, + [1668] = {.lex_state = 518}, + [1669] = {.lex_state = 518}, + [1670] = {.lex_state = 518}, + [1671] = {.lex_state = 518}, + [1672] = {.lex_state = 173}, + [1673] = {.lex_state = 144}, + [1674] = {.lex_state = 518}, + [1675] = {.lex_state = 518}, + [1676] = {.lex_state = 173}, + [1677] = {.lex_state = 518}, + [1678] = {.lex_state = 518}, + [1679] = {.lex_state = 518}, + [1680] = {.lex_state = 518}, + [1681] = {.lex_state = 518}, + [1682] = {.lex_state = 518}, + [1683] = {.lex_state = 518}, + [1684] = {.lex_state = 518}, + [1685] = {.lex_state = 518}, + [1686] = {.lex_state = 518}, + [1687] = {.lex_state = 518}, + [1688] = {.lex_state = 518}, + [1689] = {.lex_state = 518}, + [1690] = {.lex_state = 518, .external_lex_state = 1}, + [1691] = {.lex_state = 518, .external_lex_state = 1}, + [1692] = {.lex_state = 518, .external_lex_state = 1}, + [1693] = {.lex_state = 518}, + [1694] = {.lex_state = 518}, + [1695] = {.lex_state = 518, .external_lex_state = 1}, + [1696] = {.lex_state = 518, .external_lex_state = 1}, + [1697] = {.lex_state = 518}, + [1698] = {.lex_state = 518}, + [1699] = {.lex_state = 518}, + [1700] = {.lex_state = 518}, + [1701] = {.lex_state = 518}, + [1702] = {.lex_state = 518}, + [1703] = {.lex_state = 518}, + [1704] = {.lex_state = 518}, + [1705] = {.lex_state = 518}, + [1706] = {.lex_state = 518}, + [1707] = {.lex_state = 131}, + [1708] = {.lex_state = 518}, + [1709] = {.lex_state = 518, .external_lex_state = 1}, + [1710] = {.lex_state = 131}, + [1711] = {.lex_state = 518}, + [1712] = {.lex_state = 518}, + [1713] = {.lex_state = 518}, + [1714] = {.lex_state = 518}, + [1715] = {.lex_state = 518}, + [1716] = {.lex_state = 518}, + [1717] = {.lex_state = 518}, + [1718] = {.lex_state = 518}, + [1719] = {.lex_state = 518}, + [1720] = {.lex_state = 518}, + [1721] = {.lex_state = 518}, + [1722] = {.lex_state = 518}, + [1723] = {.lex_state = 518}, + [1724] = {.lex_state = 518}, + [1725] = {.lex_state = 518}, + [1726] = {.lex_state = 518}, + [1727] = {.lex_state = 518}, + [1728] = {.lex_state = 518, .external_lex_state = 1}, + [1729] = {.lex_state = 518}, + [1730] = {.lex_state = 518}, + [1731] = {.lex_state = 518}, + [1732] = {.lex_state = 518}, + [1733] = {.lex_state = 518, .external_lex_state = 1}, + [1734] = {.lex_state = 518, .external_lex_state = 1}, + [1735] = {.lex_state = 518}, + [1736] = {.lex_state = 518, .external_lex_state = 1}, + [1737] = {.lex_state = 518}, + [1738] = {.lex_state = 518}, + [1739] = {.lex_state = 518}, + [1740] = {.lex_state = 518}, + [1741] = {.lex_state = 518, .external_lex_state = 1}, + [1742] = {.lex_state = 518}, + [1743] = {.lex_state = 518}, + [1744] = {.lex_state = 518}, + [1745] = {.lex_state = 518}, + [1746] = {.lex_state = 518}, + [1747] = {.lex_state = 518}, + [1748] = {.lex_state = 518}, + [1749] = {.lex_state = 518}, + [1750] = {.lex_state = 131}, + [1751] = {.lex_state = 518, .external_lex_state = 1}, + [1752] = {.lex_state = 518}, + [1753] = {.lex_state = 518}, + [1754] = {.lex_state = 518}, + [1755] = {.lex_state = 518}, + [1756] = {.lex_state = 518, .external_lex_state = 1}, + [1757] = {.lex_state = 518}, + [1758] = {.lex_state = 518}, + [1759] = {.lex_state = 518}, + [1760] = {.lex_state = 518, .external_lex_state = 1}, + [1761] = {.lex_state = 131}, + [1762] = {.lex_state = 518, .external_lex_state = 1}, + [1763] = {.lex_state = 518, .external_lex_state = 1}, + [1764] = {.lex_state = 518, .external_lex_state = 1}, + [1765] = {.lex_state = 518, .external_lex_state = 1}, + [1766] = {.lex_state = 518}, + [1767] = {.lex_state = 518}, + [1768] = {.lex_state = 518, .external_lex_state = 1}, + [1769] = {.lex_state = 518}, + [1770] = {.lex_state = 518}, + [1771] = {.lex_state = 518}, + [1772] = {.lex_state = 518}, + [1773] = {.lex_state = 518}, + [1774] = {.lex_state = 518}, + [1775] = {.lex_state = 518}, + [1776] = {.lex_state = 518, .external_lex_state = 1}, + [1777] = {.lex_state = 518}, + [1778] = {.lex_state = 518}, + [1779] = {.lex_state = 518}, + [1780] = {.lex_state = 518}, + [1781] = {.lex_state = 518}, + [1782] = {.lex_state = 518}, + [1783] = {.lex_state = 518}, + [1784] = {.lex_state = 518}, + [1785] = {.lex_state = 518}, + [1786] = {.lex_state = 518}, + [1787] = {.lex_state = 518}, + [1788] = {.lex_state = 518}, + [1789] = {.lex_state = 518}, + [1790] = {.lex_state = 518}, + [1791] = {.lex_state = 518, .external_lex_state = 1}, + [1792] = {.lex_state = 518}, + [1793] = {.lex_state = 518}, + [1794] = {.lex_state = 518}, + [1795] = {.lex_state = 518}, + [1796] = {.lex_state = 518}, + [1797] = {.lex_state = 518}, + [1798] = {.lex_state = 518}, + [1799] = {.lex_state = 518}, + [1800] = {.lex_state = 518}, + [1801] = {.lex_state = 518}, + [1802] = {.lex_state = 518}, + [1803] = {.lex_state = 518}, + [1804] = {.lex_state = 518}, + [1805] = {.lex_state = 518}, + [1806] = {.lex_state = 518}, + [1807] = {.lex_state = 518}, + [1808] = {.lex_state = 518}, + [1809] = {.lex_state = 518}, + [1810] = {.lex_state = 518}, + [1811] = {.lex_state = 518}, + [1812] = {.lex_state = 518}, + [1813] = {.lex_state = 518}, + [1814] = {.lex_state = 518}, + [1815] = {.lex_state = 518}, + [1816] = {.lex_state = 518, .external_lex_state = 1}, + [1817] = {.lex_state = 518}, + [1818] = {.lex_state = 518}, + [1819] = {.lex_state = 518}, + [1820] = {.lex_state = 518}, + [1821] = {.lex_state = 518}, + [1822] = {.lex_state = 518}, + [1823] = {.lex_state = 518}, + [1824] = {.lex_state = 518}, + [1825] = {.lex_state = 518}, + [1826] = {.lex_state = 518}, + [1827] = {.lex_state = 518}, + [1828] = {.lex_state = 518}, + [1829] = {.lex_state = 518}, + [1830] = {.lex_state = 518}, + [1831] = {.lex_state = 518}, + [1832] = {.lex_state = 518}, + [1833] = {.lex_state = 518}, + [1834] = {.lex_state = 518}, + [1835] = {.lex_state = 518}, + [1836] = {.lex_state = 518}, + [1837] = {.lex_state = 518}, + [1838] = {.lex_state = 518}, + [1839] = {.lex_state = 518}, + [1840] = {.lex_state = 518}, + [1841] = {.lex_state = 518}, + [1842] = {.lex_state = 518}, + [1843] = {.lex_state = 518}, + [1844] = {.lex_state = 518}, + [1845] = {.lex_state = 518}, + [1846] = {.lex_state = 518}, + [1847] = {.lex_state = 518}, + [1848] = {.lex_state = 518}, + [1849] = {.lex_state = 518, .external_lex_state = 1}, + [1850] = {.lex_state = 518}, + [1851] = {.lex_state = 518}, + [1852] = {.lex_state = 518}, + [1853] = {.lex_state = 518}, + [1854] = {.lex_state = 518}, + [1855] = {.lex_state = 518}, + [1856] = {.lex_state = 518}, + [1857] = {.lex_state = 518}, + [1858] = {.lex_state = 518, .external_lex_state = 1}, + [1859] = {.lex_state = 518}, + [1860] = {.lex_state = 518}, + [1861] = {.lex_state = 518}, + [1862] = {.lex_state = 518}, + [1863] = {.lex_state = 518}, + [1864] = {.lex_state = 518, .external_lex_state = 1}, + [1865] = {.lex_state = 518}, + [1866] = {.lex_state = 518}, + [1867] = {.lex_state = 518, .external_lex_state = 1}, + [1868] = {.lex_state = 518}, + [1869] = {.lex_state = 518}, + [1870] = {.lex_state = 518, .external_lex_state = 1}, + [1871] = {.lex_state = 518}, + [1872] = {.lex_state = 518}, + [1873] = {.lex_state = 518, .external_lex_state = 1}, + [1874] = {.lex_state = 518}, + [1875] = {.lex_state = 518}, + [1876] = {.lex_state = 518}, + [1877] = {.lex_state = 518}, + [1878] = {.lex_state = 518, .external_lex_state = 1}, + [1879] = {.lex_state = 518}, + [1880] = {.lex_state = 518}, + [1881] = {.lex_state = 518}, + [1882] = {.lex_state = 518}, + [1883] = {.lex_state = 518}, + [1884] = {.lex_state = 518}, + [1885] = {.lex_state = 518}, + [1886] = {.lex_state = 518}, + [1887] = {.lex_state = 518, .external_lex_state = 1}, + [1888] = {.lex_state = 518}, + [1889] = {.lex_state = 518}, + [1890] = {.lex_state = 518}, + [1891] = {.lex_state = 518}, + [1892] = {.lex_state = 518}, + [1893] = {.lex_state = 518}, + [1894] = {.lex_state = 518, .external_lex_state = 1}, + [1895] = {.lex_state = 518}, + [1896] = {.lex_state = 518}, + [1897] = {.lex_state = 518}, + [1898] = {.lex_state = 518}, + [1899] = {.lex_state = 518}, + [1900] = {.lex_state = 518}, + [1901] = {.lex_state = 518}, + [1902] = {.lex_state = 518}, + [1903] = {.lex_state = 518}, + [1904] = {.lex_state = 518}, + [1905] = {.lex_state = 518}, + [1906] = {.lex_state = 518}, + [1907] = {.lex_state = 518, .external_lex_state = 1}, + [1908] = {.lex_state = 164}, + [1909] = {.lex_state = 518}, + [1910] = {.lex_state = 518}, + [1911] = {.lex_state = 518}, + [1912] = {.lex_state = 518}, + [1913] = {.lex_state = 518}, + [1914] = {.lex_state = 518}, + [1915] = {.lex_state = 518}, + [1916] = {.lex_state = 518}, + [1917] = {.lex_state = 518}, + [1918] = {.lex_state = 518}, + [1919] = {.lex_state = 518}, + [1920] = {.lex_state = 518, .external_lex_state = 1}, + [1921] = {.lex_state = 518}, + [1922] = {.lex_state = 518, .external_lex_state = 1}, + [1923] = {.lex_state = 518}, + [1924] = {.lex_state = 518, .external_lex_state = 1}, + [1925] = {.lex_state = 518}, + [1926] = {.lex_state = 518}, + [1927] = {.lex_state = 518}, + [1928] = {.lex_state = 518, .external_lex_state = 1}, + [1929] = {.lex_state = 518}, + [1930] = {.lex_state = 518}, + [1931] = {.lex_state = 518}, + [1932] = {.lex_state = 518}, + [1933] = {.lex_state = 518}, + [1934] = {.lex_state = 518}, + [1935] = {.lex_state = 518, .external_lex_state = 1}, + [1936] = {.lex_state = 518, .external_lex_state = 1}, + [1937] = {.lex_state = 518}, + [1938] = {.lex_state = 518}, + [1939] = {.lex_state = 518}, + [1940] = {.lex_state = 518, .external_lex_state = 1}, + [1941] = {.lex_state = 518}, + [1942] = {.lex_state = 518}, + [1943] = {.lex_state = 518}, + [1944] = {.lex_state = 518, .external_lex_state = 1}, + [1945] = {.lex_state = 518, .external_lex_state = 1}, + [1946] = {.lex_state = 518}, + [1947] = {.lex_state = 518}, + [1948] = {.lex_state = 518}, + [1949] = {.lex_state = 518}, + [1950] = {.lex_state = 518}, + [1951] = {.lex_state = 518}, + [1952] = {.lex_state = 518}, + [1953] = {.lex_state = 518, .external_lex_state = 1}, + [1954] = {.lex_state = 518}, + [1955] = {.lex_state = 518, .external_lex_state = 1}, + [1956] = {.lex_state = 518, .external_lex_state = 1}, + [1957] = {.lex_state = 518}, + [1958] = {.lex_state = 518}, + [1959] = {.lex_state = 518}, + [1960] = {.lex_state = 518, .external_lex_state = 1}, + [1961] = {.lex_state = 518, .external_lex_state = 1}, + [1962] = {.lex_state = 518, .external_lex_state = 1}, + [1963] = {.lex_state = 518, .external_lex_state = 1}, + [1964] = {.lex_state = 518, .external_lex_state = 1}, + [1965] = {.lex_state = 518, .external_lex_state = 1}, + [1966] = {.lex_state = 518}, + [1967] = {.lex_state = 518}, + [1968] = {.lex_state = 518, .external_lex_state = 1}, + [1969] = {.lex_state = 518}, + [1970] = {.lex_state = 518, .external_lex_state = 1}, + [1971] = {.lex_state = 518}, + [1972] = {.lex_state = 518, .external_lex_state = 1}, + [1973] = {.lex_state = 518}, + [1974] = {.lex_state = 518, .external_lex_state = 1}, + [1975] = {.lex_state = 518}, + [1976] = {.lex_state = 518}, + [1977] = {.lex_state = 518, .external_lex_state = 1}, + [1978] = {.lex_state = 518}, + [1979] = {.lex_state = 518, .external_lex_state = 1}, + [1980] = {.lex_state = 518}, + [1981] = {.lex_state = 518}, + [1982] = {.lex_state = 518}, + [1983] = {.lex_state = 518}, + [1984] = {.lex_state = 518, .external_lex_state = 1}, + [1985] = {.lex_state = 518}, + [1986] = {.lex_state = 518}, + [1987] = {.lex_state = 518, .external_lex_state = 1}, + [1988] = {.lex_state = 518}, + [1989] = {.lex_state = 518}, + [1990] = {.lex_state = 518}, + [1991] = {.lex_state = 518}, + [1992] = {.lex_state = 518}, + [1993] = {.lex_state = 518, .external_lex_state = 1}, + [1994] = {.lex_state = 518}, + [1995] = {.lex_state = 518}, + [1996] = {.lex_state = 518, .external_lex_state = 1}, + [1997] = {.lex_state = 518, .external_lex_state = 1}, + [1998] = {.lex_state = 518, .external_lex_state = 1}, + [1999] = {.lex_state = 518, .external_lex_state = 1}, + [2000] = {.lex_state = 518, .external_lex_state = 1}, + [2001] = {.lex_state = 518, .external_lex_state = 1}, + [2002] = {.lex_state = 518}, + [2003] = {.lex_state = 518, .external_lex_state = 1}, + [2004] = {.lex_state = 518, .external_lex_state = 1}, + [2005] = {.lex_state = 518, .external_lex_state = 1}, + [2006] = {.lex_state = 518, .external_lex_state = 1}, + [2007] = {.lex_state = 518, .external_lex_state = 1}, + [2008] = {.lex_state = 518, .external_lex_state = 1}, + [2009] = {.lex_state = 518, .external_lex_state = 1}, + [2010] = {.lex_state = 518, .external_lex_state = 1}, + [2011] = {.lex_state = 518, .external_lex_state = 1}, + [2012] = {.lex_state = 518, .external_lex_state = 1}, + [2013] = {.lex_state = 518}, + [2014] = {.lex_state = 518, .external_lex_state = 1}, + [2015] = {.lex_state = 518, .external_lex_state = 1}, + [2016] = {.lex_state = 518, .external_lex_state = 1}, + [2017] = {.lex_state = 518, .external_lex_state = 1}, + [2018] = {.lex_state = 518, .external_lex_state = 1}, + [2019] = {.lex_state = 518}, + [2020] = {.lex_state = 518}, + [2021] = {.lex_state = 518}, + [2022] = {.lex_state = 518}, + [2023] = {.lex_state = 518}, + [2024] = {.lex_state = 131}, + [2025] = {.lex_state = 131}, + [2026] = {.lex_state = 518}, + [2027] = {.lex_state = 518}, + [2028] = {.lex_state = 518}, + [2029] = {.lex_state = 518}, + [2030] = {.lex_state = 518, .external_lex_state = 1}, + [2031] = {.lex_state = 518}, + [2032] = {.lex_state = 131}, + [2033] = {.lex_state = 518}, + [2034] = {.lex_state = 518, .external_lex_state = 1}, + [2035] = {.lex_state = 518}, + [2036] = {.lex_state = 518, .external_lex_state = 1}, + [2037] = {.lex_state = 518, .external_lex_state = 1}, + [2038] = {.lex_state = 518}, + [2039] = {.lex_state = 518, .external_lex_state = 1}, + [2040] = {.lex_state = 518, .external_lex_state = 1}, + [2041] = {.lex_state = 518, .external_lex_state = 1}, + [2042] = {.lex_state = 518}, + [2043] = {.lex_state = 518}, + [2044] = {.lex_state = 518}, + [2045] = {.lex_state = 518}, + [2046] = {.lex_state = 518}, + [2047] = {.lex_state = 131}, + [2048] = {.lex_state = 131}, + [2049] = {.lex_state = 518}, + [2050] = {.lex_state = 518, .external_lex_state = 1}, + [2051] = {.lex_state = 518}, + [2052] = {.lex_state = 518, .external_lex_state = 1}, + [2053] = {.lex_state = 518}, + [2054] = {.lex_state = 131}, + [2055] = {.lex_state = 518}, + [2056] = {.lex_state = 518, .external_lex_state = 1}, + [2057] = {.lex_state = 518}, + [2058] = {.lex_state = 518, .external_lex_state = 1}, + [2059] = {.lex_state = 518, .external_lex_state = 1}, + [2060] = {.lex_state = 518}, + [2061] = {.lex_state = 518, .external_lex_state = 1}, + [2062] = {.lex_state = 518}, + [2063] = {.lex_state = 518, .external_lex_state = 1}, + [2064] = {.lex_state = 518}, + [2065] = {.lex_state = 518}, + [2066] = {.lex_state = 131}, + [2067] = {.lex_state = 131}, + [2068] = {.lex_state = 518}, + [2069] = {.lex_state = 518}, + [2070] = {.lex_state = 518, .external_lex_state = 1}, + [2071] = {.lex_state = 518}, + [2072] = {.lex_state = 131}, + [2073] = {.lex_state = 518}, + [2074] = {.lex_state = 518, .external_lex_state = 1}, + [2075] = {.lex_state = 518}, + [2076] = {.lex_state = 518, .external_lex_state = 1}, + [2077] = {.lex_state = 518, .external_lex_state = 1}, + [2078] = {.lex_state = 518}, + [2079] = {.lex_state = 518, .external_lex_state = 1}, + [2080] = {.lex_state = 518, .external_lex_state = 1}, + [2081] = {.lex_state = 518, .external_lex_state = 1}, + [2082] = {.lex_state = 518}, + [2083] = {.lex_state = 518}, + [2084] = {.lex_state = 518}, + [2085] = {.lex_state = 518}, + [2086] = {.lex_state = 518}, + [2087] = {.lex_state = 518}, + [2088] = {.lex_state = 518}, + [2089] = {.lex_state = 518}, + [2090] = {.lex_state = 518}, + [2091] = {.lex_state = 518}, + [2092] = {.lex_state = 518}, + [2093] = {.lex_state = 518}, + [2094] = {.lex_state = 518}, + [2095] = {.lex_state = 518}, + [2096] = {.lex_state = 518}, + [2097] = {.lex_state = 518}, + [2098] = {.lex_state = 518}, + [2099] = {.lex_state = 518}, + [2100] = {.lex_state = 518}, + [2101] = {.lex_state = 518}, + [2102] = {.lex_state = 518}, + [2103] = {.lex_state = 518}, + [2104] = {.lex_state = 518}, + [2105] = {.lex_state = 518}, + [2106] = {.lex_state = 518}, + [2107] = {.lex_state = 518}, + [2108] = {.lex_state = 518}, + [2109] = {.lex_state = 518}, + [2110] = {.lex_state = 518}, + [2111] = {.lex_state = 518}, + [2112] = {.lex_state = 518}, + [2113] = {.lex_state = 518}, + [2114] = {.lex_state = 518}, + [2115] = {.lex_state = 518}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -26347,6 +26541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_2_GT] = ACTIONS(1), @@ -26432,7 +26627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(1), [aux_sym_variable_token2] = ACTIONS(1), [sym_braced_variable] = ACTIONS(1), - [sym_command_parameter] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [aux_sym_param_block_token1] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), @@ -26515,15 +26709,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1885), - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_param_block] = STATE(75), - [sym_statement_list] = STATE(1754), + [sym_program] = STATE(1892), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_param_block] = STATE(71), + [sym_statement_list] = STATE(1934), [sym__statement] = STATE(73), [sym_empty_statement] = STATE(73), [sym_if_statement] = STATE(73), @@ -26534,54 +26728,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_statement] = STATE(73), [sym_do_statement] = STATE(73), [sym_function_statement] = STATE(73), - [sym_flow_control_statement] = STATE(1848), + [sym_flow_control_statement] = STATE(1940), [sym_trap_statement] = STATE(73), [sym_try_statement] = STATE(73), [sym_data_statement] = STATE(73), [sym_inlinescript_statement] = STATE(73), [sym_parallel_statement] = STATE(73), [sym_sequence_statement] = STATE(73), - [sym_pipeline] = STATE(1848), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym_pipeline] = STATE(1940), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), [sym_class_statement] = STATE(73), [sym_enum_statement] = STATE(73), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2090), - [sym_attribute] = STATE(1267), + [sym_attribute_list] = STATE(1952), + [sym_attribute] = STATE(1238), [aux_sym_statement_list_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -26629,6 +26823,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(61), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(67), @@ -26645,30 +26849,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [2] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), [sym_unary_expression] = STATE(175), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(5), @@ -26685,6 +26889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(95), [anon_sym_SLASH_EQ] = ACTIONS(95), [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(95), [anon_sym_2_GT] = ACTIONS(97), @@ -26802,30 +27007,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(95), }, [3] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), [sym_unary_expression] = STATE(175), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(5), @@ -26842,6 +27047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(95), [anon_sym_SLASH_EQ] = ACTIONS(95), [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(95), [anon_sym_2_GT] = ACTIONS(97), @@ -26958,30 +27164,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(95), }, [4] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_unary_expression] = STATE(168), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_unary_expression] = STATE(167), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), @@ -26998,6 +27204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(95), [anon_sym_SLASH_EQ] = ACTIONS(95), [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(95), [anon_sym_2_GT] = ACTIONS(97), @@ -27117,14 +27324,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__literal] = STATE(150), [sym_integer_literal] = STATE(150), [sym_string_literal] = STATE(150), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), [sym_variable] = STATE(150), - [sym_unary_expression] = STATE(128), + [sym_unary_expression] = STATE(129), [sym_expression_with_unary_operator] = STATE(132), - [sym_pre_increment_expression] = STATE(123), - [sym_pre_decrement_expression] = STATE(123), - [sym_cast_expression] = STATE(123), + [sym_pre_increment_expression] = STATE(125), + [sym_pre_decrement_expression] = STATE(125), + [sym_cast_expression] = STATE(125), [sym__primary_expression] = STATE(150), [sym__value] = STATE(150), [sym_parenthesized_expression] = STATE(150), @@ -27137,7 +27344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_access] = STATE(150), [sym_element_access] = STATE(150), [sym_invokation_expression] = STATE(150), - [sym_invokation_foreach_expression] = STATE(147), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(5), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(5), @@ -27154,6 +27361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(95), [anon_sym_SLASH_EQ] = ACTIONS(95), [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(95), [anon_sym_2_GT] = ACTIONS(97), @@ -27270,30 +27478,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(95), }, [6] = { - [sym__literal] = STATE(151), - [sym_integer_literal] = STATE(151), - [sym_string_literal] = STATE(151), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(151), - [sym_unary_expression] = STATE(105), - [sym_expression_with_unary_operator] = STATE(99), - [sym_pre_increment_expression] = STATE(100), - [sym_pre_decrement_expression] = STATE(100), - [sym_cast_expression] = STATE(100), - [sym__primary_expression] = STATE(151), - [sym__value] = STATE(151), - [sym_parenthesized_expression] = STATE(151), - [sym_sub_expression] = STATE(151), - [sym_array_expression] = STATE(151), - [sym_script_block_expression] = STATE(151), - [sym_hash_literal_expression] = STATE(151), - [sym_post_increment_expression] = STATE(151), - [sym_post_decrement_expression] = STATE(151), - [sym_member_access] = STATE(151), - [sym_element_access] = STATE(151), - [sym_invokation_expression] = STATE(151), - [sym_invokation_foreach_expression] = STATE(115), + [sym__literal] = STATE(153), + [sym_integer_literal] = STATE(153), + [sym_string_literal] = STATE(153), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(153), + [sym_unary_expression] = STATE(114), + [sym_expression_with_unary_operator] = STATE(109), + [sym_pre_increment_expression] = STATE(110), + [sym_pre_decrement_expression] = STATE(110), + [sym_cast_expression] = STATE(110), + [sym__primary_expression] = STATE(153), + [sym__value] = STATE(153), + [sym_parenthesized_expression] = STATE(153), + [sym_sub_expression] = STATE(153), + [sym_array_expression] = STATE(153), + [sym_script_block_expression] = STATE(153), + [sym_hash_literal_expression] = STATE(153), + [sym_post_increment_expression] = STATE(153), + [sym_post_decrement_expression] = STATE(153), + [sym_member_access] = STATE(153), + [sym_element_access] = STATE(153), + [sym_invokation_expression] = STATE(153), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(6), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), @@ -27310,6 +27518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(95), [anon_sym_SLASH_EQ] = ACTIONS(95), [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(95), [anon_sym_2_GT] = ACTIONS(97), @@ -27426,78 +27635,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), }, [7] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1756), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1694), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -27549,6 +27758,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -27566,78 +27785,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [8] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1844), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(2055), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -27690,6 +27909,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -27706,78 +27935,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [9] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1808), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(2046), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -27830,6 +28059,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -27846,78 +28085,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [10] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1833), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1812), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -27970,6 +28209,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -27986,78 +28235,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [11] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1978), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1897), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28110,6 +28359,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28126,78 +28385,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [12] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2046), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1914), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28250,6 +28509,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28266,78 +28535,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [13] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2051), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1921), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28390,6 +28659,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28406,78 +28685,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [14] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2076), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1958), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28530,6 +28809,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28546,78 +28835,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [15] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1818), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1831), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28669,6 +28958,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28686,78 +28985,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [16] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1830), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1739), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28810,6 +29109,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28826,78 +29135,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [17] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1946), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1785), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -28950,6 +29259,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -28966,78 +29285,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [18] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2052), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1789), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29090,6 +29409,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29106,78 +29435,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [19] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2098), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(2113), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29230,6 +29559,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29246,78 +29585,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [20] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1981), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1701), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29370,6 +29709,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29386,78 +29735,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [21] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2010), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(2090), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29486,7 +29835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_block_name_token3] = ACTIONS(179), [aux_sym_block_name_token4] = ACTIONS(179), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(239), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -29510,6 +29858,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29524,80 +29882,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), + [sym__statement_terminator] = ACTIONS(213), }, [22] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2055), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1811), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29626,6 +29985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_block_name_token3] = ACTIONS(179), [aux_sym_block_name_token4] = ACTIONS(179), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(239), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -29649,6 +30009,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29663,81 +30033,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), - [sym__statement_terminator] = ACTIONS(213), }, [23] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1960), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1738), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29789,6 +30158,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29806,78 +30185,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [24] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1825), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(2044), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -29929,6 +30308,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -29946,78 +30335,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [25] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1939), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1752), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30069,6 +30458,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30086,78 +30485,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [26] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1739), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1778), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30209,6 +30608,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30226,78 +30635,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [27] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1765), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1839), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30349,6 +30758,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30366,78 +30785,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [28] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1787), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1800), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30489,6 +30908,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30506,78 +30935,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [29] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1809), - [sym_param_block] = STATE(1778), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1822), + [sym_param_block] = STATE(1776), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2074), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2049), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30629,6 +31058,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30646,78 +31085,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(213), }, [30] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1915), - [sym_param_block] = STATE(25), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1793), + [sym_param_block] = STATE(28), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30769,6 +31208,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30785,78 +31234,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [31] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1816), - [sym_param_block] = STATE(15), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1837), + [sym_param_block] = STATE(27), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -30908,6 +31357,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -30924,78 +31383,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [32] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1780), - [sym_param_block] = STATE(28), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1744), + [sym_param_block] = STATE(25), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31047,6 +31506,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31063,78 +31532,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [33] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1758), - [sym_param_block] = STATE(27), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1718), + [sym_param_block] = STATE(23), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31186,6 +31655,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31202,78 +31681,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [34] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1741), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1706), [sym_param_block] = STATE(7), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31325,6 +31804,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31341,78 +31830,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [35] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1802), - [sym_param_block] = STATE(29), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1799), + [sym_param_block] = STATE(21), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31464,6 +31953,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31480,78 +31979,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [36] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(2006), - [sym_param_block] = STATE(22), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1982), + [sym_param_block] = STATE(24), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31603,6 +32102,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31619,78 +32128,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [37] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1882), - [sym_param_block] = STATE(23), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1771), + [sym_param_block] = STATE(26), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31742,6 +32251,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31758,78 +32277,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [38] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1823), - [sym_param_block] = STATE(24), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1815), + [sym_param_block] = STATE(29), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -31881,6 +32400,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -31897,78 +32426,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [39] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block] = STATE(1731), - [sym_param_block] = STATE(26), - [sym_script_block_body] = STATE(1755), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block] = STATE(1829), + [sym_param_block] = STATE(15), + [sym_script_block_body] = STATE(1712), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(2), - [sym_attribute_list] = STATE(2023), - [sym_attribute] = STATE(1267), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), - [aux_sym_attribute_list_repeat1] = STATE(1267), + [sym_attribute_list] = STATE(2026), + [sym_attribute] = STATE(1238), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), + [aux_sym_attribute_list_repeat1] = STATE(1238), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32020,6 +32549,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32036,74 +32575,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [40] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block_body] = STATE(2130), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block_body] = STATE(2111), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_script_block_repeat1] = STATE(41), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_script_block_repeat1] = STATE(296), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32155,6 +32694,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32171,74 +32720,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [41] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_script_block_body] = STATE(1729), - [sym_named_block_list] = STATE(2041), - [sym_named_block] = STATE(1303), - [sym_block_name] = STATE(1692), - [sym_statement_list] = STATE(2082), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_script_block_body] = STATE(1861), + [sym_named_block_list] = STATE(1732), + [sym_named_block] = STATE(1268), + [sym_block_name] = STATE(1559), + [sym_statement_list] = STATE(1790), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_script_block_repeat1] = STATE(352), - [aux_sym_named_block_list_repeat1] = STATE(1303), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_script_block_repeat1] = STATE(40), + [aux_sym_named_block_list_repeat1] = STATE(1268), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32290,6 +32839,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32306,332 +32865,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LBRACE] = ACTIONS(79), }, [42] = { - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(253), - [sym_real_literal] = ACTIONS(253), - [aux_sym_expandable_string_literal_token1] = ACTIONS(253), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(253), - [sym_verbatim_string_characters] = ACTIONS(253), - [sym_verbatim_here_string_characters] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_PERCENT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(253), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(253), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(253), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(253), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(253), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(253), - [anon_sym_2_GT_AMP1] = ACTIONS(253), - [anon_sym_3_GT_AMP1] = ACTIONS(253), - [anon_sym_4_GT_AMP1] = ACTIONS(253), - [anon_sym_5_GT_AMP1] = ACTIONS(253), - [anon_sym_6_GT_AMP1] = ACTIONS(253), - [anon_sym_STAR_GT_AMP2] = ACTIONS(253), - [anon_sym_1_GT_AMP2] = ACTIONS(253), - [anon_sym_3_GT_AMP2] = ACTIONS(253), - [anon_sym_4_GT_AMP2] = ACTIONS(253), - [anon_sym_5_GT_AMP2] = ACTIONS(253), - [anon_sym_6_GT_AMP2] = ACTIONS(253), - [aux_sym_comparison_operator_token1] = ACTIONS(253), - [aux_sym_comparison_operator_token2] = ACTIONS(253), - [aux_sym_comparison_operator_token3] = ACTIONS(253), - [aux_sym_comparison_operator_token4] = ACTIONS(253), - [aux_sym_comparison_operator_token5] = ACTIONS(253), - [aux_sym_comparison_operator_token6] = ACTIONS(253), - [aux_sym_comparison_operator_token7] = ACTIONS(253), - [aux_sym_comparison_operator_token8] = ACTIONS(253), - [aux_sym_comparison_operator_token9] = ACTIONS(253), - [aux_sym_comparison_operator_token10] = ACTIONS(253), - [aux_sym_comparison_operator_token11] = ACTIONS(253), - [aux_sym_comparison_operator_token12] = ACTIONS(253), - [aux_sym_comparison_operator_token13] = ACTIONS(253), - [aux_sym_comparison_operator_token14] = ACTIONS(253), - [aux_sym_comparison_operator_token15] = ACTIONS(253), - [aux_sym_comparison_operator_token16] = ACTIONS(253), - [aux_sym_comparison_operator_token17] = ACTIONS(253), - [aux_sym_comparison_operator_token18] = ACTIONS(253), - [aux_sym_comparison_operator_token19] = ACTIONS(253), - [aux_sym_comparison_operator_token20] = ACTIONS(253), - [aux_sym_comparison_operator_token21] = ACTIONS(253), - [aux_sym_comparison_operator_token22] = ACTIONS(253), - [aux_sym_comparison_operator_token23] = ACTIONS(253), - [aux_sym_comparison_operator_token24] = ACTIONS(253), - [aux_sym_comparison_operator_token25] = ACTIONS(253), - [aux_sym_comparison_operator_token26] = ACTIONS(253), - [aux_sym_comparison_operator_token27] = ACTIONS(253), - [aux_sym_comparison_operator_token28] = ACTIONS(251), - [aux_sym_comparison_operator_token29] = ACTIONS(253), - [aux_sym_comparison_operator_token30] = ACTIONS(253), - [aux_sym_comparison_operator_token31] = ACTIONS(253), - [aux_sym_comparison_operator_token32] = ACTIONS(253), - [aux_sym_comparison_operator_token33] = ACTIONS(253), - [aux_sym_comparison_operator_token34] = ACTIONS(251), - [aux_sym_comparison_operator_token35] = ACTIONS(253), - [aux_sym_comparison_operator_token36] = ACTIONS(253), - [aux_sym_comparison_operator_token37] = ACTIONS(253), - [aux_sym_comparison_operator_token38] = ACTIONS(253), - [aux_sym_comparison_operator_token39] = ACTIONS(253), - [aux_sym_comparison_operator_token40] = ACTIONS(253), - [aux_sym_comparison_operator_token41] = ACTIONS(253), - [aux_sym_comparison_operator_token42] = ACTIONS(253), - [aux_sym_comparison_operator_token43] = ACTIONS(253), - [aux_sym_comparison_operator_token44] = ACTIONS(253), - [aux_sym_comparison_operator_token45] = ACTIONS(253), - [aux_sym_comparison_operator_token46] = ACTIONS(253), - [aux_sym_comparison_operator_token47] = ACTIONS(253), - [aux_sym_comparison_operator_token48] = ACTIONS(253), - [aux_sym_comparison_operator_token49] = ACTIONS(253), - [aux_sym_comparison_operator_token50] = ACTIONS(253), - [aux_sym_format_operator_token1] = ACTIONS(253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(253), - [anon_sym_DOLLAR_CARET] = ACTIONS(253), - [anon_sym_DOLLAR_QMARK] = ACTIONS(253), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(253), - [sym_braced_variable] = ACTIONS(253), - [aux_sym_param_block_token1] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_PERCENT] = ACTIONS(251), - [aux_sym_logical_expression_token1] = ACTIONS(253), - [aux_sym_logical_expression_token2] = ACTIONS(253), - [aux_sym_logical_expression_token3] = ACTIONS(253), - [aux_sym_bitwise_expression_token1] = ACTIONS(253), - [aux_sym_bitwise_expression_token2] = ACTIONS(253), - [aux_sym_bitwise_expression_token3] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_DOT_DOT] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_AT_LPAREN] = ACTIONS(253), - [anon_sym_AT_LBRACE] = ACTIONS(253), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(253), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), - }, - [43] = { - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(253), - [sym_real_literal] = ACTIONS(253), - [aux_sym_expandable_string_literal_token1] = ACTIONS(253), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(253), - [sym_verbatim_string_characters] = ACTIONS(253), - [sym_verbatim_here_string_characters] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_SLASH_EQ] = ACTIONS(253), - [anon_sym_PERCENT_EQ] = ACTIONS(253), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(253), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(253), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(253), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(253), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(253), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(253), - [anon_sym_2_GT_AMP1] = ACTIONS(253), - [anon_sym_3_GT_AMP1] = ACTIONS(253), - [anon_sym_4_GT_AMP1] = ACTIONS(253), - [anon_sym_5_GT_AMP1] = ACTIONS(253), - [anon_sym_6_GT_AMP1] = ACTIONS(253), - [anon_sym_STAR_GT_AMP2] = ACTIONS(253), - [anon_sym_1_GT_AMP2] = ACTIONS(253), - [anon_sym_3_GT_AMP2] = ACTIONS(253), - [anon_sym_4_GT_AMP2] = ACTIONS(253), - [anon_sym_5_GT_AMP2] = ACTIONS(253), - [anon_sym_6_GT_AMP2] = ACTIONS(253), - [aux_sym_comparison_operator_token1] = ACTIONS(253), - [aux_sym_comparison_operator_token2] = ACTIONS(253), - [aux_sym_comparison_operator_token3] = ACTIONS(253), - [aux_sym_comparison_operator_token4] = ACTIONS(253), - [aux_sym_comparison_operator_token5] = ACTIONS(253), - [aux_sym_comparison_operator_token6] = ACTIONS(253), - [aux_sym_comparison_operator_token7] = ACTIONS(253), - [aux_sym_comparison_operator_token8] = ACTIONS(253), - [aux_sym_comparison_operator_token9] = ACTIONS(253), - [aux_sym_comparison_operator_token10] = ACTIONS(253), - [aux_sym_comparison_operator_token11] = ACTIONS(253), - [aux_sym_comparison_operator_token12] = ACTIONS(253), - [aux_sym_comparison_operator_token13] = ACTIONS(253), - [aux_sym_comparison_operator_token14] = ACTIONS(253), - [aux_sym_comparison_operator_token15] = ACTIONS(253), - [aux_sym_comparison_operator_token16] = ACTIONS(253), - [aux_sym_comparison_operator_token17] = ACTIONS(253), - [aux_sym_comparison_operator_token18] = ACTIONS(253), - [aux_sym_comparison_operator_token19] = ACTIONS(253), - [aux_sym_comparison_operator_token20] = ACTIONS(253), - [aux_sym_comparison_operator_token21] = ACTIONS(253), - [aux_sym_comparison_operator_token22] = ACTIONS(253), - [aux_sym_comparison_operator_token23] = ACTIONS(253), - [aux_sym_comparison_operator_token24] = ACTIONS(253), - [aux_sym_comparison_operator_token25] = ACTIONS(253), - [aux_sym_comparison_operator_token26] = ACTIONS(253), - [aux_sym_comparison_operator_token27] = ACTIONS(253), - [aux_sym_comparison_operator_token28] = ACTIONS(251), - [aux_sym_comparison_operator_token29] = ACTIONS(253), - [aux_sym_comparison_operator_token30] = ACTIONS(253), - [aux_sym_comparison_operator_token31] = ACTIONS(253), - [aux_sym_comparison_operator_token32] = ACTIONS(253), - [aux_sym_comparison_operator_token33] = ACTIONS(253), - [aux_sym_comparison_operator_token34] = ACTIONS(251), - [aux_sym_comparison_operator_token35] = ACTIONS(253), - [aux_sym_comparison_operator_token36] = ACTIONS(253), - [aux_sym_comparison_operator_token37] = ACTIONS(253), - [aux_sym_comparison_operator_token38] = ACTIONS(253), - [aux_sym_comparison_operator_token39] = ACTIONS(253), - [aux_sym_comparison_operator_token40] = ACTIONS(253), - [aux_sym_comparison_operator_token41] = ACTIONS(253), - [aux_sym_comparison_operator_token42] = ACTIONS(253), - [aux_sym_comparison_operator_token43] = ACTIONS(253), - [aux_sym_comparison_operator_token44] = ACTIONS(253), - [aux_sym_comparison_operator_token45] = ACTIONS(253), - [aux_sym_comparison_operator_token46] = ACTIONS(253), - [aux_sym_comparison_operator_token47] = ACTIONS(253), - [aux_sym_comparison_operator_token48] = ACTIONS(253), - [aux_sym_comparison_operator_token49] = ACTIONS(253), - [aux_sym_comparison_operator_token50] = ACTIONS(253), - [aux_sym_format_operator_token1] = ACTIONS(253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(253), - [anon_sym_DOLLAR_CARET] = ACTIONS(253), - [anon_sym_DOLLAR_QMARK] = ACTIONS(253), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(253), - [sym_braced_variable] = ACTIONS(253), - [aux_sym_param_block_token1] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_PERCENT] = ACTIONS(251), - [aux_sym_logical_expression_token1] = ACTIONS(253), - [aux_sym_logical_expression_token2] = ACTIONS(253), - [aux_sym_logical_expression_token3] = ACTIONS(253), - [aux_sym_bitwise_expression_token1] = ACTIONS(253), - [aux_sym_bitwise_expression_token2] = ACTIONS(253), - [aux_sym_bitwise_expression_token3] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_BSLASH] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_DOT_DOT] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_AT_LPAREN] = ACTIONS(253), - [anon_sym_AT_LBRACE] = ACTIONS(253), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(253), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), - [sym__statement_terminator] = ACTIONS(253), - }, - [44] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1751), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1774), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32653,7 +32948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(251), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -32679,6 +32974,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32694,69 +32999,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [45] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1928), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [43] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(43), + [sym_empty_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym__labeled_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_foreach_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_function_statement] = STATE(43), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym_data_statement] = STATE(43), + [sym_inlinescript_statement] = STATE(43), + [sym_parallel_statement] = STATE(43), + [sym_sequence_statement] = STATE(43), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(43), + [sym_enum_statement] = STATE(43), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(43), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(253), + [sym_hexadecimal_integer_literal] = ACTIONS(253), + [sym_real_literal] = ACTIONS(256), + [aux_sym_expandable_string_literal_token1] = ACTIONS(259), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(262), + [sym_verbatim_string_characters] = ACTIONS(265), + [sym_verbatim_here_string_characters] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [aux_sym_comparison_operator_token37] = ACTIONS(274), + [aux_sym_comparison_operator_token50] = ACTIONS(274), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(277), + [anon_sym_DOLLAR_CARET] = ACTIONS(277), + [anon_sym_DOLLAR_QMARK] = ACTIONS(277), + [anon_sym_DOLLAR_] = ACTIONS(277), + [aux_sym_variable_token1] = ACTIONS(277), + [aux_sym_variable_token2] = ACTIONS(277), + [sym_braced_variable] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_RPAREN] = ACTIONS(286), + [anon_sym_COMMA] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(286), + [aux_sym_if_statement_token1] = ACTIONS(291), + [aux_sym_switch_statement_token1] = ACTIONS(294), + [aux_sym_foreach_statement_token1] = ACTIONS(297), + [aux_sym_for_statement_token1] = ACTIONS(300), + [aux_sym_while_statement_token1] = ACTIONS(303), + [aux_sym_do_statement_token1] = ACTIONS(306), + [aux_sym_function_statement_token1] = ACTIONS(309), + [aux_sym_function_statement_token2] = ACTIONS(309), + [aux_sym_function_statement_token3] = ACTIONS(309), + [aux_sym_flow_control_statement_token1] = ACTIONS(312), + [aux_sym_flow_control_statement_token2] = ACTIONS(312), + [aux_sym_flow_control_statement_token3] = ACTIONS(315), + [aux_sym_flow_control_statement_token4] = ACTIONS(315), + [aux_sym_flow_control_statement_token5] = ACTIONS(315), + [sym_label] = ACTIONS(318), + [aux_sym_trap_statement_token1] = ACTIONS(321), + [aux_sym_try_statement_token1] = ACTIONS(324), + [aux_sym_data_statement_token1] = ACTIONS(327), + [aux_sym_inlinescript_statement_token1] = ACTIONS(330), + [aux_sym_parallel_statement_token1] = ACTIONS(333), + [aux_sym_sequence_statement_token1] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(268), + [aux_sym_command_name_token1] = ACTIONS(339), + [aux_sym_command_name_token2] = ACTIONS(339), + [aux_sym_command_name_token3] = ACTIONS(339), + [aux_sym_command_name_token4] = ACTIONS(339), + [aux_sym_command_name_token5] = ACTIONS(339), + [aux_sym_command_name_token6] = ACTIONS(339), + [aux_sym_command_name_token7] = ACTIONS(339), + [aux_sym_command_name_token8] = ACTIONS(339), + [aux_sym_command_name_token9] = ACTIONS(339), + [aux_sym_command_name_token10] = ACTIONS(339), + [aux_sym_command_name_token11] = ACTIONS(339), + [anon_sym_PERCENT] = ACTIONS(342), + [aux_sym_foreach_command_token1] = ACTIONS(342), + [aux_sym_class_statement_token1] = ACTIONS(345), + [aux_sym_enum_statement_token1] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(274), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_AT_LPAREN] = ACTIONS(360), + [anon_sym_AT_LBRACE] = ACTIONS(363), + }, + [44] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1729), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), + [sym_foreach_command] = STATE(1458), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), + [sym_additive_expression] = STATE(197), + [sym_multiplicative_expression] = STATE(189), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32778,7 +33218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_RPAREN] = ACTIONS(366), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -32804,6 +33244,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32819,69 +33269,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [46] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1952), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [45] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1730), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -32903,9 +33353,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(259), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -32929,6 +33379,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -32944,69 +33404,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [47] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1767), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [46] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1742), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33028,9 +33488,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(261), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(370), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -33054,6 +33514,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33069,69 +33539,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [48] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1734), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [47] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1745), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33153,7 +33623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_RPAREN] = ACTIONS(372), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -33179,6 +33649,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33194,69 +33674,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [49] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1735), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [48] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(2019), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33278,7 +33758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -33304,6 +33784,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33319,69 +33809,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [50] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1740), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [49] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(2020), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33403,9 +33893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RPAREN] = ACTIONS(376), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(267), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -33429,6 +33919,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33444,69 +33944,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [51] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1760), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [50] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(2057), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33528,9 +34028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(269), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(378), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -33554,6 +34054,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33569,69 +34079,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [52] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1761), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [51] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1714), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33653,9 +34163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(271), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(380), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -33679,6 +34189,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33694,69 +34214,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [53] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1766), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [52] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1735), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33778,9 +34298,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RPAREN] = ACTIONS(382), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(273), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -33804,6 +34324,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33819,69 +34349,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [54] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1782), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [53] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1747), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -33903,7 +34433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(275), + [anon_sym_RPAREN] = ACTIONS(384), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -33929,6 +34459,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -33944,69 +34484,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [55] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1783), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [54] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1748), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34028,7 +34568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(386), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34054,6 +34594,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34069,69 +34619,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [56] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1788), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [55] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1753), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34155,7 +34705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(388), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -34179,6 +34729,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34194,69 +34754,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [57] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1804), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [56] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1773), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34278,7 +34838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34304,6 +34864,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34319,69 +34889,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [58] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1805), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [57] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1842), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34403,7 +34973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34429,6 +34999,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34444,69 +35024,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [59] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1810), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [58] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1779), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34530,7 +35110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(394), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -34554,6 +35134,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34569,69 +35159,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [60] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1817), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [59] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1795), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34653,7 +35243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34679,6 +35269,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34694,69 +35294,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [61] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1824), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [60] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1796), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34778,7 +35378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34804,6 +35404,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34819,69 +35429,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [62] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1723), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [61] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1817), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -34903,7 +35513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -34929,6 +35539,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -34944,194 +35564,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [63] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(63), - [sym_empty_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym__labeled_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_foreach_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_function_statement] = STATE(63), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_data_statement] = STATE(63), - [sym_inlinescript_statement] = STATE(63), - [sym_parallel_statement] = STATE(63), - [sym_sequence_statement] = STATE(63), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), - [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(63), - [sym_enum_statement] = STATE(63), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), - [sym_additive_expression] = STATE(197), - [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(63), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(293), - [sym_hexadecimal_integer_literal] = ACTIONS(293), - [sym_real_literal] = ACTIONS(296), - [aux_sym_expandable_string_literal_token1] = ACTIONS(299), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(302), - [sym_verbatim_string_characters] = ACTIONS(305), - [sym_verbatim_here_string_characters] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(311), - [aux_sym_comparison_operator_token37] = ACTIONS(314), - [aux_sym_comparison_operator_token50] = ACTIONS(314), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(317), - [anon_sym_DOLLAR_CARET] = ACTIONS(317), - [anon_sym_DOLLAR_QMARK] = ACTIONS(317), - [anon_sym_DOLLAR_] = ACTIONS(317), - [aux_sym_variable_token1] = ACTIONS(317), - [aux_sym_variable_token2] = ACTIONS(317), - [sym_braced_variable] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_RBRACE] = ACTIONS(326), - [aux_sym_if_statement_token1] = ACTIONS(331), - [aux_sym_switch_statement_token1] = ACTIONS(334), - [aux_sym_foreach_statement_token1] = ACTIONS(337), - [aux_sym_for_statement_token1] = ACTIONS(340), - [aux_sym_while_statement_token1] = ACTIONS(343), - [aux_sym_do_statement_token1] = ACTIONS(346), - [aux_sym_function_statement_token1] = ACTIONS(349), - [aux_sym_function_statement_token2] = ACTIONS(349), - [aux_sym_function_statement_token3] = ACTIONS(349), - [aux_sym_flow_control_statement_token1] = ACTIONS(352), - [aux_sym_flow_control_statement_token2] = ACTIONS(352), - [aux_sym_flow_control_statement_token3] = ACTIONS(355), - [aux_sym_flow_control_statement_token4] = ACTIONS(355), - [aux_sym_flow_control_statement_token5] = ACTIONS(355), - [sym_label] = ACTIONS(358), - [aux_sym_trap_statement_token1] = ACTIONS(361), - [aux_sym_try_statement_token1] = ACTIONS(364), - [aux_sym_data_statement_token1] = ACTIONS(367), - [aux_sym_inlinescript_statement_token1] = ACTIONS(370), - [aux_sym_parallel_statement_token1] = ACTIONS(373), - [aux_sym_sequence_statement_token1] = ACTIONS(376), - [anon_sym_AMP] = ACTIONS(308), - [aux_sym_command_name_token1] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(382), - [aux_sym_foreach_command_token1] = ACTIONS(382), - [aux_sym_class_statement_token1] = ACTIONS(385), - [aux_sym_enum_statement_token1] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(314), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(314), - [anon_sym_BANG] = ACTIONS(314), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(314), - [anon_sym_PLUS_PLUS] = ACTIONS(391), - [anon_sym_DASH_DASH] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [anon_sym_AT_LPAREN] = ACTIONS(400), - [anon_sym_AT_LBRACE] = ACTIONS(403), - }, - [64] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1738), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [62] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1818), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35153,9 +35648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RPAREN] = ACTIONS(402), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(406), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -35179,6 +35674,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35194,69 +35699,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [65] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(2059), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [63] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1823), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35280,7 +35785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(404), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -35304,6 +35809,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35319,69 +35834,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [66] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(2013), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [64] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1830), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35403,7 +35918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(410), + [anon_sym_RPAREN] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -35429,6 +35944,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35444,69 +35969,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [67] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1921), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [65] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1838), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35528,7 +36053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_RPAREN] = ACTIONS(408), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -35554,6 +36079,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35569,69 +36104,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [68] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1925), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [66] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1844), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35653,7 +36188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(414), + [anon_sym_RPAREN] = ACTIONS(410), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(181), @@ -35679,6 +36214,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35694,69 +36239,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [69] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1967), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [67] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1846), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35778,9 +36323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(416), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -35804,6 +36349,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35819,69 +36374,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [70] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(2014), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [68] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(43), + [sym_empty_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym__labeled_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_foreach_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_function_statement] = STATE(43), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym_data_statement] = STATE(43), + [sym_inlinescript_statement] = STATE(43), + [sym_parallel_statement] = STATE(43), + [sym_sequence_statement] = STATE(43), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(43), + [sym_enum_statement] = STATE(43), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(43), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -35903,9 +36457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_RPAREN] = ACTIONS(414), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(414), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -35929,6 +36484,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -35944,68 +36509,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [71] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(63), - [sym_empty_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym__labeled_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_foreach_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_function_statement] = STATE(63), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_data_statement] = STATE(63), - [sym_inlinescript_statement] = STATE(63), - [sym_parallel_statement] = STATE(63), - [sym_sequence_statement] = STATE(63), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [69] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(2105), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(63), - [sym_enum_statement] = STATE(63), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(63), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -36027,10 +36593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(420), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(416), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -36054,6 +36619,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -36069,69 +36644,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [72] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1926), - [sym__statement] = STATE(71), - [sym_empty_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym__labeled_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_foreach_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_function_statement] = STATE(71), - [sym_flow_control_statement] = STATE(1996), - [sym_trap_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_data_statement] = STATE(71), - [sym_inlinescript_statement] = STATE(71), - [sym_parallel_statement] = STATE(71), - [sym_sequence_statement] = STATE(71), - [sym_pipeline] = STATE(1996), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [70] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1801), + [sym__statement] = STATE(68), + [sym_empty_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym__labeled_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_foreach_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_function_statement] = STATE(68), + [sym_flow_control_statement] = STATE(1734), + [sym_trap_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_data_statement] = STATE(68), + [sym_inlinescript_statement] = STATE(68), + [sym_parallel_statement] = STATE(68), + [sym_sequence_statement] = STATE(68), + [sym_pipeline] = STATE(1734), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(71), - [sym_enum_statement] = STATE(71), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(68), + [sym_enum_statement] = STATE(68), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(71), + [aux_sym_statement_list_repeat1] = STATE(68), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -36153,9 +36728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(21), [anon_sym_SEMI] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(422), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(418), [aux_sym_if_statement_token1] = ACTIONS(181), [aux_sym_switch_statement_token1] = ACTIONS(183), [aux_sym_foreach_statement_token1] = ACTIONS(185), @@ -36179,6 +36754,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(207), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(209), @@ -36194,69 +36779,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [73] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(74), - [sym_empty_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym__labeled_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_foreach_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_function_statement] = STATE(74), - [sym_flow_control_statement] = STATE(1848), - [sym_trap_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_data_statement] = STATE(74), - [sym_inlinescript_statement] = STATE(74), - [sym_parallel_statement] = STATE(74), - [sym_sequence_statement] = STATE(74), - [sym_pipeline] = STATE(1848), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [71] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_statement_list] = STATE(1722), + [sym__statement] = STATE(73), + [sym_empty_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym__labeled_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_foreach_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_function_statement] = STATE(73), + [sym_flow_control_statement] = STATE(1940), + [sym_trap_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_data_statement] = STATE(73), + [sym_inlinescript_statement] = STATE(73), + [sym_parallel_statement] = STATE(73), + [sym_sequence_statement] = STATE(73), + [sym_pipeline] = STATE(1940), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(74), - [sym_enum_statement] = STATE(74), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(73), + [sym_enum_statement] = STATE(73), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(424), + [aux_sym_statement_list_repeat1] = STATE(73), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -36303,6 +36888,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(61), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(67), @@ -36318,193 +36913,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [74] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(74), - [sym_empty_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym__labeled_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_foreach_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_function_statement] = STATE(74), - [sym_flow_control_statement] = STATE(1848), - [sym_trap_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_data_statement] = STATE(74), - [sym_inlinescript_statement] = STATE(74), - [sym_parallel_statement] = STATE(74), - [sym_sequence_statement] = STATE(74), - [sym_pipeline] = STATE(1848), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [72] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(72), + [sym_empty_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym__labeled_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_foreach_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_function_statement] = STATE(72), + [sym_flow_control_statement] = STATE(1940), + [sym_trap_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_data_statement] = STATE(72), + [sym_inlinescript_statement] = STATE(72), + [sym_parallel_statement] = STATE(72), + [sym_sequence_statement] = STATE(72), + [sym_pipeline] = STATE(1940), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(74), - [sym_enum_statement] = STATE(74), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(72), + [sym_enum_statement] = STATE(72), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(426), + [aux_sym_statement_list_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(420), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(293), - [sym_hexadecimal_integer_literal] = ACTIONS(293), - [sym_real_literal] = ACTIONS(296), - [aux_sym_expandable_string_literal_token1] = ACTIONS(299), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(302), - [sym_verbatim_string_characters] = ACTIONS(305), - [sym_verbatim_here_string_characters] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(311), - [aux_sym_comparison_operator_token37] = ACTIONS(314), - [aux_sym_comparison_operator_token50] = ACTIONS(314), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(317), - [anon_sym_DOLLAR_CARET] = ACTIONS(317), - [anon_sym_DOLLAR_QMARK] = ACTIONS(317), - [anon_sym_DOLLAR_] = ACTIONS(317), - [aux_sym_variable_token1] = ACTIONS(317), - [aux_sym_variable_token2] = ACTIONS(317), - [sym_braced_variable] = ACTIONS(317), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(328), - [aux_sym_if_statement_token1] = ACTIONS(431), - [aux_sym_switch_statement_token1] = ACTIONS(434), - [aux_sym_foreach_statement_token1] = ACTIONS(437), - [aux_sym_for_statement_token1] = ACTIONS(440), - [aux_sym_while_statement_token1] = ACTIONS(443), - [aux_sym_do_statement_token1] = ACTIONS(446), - [aux_sym_function_statement_token1] = ACTIONS(449), - [aux_sym_function_statement_token2] = ACTIONS(449), - [aux_sym_function_statement_token3] = ACTIONS(449), - [aux_sym_flow_control_statement_token1] = ACTIONS(352), - [aux_sym_flow_control_statement_token2] = ACTIONS(352), - [aux_sym_flow_control_statement_token3] = ACTIONS(355), - [aux_sym_flow_control_statement_token4] = ACTIONS(355), - [aux_sym_flow_control_statement_token5] = ACTIONS(355), - [sym_label] = ACTIONS(452), - [aux_sym_trap_statement_token1] = ACTIONS(455), - [aux_sym_try_statement_token1] = ACTIONS(458), - [aux_sym_data_statement_token1] = ACTIONS(461), - [aux_sym_inlinescript_statement_token1] = ACTIONS(464), - [aux_sym_parallel_statement_token1] = ACTIONS(467), - [aux_sym_sequence_statement_token1] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(308), - [aux_sym_command_name_token1] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(382), - [aux_sym_foreach_command_token1] = ACTIONS(382), - [aux_sym_class_statement_token1] = ACTIONS(473), - [aux_sym_enum_statement_token1] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(314), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(314), - [anon_sym_BANG] = ACTIONS(314), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(314), - [anon_sym_PLUS_PLUS] = ACTIONS(391), - [anon_sym_DASH_DASH] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(397), - [anon_sym_AT_LPAREN] = ACTIONS(400), - [anon_sym_AT_LBRACE] = ACTIONS(403), + [sym_decimal_integer_literal] = ACTIONS(253), + [sym_hexadecimal_integer_literal] = ACTIONS(253), + [sym_real_literal] = ACTIONS(256), + [aux_sym_expandable_string_literal_token1] = ACTIONS(259), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(262), + [sym_verbatim_string_characters] = ACTIONS(265), + [sym_verbatim_here_string_characters] = ACTIONS(265), + [anon_sym_DOT] = ACTIONS(268), + [anon_sym_LBRACK] = ACTIONS(271), + [aux_sym_comparison_operator_token37] = ACTIONS(274), + [aux_sym_comparison_operator_token50] = ACTIONS(274), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(277), + [anon_sym_DOLLAR_CARET] = ACTIONS(277), + [anon_sym_DOLLAR_QMARK] = ACTIONS(277), + [anon_sym_DOLLAR_] = ACTIONS(277), + [aux_sym_variable_token1] = ACTIONS(277), + [aux_sym_variable_token2] = ACTIONS(277), + [sym_braced_variable] = ACTIONS(277), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(288), + [aux_sym_if_statement_token1] = ACTIONS(425), + [aux_sym_switch_statement_token1] = ACTIONS(428), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_for_statement_token1] = ACTIONS(434), + [aux_sym_while_statement_token1] = ACTIONS(437), + [aux_sym_do_statement_token1] = ACTIONS(440), + [aux_sym_function_statement_token1] = ACTIONS(443), + [aux_sym_function_statement_token2] = ACTIONS(443), + [aux_sym_function_statement_token3] = ACTIONS(443), + [aux_sym_flow_control_statement_token1] = ACTIONS(312), + [aux_sym_flow_control_statement_token2] = ACTIONS(312), + [aux_sym_flow_control_statement_token3] = ACTIONS(315), + [aux_sym_flow_control_statement_token4] = ACTIONS(315), + [aux_sym_flow_control_statement_token5] = ACTIONS(315), + [sym_label] = ACTIONS(446), + [aux_sym_trap_statement_token1] = ACTIONS(449), + [aux_sym_try_statement_token1] = ACTIONS(452), + [aux_sym_data_statement_token1] = ACTIONS(455), + [aux_sym_inlinescript_statement_token1] = ACTIONS(458), + [aux_sym_parallel_statement_token1] = ACTIONS(461), + [aux_sym_sequence_statement_token1] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(268), + [aux_sym_command_name_token1] = ACTIONS(339), + [aux_sym_command_name_token2] = ACTIONS(339), + [aux_sym_command_name_token3] = ACTIONS(339), + [aux_sym_command_name_token4] = ACTIONS(339), + [aux_sym_command_name_token5] = ACTIONS(339), + [aux_sym_command_name_token6] = ACTIONS(339), + [aux_sym_command_name_token7] = ACTIONS(339), + [aux_sym_command_name_token8] = ACTIONS(339), + [aux_sym_command_name_token9] = ACTIONS(339), + [aux_sym_command_name_token10] = ACTIONS(339), + [aux_sym_command_name_token11] = ACTIONS(339), + [anon_sym_PERCENT] = ACTIONS(342), + [aux_sym_foreach_command_token1] = ACTIONS(342), + [aux_sym_class_statement_token1] = ACTIONS(467), + [aux_sym_enum_statement_token1] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(274), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(274), + [anon_sym_PLUS_PLUS] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(357), + [anon_sym_AT_LPAREN] = ACTIONS(360), + [anon_sym_AT_LBRACE] = ACTIONS(363), }, - [75] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_statement_list] = STATE(1857), - [sym__statement] = STATE(73), - [sym_empty_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym__labeled_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_foreach_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_function_statement] = STATE(73), - [sym_flow_control_statement] = STATE(1848), - [sym_trap_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_data_statement] = STATE(73), - [sym_inlinescript_statement] = STATE(73), - [sym_parallel_statement] = STATE(73), - [sym_sequence_statement] = STATE(73), - [sym_pipeline] = STATE(1848), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [73] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(72), + [sym_empty_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym__labeled_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_foreach_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_function_statement] = STATE(72), + [sym_flow_control_statement] = STATE(1940), + [sym_trap_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_data_statement] = STATE(72), + [sym_inlinescript_statement] = STATE(72), + [sym_parallel_statement] = STATE(72), + [sym_sequence_statement] = STATE(72), + [sym_pipeline] = STATE(1940), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(73), - [sym_enum_statement] = STATE(73), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym_class_statement] = STATE(72), + [sym_enum_statement] = STATE(72), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), - [aux_sym_statement_list_repeat1] = STATE(73), + [aux_sym_statement_list_repeat1] = STATE(72), + [ts_builtin_sym_end] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(5), @@ -36551,6 +37156,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(61), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [aux_sym_class_statement_token1] = ACTIONS(67), @@ -36566,41 +37181,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, + [74] = { + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(477), + [sym_real_literal] = ACTIONS(477), + [aux_sym_expandable_string_literal_token1] = ACTIONS(477), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(477), + [sym_verbatim_string_characters] = ACTIONS(477), + [sym_verbatim_here_string_characters] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_PERCENT_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(477), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(477), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(477), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(477), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(477), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(477), + [anon_sym_2_GT_AMP1] = ACTIONS(477), + [anon_sym_3_GT_AMP1] = ACTIONS(477), + [anon_sym_4_GT_AMP1] = ACTIONS(477), + [anon_sym_5_GT_AMP1] = ACTIONS(477), + [anon_sym_6_GT_AMP1] = ACTIONS(477), + [anon_sym_STAR_GT_AMP2] = ACTIONS(477), + [anon_sym_1_GT_AMP2] = ACTIONS(477), + [anon_sym_3_GT_AMP2] = ACTIONS(477), + [anon_sym_4_GT_AMP2] = ACTIONS(477), + [anon_sym_5_GT_AMP2] = ACTIONS(477), + [anon_sym_6_GT_AMP2] = ACTIONS(477), + [aux_sym_comparison_operator_token1] = ACTIONS(477), + [aux_sym_comparison_operator_token2] = ACTIONS(477), + [aux_sym_comparison_operator_token3] = ACTIONS(477), + [aux_sym_comparison_operator_token4] = ACTIONS(477), + [aux_sym_comparison_operator_token5] = ACTIONS(477), + [aux_sym_comparison_operator_token6] = ACTIONS(477), + [aux_sym_comparison_operator_token7] = ACTIONS(477), + [aux_sym_comparison_operator_token8] = ACTIONS(477), + [aux_sym_comparison_operator_token9] = ACTIONS(477), + [aux_sym_comparison_operator_token10] = ACTIONS(477), + [aux_sym_comparison_operator_token11] = ACTIONS(477), + [aux_sym_comparison_operator_token12] = ACTIONS(477), + [aux_sym_comparison_operator_token13] = ACTIONS(477), + [aux_sym_comparison_operator_token14] = ACTIONS(477), + [aux_sym_comparison_operator_token15] = ACTIONS(477), + [aux_sym_comparison_operator_token16] = ACTIONS(477), + [aux_sym_comparison_operator_token17] = ACTIONS(477), + [aux_sym_comparison_operator_token18] = ACTIONS(477), + [aux_sym_comparison_operator_token19] = ACTIONS(477), + [aux_sym_comparison_operator_token20] = ACTIONS(477), + [aux_sym_comparison_operator_token21] = ACTIONS(477), + [aux_sym_comparison_operator_token22] = ACTIONS(477), + [aux_sym_comparison_operator_token23] = ACTIONS(477), + [aux_sym_comparison_operator_token24] = ACTIONS(477), + [aux_sym_comparison_operator_token25] = ACTIONS(477), + [aux_sym_comparison_operator_token26] = ACTIONS(477), + [aux_sym_comparison_operator_token27] = ACTIONS(477), + [aux_sym_comparison_operator_token28] = ACTIONS(475), + [aux_sym_comparison_operator_token29] = ACTIONS(477), + [aux_sym_comparison_operator_token30] = ACTIONS(477), + [aux_sym_comparison_operator_token31] = ACTIONS(477), + [aux_sym_comparison_operator_token32] = ACTIONS(477), + [aux_sym_comparison_operator_token33] = ACTIONS(477), + [aux_sym_comparison_operator_token34] = ACTIONS(475), + [aux_sym_comparison_operator_token35] = ACTIONS(477), + [aux_sym_comparison_operator_token36] = ACTIONS(477), + [aux_sym_comparison_operator_token37] = ACTIONS(477), + [aux_sym_comparison_operator_token38] = ACTIONS(477), + [aux_sym_comparison_operator_token39] = ACTIONS(477), + [aux_sym_comparison_operator_token40] = ACTIONS(477), + [aux_sym_comparison_operator_token41] = ACTIONS(477), + [aux_sym_comparison_operator_token42] = ACTIONS(477), + [aux_sym_comparison_operator_token43] = ACTIONS(477), + [aux_sym_comparison_operator_token44] = ACTIONS(477), + [aux_sym_comparison_operator_token45] = ACTIONS(477), + [aux_sym_comparison_operator_token46] = ACTIONS(477), + [aux_sym_comparison_operator_token47] = ACTIONS(477), + [aux_sym_comparison_operator_token48] = ACTIONS(477), + [aux_sym_comparison_operator_token49] = ACTIONS(477), + [aux_sym_comparison_operator_token50] = ACTIONS(477), + [aux_sym_format_operator_token1] = ACTIONS(477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(477), + [anon_sym_DOLLAR_CARET] = ACTIONS(477), + [anon_sym_DOLLAR_QMARK] = ACTIONS(477), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(477), + [sym_braced_variable] = ACTIONS(477), + [aux_sym_param_block_token1] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(475), + [aux_sym_logical_expression_token1] = ACTIONS(477), + [aux_sym_logical_expression_token2] = ACTIONS(477), + [aux_sym_logical_expression_token3] = ACTIONS(477), + [aux_sym_bitwise_expression_token1] = ACTIONS(477), + [aux_sym_bitwise_expression_token2] = ACTIONS(477), + [aux_sym_bitwise_expression_token3] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_DOT_DOT] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(477), + [anon_sym_AT_LPAREN] = ACTIONS(477), + [anon_sym_AT_LBRACE] = ACTIONS(477), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(477), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + }, + [75] = { + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(477), + [sym_real_literal] = ACTIONS(477), + [aux_sym_expandable_string_literal_token1] = ACTIONS(477), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(477), + [sym_verbatim_string_characters] = ACTIONS(477), + [sym_verbatim_here_string_characters] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_PERCENT_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(477), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(477), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(477), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(477), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(477), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(477), + [anon_sym_2_GT_AMP1] = ACTIONS(477), + [anon_sym_3_GT_AMP1] = ACTIONS(477), + [anon_sym_4_GT_AMP1] = ACTIONS(477), + [anon_sym_5_GT_AMP1] = ACTIONS(477), + [anon_sym_6_GT_AMP1] = ACTIONS(477), + [anon_sym_STAR_GT_AMP2] = ACTIONS(477), + [anon_sym_1_GT_AMP2] = ACTIONS(477), + [anon_sym_3_GT_AMP2] = ACTIONS(477), + [anon_sym_4_GT_AMP2] = ACTIONS(477), + [anon_sym_5_GT_AMP2] = ACTIONS(477), + [anon_sym_6_GT_AMP2] = ACTIONS(477), + [aux_sym_comparison_operator_token1] = ACTIONS(477), + [aux_sym_comparison_operator_token2] = ACTIONS(477), + [aux_sym_comparison_operator_token3] = ACTIONS(477), + [aux_sym_comparison_operator_token4] = ACTIONS(477), + [aux_sym_comparison_operator_token5] = ACTIONS(477), + [aux_sym_comparison_operator_token6] = ACTIONS(477), + [aux_sym_comparison_operator_token7] = ACTIONS(477), + [aux_sym_comparison_operator_token8] = ACTIONS(477), + [aux_sym_comparison_operator_token9] = ACTIONS(477), + [aux_sym_comparison_operator_token10] = ACTIONS(477), + [aux_sym_comparison_operator_token11] = ACTIONS(477), + [aux_sym_comparison_operator_token12] = ACTIONS(477), + [aux_sym_comparison_operator_token13] = ACTIONS(477), + [aux_sym_comparison_operator_token14] = ACTIONS(477), + [aux_sym_comparison_operator_token15] = ACTIONS(477), + [aux_sym_comparison_operator_token16] = ACTIONS(477), + [aux_sym_comparison_operator_token17] = ACTIONS(477), + [aux_sym_comparison_operator_token18] = ACTIONS(477), + [aux_sym_comparison_operator_token19] = ACTIONS(477), + [aux_sym_comparison_operator_token20] = ACTIONS(477), + [aux_sym_comparison_operator_token21] = ACTIONS(477), + [aux_sym_comparison_operator_token22] = ACTIONS(477), + [aux_sym_comparison_operator_token23] = ACTIONS(477), + [aux_sym_comparison_operator_token24] = ACTIONS(477), + [aux_sym_comparison_operator_token25] = ACTIONS(477), + [aux_sym_comparison_operator_token26] = ACTIONS(477), + [aux_sym_comparison_operator_token27] = ACTIONS(477), + [aux_sym_comparison_operator_token28] = ACTIONS(475), + [aux_sym_comparison_operator_token29] = ACTIONS(477), + [aux_sym_comparison_operator_token30] = ACTIONS(477), + [aux_sym_comparison_operator_token31] = ACTIONS(477), + [aux_sym_comparison_operator_token32] = ACTIONS(477), + [aux_sym_comparison_operator_token33] = ACTIONS(477), + [aux_sym_comparison_operator_token34] = ACTIONS(475), + [aux_sym_comparison_operator_token35] = ACTIONS(477), + [aux_sym_comparison_operator_token36] = ACTIONS(477), + [aux_sym_comparison_operator_token37] = ACTIONS(477), + [aux_sym_comparison_operator_token38] = ACTIONS(477), + [aux_sym_comparison_operator_token39] = ACTIONS(477), + [aux_sym_comparison_operator_token40] = ACTIONS(477), + [aux_sym_comparison_operator_token41] = ACTIONS(477), + [aux_sym_comparison_operator_token42] = ACTIONS(477), + [aux_sym_comparison_operator_token43] = ACTIONS(477), + [aux_sym_comparison_operator_token44] = ACTIONS(477), + [aux_sym_comparison_operator_token45] = ACTIONS(477), + [aux_sym_comparison_operator_token46] = ACTIONS(477), + [aux_sym_comparison_operator_token47] = ACTIONS(477), + [aux_sym_comparison_operator_token48] = ACTIONS(477), + [aux_sym_comparison_operator_token49] = ACTIONS(477), + [aux_sym_comparison_operator_token50] = ACTIONS(477), + [aux_sym_format_operator_token1] = ACTIONS(477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(477), + [anon_sym_DOLLAR_CARET] = ACTIONS(477), + [anon_sym_DOLLAR_QMARK] = ACTIONS(477), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(477), + [sym_braced_variable] = ACTIONS(477), + [aux_sym_param_block_token1] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(475), + [aux_sym_logical_expression_token1] = ACTIONS(477), + [aux_sym_logical_expression_token2] = ACTIONS(477), + [aux_sym_logical_expression_token3] = ACTIONS(477), + [aux_sym_bitwise_expression_token1] = ACTIONS(477), + [aux_sym_bitwise_expression_token2] = ACTIONS(477), + [aux_sym_bitwise_expression_token3] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_BSLASH] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_DOT_DOT] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(477), + [anon_sym_AT_LPAREN] = ACTIONS(477), + [anon_sym_AT_LBRACE] = ACTIONS(477), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(477), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + [sym__statement_terminator] = ACTIONS(477), + }, [76] = { - [sym__literal] = STATE(291), - [sym_integer_literal] = STATE(291), - [sym_string_literal] = STATE(291), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(291), - [sym_unary_expression] = STATE(105), - [sym_expression_with_unary_operator] = STATE(99), - [sym_pre_increment_expression] = STATE(100), - [sym_pre_decrement_expression] = STATE(100), - [sym_cast_expression] = STATE(100), - [sym__primary_expression] = STATE(291), - [sym__value] = STATE(291), - [sym_parenthesized_expression] = STATE(291), - [sym_sub_expression] = STATE(291), - [sym_array_expression] = STATE(291), - [sym_script_block_expression] = STATE(291), - [sym_hash_literal_expression] = STATE(291), - [sym_post_increment_expression] = STATE(291), - [sym_post_decrement_expression] = STATE(291), - [sym_member_access] = STATE(291), - [sym_element_access] = STATE(291), - [sym_invokation_expression] = STATE(291), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(76), + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(1696), + [sym_empty_statement] = STATE(1696), + [sym_if_statement] = STATE(1696), + [sym__labeled_statement] = STATE(1696), + [sym_switch_statement] = STATE(1696), + [sym_foreach_statement] = STATE(1696), + [sym_for_statement] = STATE(1696), + [sym_while_statement] = STATE(1696), + [sym_do_statement] = STATE(1696), + [sym_function_statement] = STATE(1696), + [sym_flow_control_statement] = STATE(1709), + [sym_trap_statement] = STATE(1696), + [sym_try_statement] = STATE(1696), + [sym_data_statement] = STATE(1696), + [sym_inlinescript_statement] = STATE(1696), + [sym_parallel_statement] = STATE(1696), + [sym_sequence_statement] = STATE(1696), + [sym_pipeline] = STATE(1709), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), + [sym_foreach_command] = STATE(1458), + [sym_class_statement] = STATE(1696), + [sym_enum_statement] = STATE(1696), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), + [sym_additive_expression] = STATE(197), + [sym_multiplicative_expression] = STATE(189), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(5), + [sym_real_literal] = ACTIONS(7), + [aux_sym_expandable_string_literal_token1] = ACTIONS(9), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), + [sym_verbatim_string_characters] = ACTIONS(13), + [sym_verbatim_here_string_characters] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(243), + [aux_sym_comparison_operator_token37] = ACTIONS(19), + [aux_sym_comparison_operator_token50] = ACTIONS(19), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), + [anon_sym_DOLLAR_CARET] = ACTIONS(21), + [anon_sym_DOLLAR_QMARK] = ACTIONS(21), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(21), + [sym_braced_variable] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_if_statement_token1] = ACTIONS(481), + [aux_sym_switch_statement_token1] = ACTIONS(483), + [aux_sym_foreach_statement_token1] = ACTIONS(485), + [aux_sym_for_statement_token1] = ACTIONS(487), + [aux_sym_while_statement_token1] = ACTIONS(489), + [aux_sym_do_statement_token1] = ACTIONS(491), + [aux_sym_function_statement_token1] = ACTIONS(493), + [aux_sym_function_statement_token2] = ACTIONS(493), + [aux_sym_function_statement_token3] = ACTIONS(493), + [aux_sym_flow_control_statement_token1] = ACTIONS(45), + [aux_sym_flow_control_statement_token2] = ACTIONS(45), + [aux_sym_flow_control_statement_token3] = ACTIONS(47), + [aux_sym_flow_control_statement_token4] = ACTIONS(47), + [aux_sym_flow_control_statement_token5] = ACTIONS(47), + [sym_label] = ACTIONS(495), + [aux_sym_trap_statement_token1] = ACTIONS(497), + [aux_sym_try_statement_token1] = ACTIONS(499), + [aux_sym_data_statement_token1] = ACTIONS(501), + [aux_sym_inlinescript_statement_token1] = ACTIONS(503), + [aux_sym_parallel_statement_token1] = ACTIONS(505), + [aux_sym_sequence_statement_token1] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(65), + [aux_sym_foreach_command_token1] = ACTIONS(65), + [aux_sym_class_statement_token1] = ACTIONS(509), + [aux_sym_enum_statement_token1] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_AT_LPAREN] = ACTIONS(77), + [anon_sym_AT_LBRACE] = ACTIONS(79), + }, + [77] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(1849), + [sym_empty_statement] = STATE(1849), + [sym_if_statement] = STATE(1849), + [sym__labeled_statement] = STATE(1849), + [sym_switch_statement] = STATE(1849), + [sym_foreach_statement] = STATE(1849), + [sym_for_statement] = STATE(1849), + [sym_while_statement] = STATE(1849), + [sym_do_statement] = STATE(1849), + [sym_function_statement] = STATE(1849), + [sym_flow_control_statement] = STATE(1709), + [sym_trap_statement] = STATE(1849), + [sym_try_statement] = STATE(1849), + [sym_data_statement] = STATE(1849), + [sym_inlinescript_statement] = STATE(1849), + [sym_parallel_statement] = STATE(1849), + [sym_sequence_statement] = STATE(1849), + [sym_pipeline] = STATE(1709), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), + [sym_foreach_command] = STATE(1458), + [sym_class_statement] = STATE(1849), + [sym_enum_statement] = STATE(1849), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), + [sym_additive_expression] = STATE(197), + [sym_multiplicative_expression] = STATE(189), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(5), + [sym_real_literal] = ACTIONS(7), + [aux_sym_expandable_string_literal_token1] = ACTIONS(9), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), + [sym_verbatim_string_characters] = ACTIONS(13), + [sym_verbatim_here_string_characters] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(243), + [aux_sym_comparison_operator_token37] = ACTIONS(19), + [aux_sym_comparison_operator_token50] = ACTIONS(19), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), + [anon_sym_DOLLAR_CARET] = ACTIONS(21), + [anon_sym_DOLLAR_QMARK] = ACTIONS(21), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(21), + [sym_braced_variable] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_if_statement_token1] = ACTIONS(481), + [aux_sym_switch_statement_token1] = ACTIONS(483), + [aux_sym_foreach_statement_token1] = ACTIONS(485), + [aux_sym_for_statement_token1] = ACTIONS(487), + [aux_sym_while_statement_token1] = ACTIONS(489), + [aux_sym_do_statement_token1] = ACTIONS(491), + [aux_sym_function_statement_token1] = ACTIONS(493), + [aux_sym_function_statement_token2] = ACTIONS(493), + [aux_sym_function_statement_token3] = ACTIONS(493), + [aux_sym_flow_control_statement_token1] = ACTIONS(45), + [aux_sym_flow_control_statement_token2] = ACTIONS(45), + [aux_sym_flow_control_statement_token3] = ACTIONS(47), + [aux_sym_flow_control_statement_token4] = ACTIONS(47), + [aux_sym_flow_control_statement_token5] = ACTIONS(47), + [sym_label] = ACTIONS(495), + [aux_sym_trap_statement_token1] = ACTIONS(497), + [aux_sym_try_statement_token1] = ACTIONS(499), + [aux_sym_data_statement_token1] = ACTIONS(501), + [aux_sym_inlinescript_statement_token1] = ACTIONS(503), + [aux_sym_parallel_statement_token1] = ACTIONS(505), + [aux_sym_sequence_statement_token1] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(65), + [aux_sym_foreach_command_token1] = ACTIONS(65), + [aux_sym_class_statement_token1] = ACTIONS(509), + [aux_sym_enum_statement_token1] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_AT_LPAREN] = ACTIONS(77), + [anon_sym_AT_LBRACE] = ACTIONS(79), + }, + [78] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym__statement] = STATE(2075), + [sym_empty_statement] = STATE(2075), + [sym_if_statement] = STATE(2075), + [sym__labeled_statement] = STATE(2075), + [sym_switch_statement] = STATE(2075), + [sym_foreach_statement] = STATE(2075), + [sym_for_statement] = STATE(2075), + [sym_while_statement] = STATE(2075), + [sym_do_statement] = STATE(2075), + [sym_function_statement] = STATE(2075), + [sym_flow_control_statement] = STATE(1968), + [sym_trap_statement] = STATE(2075), + [sym_try_statement] = STATE(2075), + [sym_data_statement] = STATE(2075), + [sym_inlinescript_statement] = STATE(2075), + [sym_parallel_statement] = STATE(2075), + [sym_sequence_statement] = STATE(2075), + [sym_pipeline] = STATE(1968), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), + [sym_foreach_command] = STATE(1458), + [sym_class_statement] = STATE(2075), + [sym_enum_statement] = STATE(2075), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), + [sym_additive_expression] = STATE(197), + [sym_multiplicative_expression] = STATE(189), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(5), + [sym_real_literal] = ACTIONS(7), + [aux_sym_expandable_string_literal_token1] = ACTIONS(9), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), + [sym_verbatim_string_characters] = ACTIONS(13), + [sym_verbatim_here_string_characters] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(243), + [aux_sym_comparison_operator_token37] = ACTIONS(19), + [aux_sym_comparison_operator_token50] = ACTIONS(19), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), + [anon_sym_DOLLAR_CARET] = ACTIONS(21), + [anon_sym_DOLLAR_QMARK] = ACTIONS(21), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(21), + [sym_braced_variable] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(29), + [aux_sym_if_statement_token1] = ACTIONS(515), + [aux_sym_switch_statement_token1] = ACTIONS(517), + [aux_sym_foreach_statement_token1] = ACTIONS(519), + [aux_sym_for_statement_token1] = ACTIONS(521), + [aux_sym_while_statement_token1] = ACTIONS(523), + [aux_sym_do_statement_token1] = ACTIONS(525), + [aux_sym_function_statement_token1] = ACTIONS(527), + [aux_sym_function_statement_token2] = ACTIONS(527), + [aux_sym_function_statement_token3] = ACTIONS(527), + [aux_sym_flow_control_statement_token1] = ACTIONS(45), + [aux_sym_flow_control_statement_token2] = ACTIONS(45), + [aux_sym_flow_control_statement_token3] = ACTIONS(47), + [aux_sym_flow_control_statement_token4] = ACTIONS(47), + [aux_sym_flow_control_statement_token5] = ACTIONS(47), + [sym_label] = ACTIONS(529), + [aux_sym_trap_statement_token1] = ACTIONS(531), + [aux_sym_try_statement_token1] = ACTIONS(533), + [aux_sym_data_statement_token1] = ACTIONS(535), + [aux_sym_inlinescript_statement_token1] = ACTIONS(537), + [aux_sym_parallel_statement_token1] = ACTIONS(539), + [aux_sym_sequence_statement_token1] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(65), + [aux_sym_foreach_command_token1] = ACTIONS(65), + [aux_sym_class_statement_token1] = ACTIONS(543), + [aux_sym_enum_statement_token1] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_AT_LPAREN] = ACTIONS(77), + [anon_sym_AT_LBRACE] = ACTIONS(79), + }, + [79] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(167), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(479), + [sym_real_literal] = ACTIONS(547), [aux_sym_expandable_string_literal_token1] = ACTIONS(125), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), [sym_verbatim_string_characters] = ACTIONS(129), [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(549), [aux_sym_comparison_operator_token1] = ACTIONS(95), [aux_sym_comparison_operator_token2] = ACTIONS(95), [aux_sym_comparison_operator_token3] = ACTIONS(95), @@ -36637,7 +37914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token34] = ACTIONS(97), [aux_sym_comparison_operator_token35] = ACTIONS(95), [aux_sym_comparison_operator_token36] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(483), + [aux_sym_comparison_operator_token37] = ACTIONS(551), [aux_sym_comparison_operator_token38] = ACTIONS(95), [aux_sym_comparison_operator_token39] = ACTIONS(95), [aux_sym_comparison_operator_token40] = ACTIONS(95), @@ -36650,7 +37927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token47] = ACTIONS(95), [aux_sym_comparison_operator_token48] = ACTIONS(95), [aux_sym_comparison_operator_token49] = ACTIONS(95), - [aux_sym_comparison_operator_token50] = ACTIONS(483), + [aux_sym_comparison_operator_token50] = ACTIONS(551), [aux_sym_format_operator_token1] = ACTIONS(95), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), [anon_sym_DOLLAR_CARET] = ACTIONS(135), @@ -36661,7 +37938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(135), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_COMMA] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(551), [anon_sym_LBRACE] = ACTIONS(141), [anon_sym_PERCENT] = ACTIONS(95), [aux_sym_logical_expression_token1] = ACTIONS(95), @@ -36670,17 +37947,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(95), [aux_sym_bitwise_expression_token2] = ACTIONS(95), [aux_sym_bitwise_expression_token3] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), [anon_sym_SLASH] = ACTIONS(95), [anon_sym_BSLASH] = ACTIONS(95), [anon_sym_STAR] = ACTIONS(95), [anon_sym_DOT_DOT] = ACTIONS(95), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(485), - [anon_sym_BANG] = ACTIONS(483), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(489), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_AT_LPAREN] = ACTIONS(151), [anon_sym_AT_LBRACE] = ACTIONS(153), @@ -36689,41 +37966,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(95), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), }, - [77] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(168), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [80] = { + [sym__literal] = STATE(303), + [sym_integer_literal] = STATE(303), + [sym_string_literal] = STATE(303), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(303), + [sym_unary_expression] = STATE(114), + [sym_expression_with_unary_operator] = STATE(109), + [sym_pre_increment_expression] = STATE(110), + [sym_pre_decrement_expression] = STATE(110), + [sym_cast_expression] = STATE(110), + [sym__primary_expression] = STATE(303), + [sym__value] = STATE(303), + [sym_parenthesized_expression] = STATE(303), + [sym_sub_expression] = STATE(303), + [sym_array_expression] = STATE(303), + [sym_script_block_expression] = STATE(303), + [sym_hash_literal_expression] = STATE(303), + [sym_post_increment_expression] = STATE(303), + [sym_post_decrement_expression] = STATE(303), + [sym_member_access] = STATE(303), + [sym_element_access] = STATE(303), + [sym_invokation_expression] = STATE(303), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(80), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), + [sym_real_literal] = ACTIONS(559), [aux_sym_expandable_string_literal_token1] = ACTIONS(125), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), [sym_verbatim_string_characters] = ACTIONS(129), [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(549), [aux_sym_comparison_operator_token1] = ACTIONS(95), [aux_sym_comparison_operator_token2] = ACTIONS(95), [aux_sym_comparison_operator_token3] = ACTIONS(95), @@ -36760,7 +38037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token34] = ACTIONS(97), [aux_sym_comparison_operator_token35] = ACTIONS(95), [aux_sym_comparison_operator_token36] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(493), + [aux_sym_comparison_operator_token37] = ACTIONS(561), [aux_sym_comparison_operator_token38] = ACTIONS(95), [aux_sym_comparison_operator_token39] = ACTIONS(95), [aux_sym_comparison_operator_token40] = ACTIONS(95), @@ -36773,7 +38050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token47] = ACTIONS(95), [aux_sym_comparison_operator_token48] = ACTIONS(95), [aux_sym_comparison_operator_token49] = ACTIONS(95), - [aux_sym_comparison_operator_token50] = ACTIONS(493), + [aux_sym_comparison_operator_token50] = ACTIONS(561), [aux_sym_format_operator_token1] = ACTIONS(95), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), [anon_sym_DOLLAR_CARET] = ACTIONS(135), @@ -36784,7 +38061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_braced_variable] = ACTIONS(135), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(141), [anon_sym_PERCENT] = ACTIONS(95), [aux_sym_logical_expression_token1] = ACTIONS(95), @@ -36793,17 +38070,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(95), [aux_sym_bitwise_expression_token2] = ACTIONS(95), [aux_sym_bitwise_expression_token3] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), [anon_sym_SLASH] = ACTIONS(95), [anon_sym_BSLASH] = ACTIONS(95), [anon_sym_STAR] = ACTIONS(95), [anon_sym_DOT_DOT] = ACTIONS(95), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(561), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(565), + [anon_sym_DASH_DASH] = ACTIONS(567), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_AT_LPAREN] = ACTIONS(151), [anon_sym_AT_LBRACE] = ACTIONS(153), @@ -36812,41 +38089,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(95), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), }, - [78] = { - [sym__literal] = STATE(292), - [sym_integer_literal] = STATE(292), - [sym_string_literal] = STATE(292), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(292), - [sym_unary_expression] = STATE(128), + [81] = { + [sym__literal] = STATE(308), + [sym_integer_literal] = STATE(308), + [sym_string_literal] = STATE(308), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(308), + [sym_unary_expression] = STATE(129), [sym_expression_with_unary_operator] = STATE(132), - [sym_pre_increment_expression] = STATE(123), - [sym_pre_decrement_expression] = STATE(123), - [sym_cast_expression] = STATE(123), - [sym__primary_expression] = STATE(292), - [sym__value] = STATE(292), - [sym_parenthesized_expression] = STATE(292), - [sym_sub_expression] = STATE(292), - [sym_array_expression] = STATE(292), - [sym_script_block_expression] = STATE(292), - [sym_hash_literal_expression] = STATE(292), - [sym_post_increment_expression] = STATE(292), - [sym_post_decrement_expression] = STATE(292), - [sym_member_access] = STATE(292), - [sym_element_access] = STATE(292), - [sym_invokation_expression] = STATE(292), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(78), + [sym_pre_increment_expression] = STATE(125), + [sym_pre_decrement_expression] = STATE(125), + [sym_cast_expression] = STATE(125), + [sym__primary_expression] = STATE(308), + [sym__value] = STATE(308), + [sym_parenthesized_expression] = STATE(308), + [sym_sub_expression] = STATE(308), + [sym_array_expression] = STATE(308), + [sym_script_block_expression] = STATE(308), + [sym_hash_literal_expression] = STATE(308), + [sym_post_increment_expression] = STATE(308), + [sym_post_decrement_expression] = STATE(308), + [sym_member_access] = STATE(308), + [sym_element_access] = STATE(308), + [sym_invokation_expression] = STATE(308), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(81), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(501), + [sym_real_literal] = ACTIONS(569), [aux_sym_expandable_string_literal_token1] = ACTIONS(87), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), [sym_verbatim_string_characters] = ACTIONS(91), [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_LBRACK] = ACTIONS(571), [aux_sym_comparison_operator_token1] = ACTIONS(95), [aux_sym_comparison_operator_token2] = ACTIONS(95), [aux_sym_comparison_operator_token3] = ACTIONS(95), @@ -36883,7 +38160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token34] = ACTIONS(97), [aux_sym_comparison_operator_token35] = ACTIONS(95), [aux_sym_comparison_operator_token36] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(505), + [aux_sym_comparison_operator_token37] = ACTIONS(573), [aux_sym_comparison_operator_token38] = ACTIONS(95), [aux_sym_comparison_operator_token39] = ACTIONS(95), [aux_sym_comparison_operator_token40] = ACTIONS(95), @@ -36896,7 +38173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token47] = ACTIONS(95), [aux_sym_comparison_operator_token48] = ACTIONS(95), [aux_sym_comparison_operator_token49] = ACTIONS(95), - [aux_sym_comparison_operator_token50] = ACTIONS(505), + [aux_sym_comparison_operator_token50] = ACTIONS(573), [aux_sym_format_operator_token1] = ACTIONS(95), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), [anon_sym_DOLLAR_CARET] = ACTIONS(101), @@ -36906,7 +38183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(101), [sym_braced_variable] = ACTIONS(101), [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_PERCENT] = ACTIONS(95), [aux_sym_logical_expression_token1] = ACTIONS(95), @@ -36915,17 +38192,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(95), [aux_sym_bitwise_expression_token2] = ACTIONS(95), [aux_sym_bitwise_expression_token3] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), [anon_sym_SLASH] = ACTIONS(95), [anon_sym_BSLASH] = ACTIONS(95), [anon_sym_STAR] = ACTIONS(95), [anon_sym_DOT_DOT] = ACTIONS(95), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(509), - [anon_sym_DASH_DASH] = ACTIONS(511), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(573), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(577), + [anon_sym_DASH_DASH] = ACTIONS(579), [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), [anon_sym_AT_LPAREN] = ACTIONS(115), [anon_sym_AT_LBRACE] = ACTIONS(117), @@ -36934,163 +38211,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), [sym__statement_terminator] = ACTIONS(95), }, - [79] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(1855), - [sym_empty_statement] = STATE(1855), - [sym_if_statement] = STATE(1855), - [sym__labeled_statement] = STATE(1855), - [sym_switch_statement] = STATE(1855), - [sym_foreach_statement] = STATE(1855), - [sym_for_statement] = STATE(1855), - [sym_while_statement] = STATE(1855), - [sym_do_statement] = STATE(1855), - [sym_function_statement] = STATE(1855), - [sym_flow_control_statement] = STATE(1901), - [sym_trap_statement] = STATE(1855), - [sym_try_statement] = STATE(1855), - [sym_data_statement] = STATE(1855), - [sym_inlinescript_statement] = STATE(1855), - [sym_parallel_statement] = STATE(1855), - [sym_sequence_statement] = STATE(1855), - [sym_pipeline] = STATE(1901), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), - [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(1855), - [sym_enum_statement] = STATE(1855), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), - [sym_additive_expression] = STATE(197), - [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(5), - [sym_real_literal] = ACTIONS(7), - [aux_sym_expandable_string_literal_token1] = ACTIONS(9), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), - [sym_verbatim_string_characters] = ACTIONS(13), - [sym_verbatim_here_string_characters] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(243), - [aux_sym_comparison_operator_token37] = ACTIONS(19), - [aux_sym_comparison_operator_token50] = ACTIONS(19), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), - [anon_sym_DOLLAR_CARET] = ACTIONS(21), - [anon_sym_DOLLAR_QMARK] = ACTIONS(21), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(21), - [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(29), - [aux_sym_if_statement_token1] = ACTIONS(515), - [aux_sym_switch_statement_token1] = ACTIONS(517), - [aux_sym_foreach_statement_token1] = ACTIONS(519), - [aux_sym_for_statement_token1] = ACTIONS(521), - [aux_sym_while_statement_token1] = ACTIONS(523), - [aux_sym_do_statement_token1] = ACTIONS(525), - [aux_sym_function_statement_token1] = ACTIONS(527), - [aux_sym_function_statement_token2] = ACTIONS(527), - [aux_sym_function_statement_token3] = ACTIONS(527), - [aux_sym_flow_control_statement_token1] = ACTIONS(45), - [aux_sym_flow_control_statement_token2] = ACTIONS(45), - [aux_sym_flow_control_statement_token3] = ACTIONS(47), - [aux_sym_flow_control_statement_token4] = ACTIONS(47), - [aux_sym_flow_control_statement_token5] = ACTIONS(47), - [sym_label] = ACTIONS(529), - [aux_sym_trap_statement_token1] = ACTIONS(531), - [aux_sym_try_statement_token1] = ACTIONS(533), - [aux_sym_data_statement_token1] = ACTIONS(535), - [aux_sym_inlinescript_statement_token1] = ACTIONS(537), - [aux_sym_parallel_statement_token1] = ACTIONS(539), - [aux_sym_sequence_statement_token1] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_foreach_command_token1] = ACTIONS(65), - [aux_sym_class_statement_token1] = ACTIONS(543), - [aux_sym_enum_statement_token1] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_AT_LPAREN] = ACTIONS(77), - [anon_sym_AT_LBRACE] = ACTIONS(79), - }, - [80] = { - [sym__literal] = STATE(294), - [sym_integer_literal] = STATE(294), - [sym_string_literal] = STATE(294), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(294), + [82] = { + [sym__literal] = STATE(317), + [sym_integer_literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(317), [sym_unary_expression] = STATE(175), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(294), - [sym__value] = STATE(294), - [sym_parenthesized_expression] = STATE(294), - [sym_sub_expression] = STATE(294), - [sym_array_expression] = STATE(294), - [sym_script_block_expression] = STATE(294), - [sym_hash_literal_expression] = STATE(294), - [sym_post_increment_expression] = STATE(294), - [sym_post_decrement_expression] = STATE(294), - [sym_member_access] = STATE(294), - [sym_element_access] = STATE(294), - [sym_invokation_expression] = STATE(294), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(80), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(317), + [sym__value] = STATE(317), + [sym_parenthesized_expression] = STATE(317), + [sym_sub_expression] = STATE(317), + [sym_array_expression] = STATE(317), + [sym_script_block_expression] = STATE(317), + [sym_hash_literal_expression] = STATE(317), + [sym_post_increment_expression] = STATE(317), + [sym_post_decrement_expression] = STATE(317), + [sym_member_access] = STATE(317), + [sym_element_access] = STATE(317), + [sym_invokation_expression] = STATE(317), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(82), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(5), [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(547), + [sym_real_literal] = ACTIONS(581), [aux_sym_expandable_string_literal_token1] = ACTIONS(87), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), [sym_verbatim_string_characters] = ACTIONS(91), [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), + [anon_sym_LBRACK] = ACTIONS(571), [aux_sym_comparison_operator_token1] = ACTIONS(95), [aux_sym_comparison_operator_token2] = ACTIONS(95), [aux_sym_comparison_operator_token3] = ACTIONS(95), @@ -37127,7 +38282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token34] = ACTIONS(97), [aux_sym_comparison_operator_token35] = ACTIONS(95), [aux_sym_comparison_operator_token36] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(583), [aux_sym_comparison_operator_token38] = ACTIONS(95), [aux_sym_comparison_operator_token39] = ACTIONS(95), [aux_sym_comparison_operator_token40] = ACTIONS(95), @@ -37140,7 +38295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token47] = ACTIONS(95), [aux_sym_comparison_operator_token48] = ACTIONS(95), [aux_sym_comparison_operator_token49] = ACTIONS(95), - [aux_sym_comparison_operator_token50] = ACTIONS(549), + [aux_sym_comparison_operator_token50] = ACTIONS(583), [aux_sym_format_operator_token1] = ACTIONS(95), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), [anon_sym_DOLLAR_CARET] = ACTIONS(101), @@ -37150,7 +38305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(101), [sym_braced_variable] = ACTIONS(101), [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(583), [anon_sym_LBRACE] = ACTIONS(107), [anon_sym_PERCENT] = ACTIONS(95), [aux_sym_logical_expression_token1] = ACTIONS(95), @@ -37159,17 +38314,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(95), [aux_sym_bitwise_expression_token2] = ACTIONS(95), [aux_sym_bitwise_expression_token3] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), [anon_sym_SLASH] = ACTIONS(95), [anon_sym_BSLASH] = ACTIONS(95), [anon_sym_STAR] = ACTIONS(95), [anon_sym_DOT_DOT] = ACTIONS(95), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(555), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(585), + [anon_sym_BANG] = ACTIONS(583), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(589), [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), [anon_sym_AT_LPAREN] = ACTIONS(115), [anon_sym_AT_LBRACE] = ACTIONS(117), @@ -37178,251 +38333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), [sym__statement_terminator] = ACTIONS(95), }, - [81] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(1922), - [sym_empty_statement] = STATE(1922), - [sym_if_statement] = STATE(1922), - [sym__labeled_statement] = STATE(1922), - [sym_switch_statement] = STATE(1922), - [sym_foreach_statement] = STATE(1922), - [sym_for_statement] = STATE(1922), - [sym_while_statement] = STATE(1922), - [sym_do_statement] = STATE(1922), - [sym_function_statement] = STATE(1922), - [sym_flow_control_statement] = STATE(1854), - [sym_trap_statement] = STATE(1922), - [sym_try_statement] = STATE(1922), - [sym_data_statement] = STATE(1922), - [sym_inlinescript_statement] = STATE(1922), - [sym_parallel_statement] = STATE(1922), - [sym_sequence_statement] = STATE(1922), - [sym_pipeline] = STATE(1854), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), - [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(1922), - [sym_enum_statement] = STATE(1922), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), - [sym_additive_expression] = STATE(197), - [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(5), - [sym_real_literal] = ACTIONS(7), - [aux_sym_expandable_string_literal_token1] = ACTIONS(9), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), - [sym_verbatim_string_characters] = ACTIONS(13), - [sym_verbatim_here_string_characters] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(243), - [aux_sym_comparison_operator_token37] = ACTIONS(19), - [aux_sym_comparison_operator_token50] = ACTIONS(19), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), - [anon_sym_DOLLAR_CARET] = ACTIONS(21), - [anon_sym_DOLLAR_QMARK] = ACTIONS(21), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(21), - [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(29), - [aux_sym_if_statement_token1] = ACTIONS(559), - [aux_sym_switch_statement_token1] = ACTIONS(561), - [aux_sym_foreach_statement_token1] = ACTIONS(563), - [aux_sym_for_statement_token1] = ACTIONS(565), - [aux_sym_while_statement_token1] = ACTIONS(567), - [aux_sym_do_statement_token1] = ACTIONS(569), - [aux_sym_function_statement_token1] = ACTIONS(571), - [aux_sym_function_statement_token2] = ACTIONS(571), - [aux_sym_function_statement_token3] = ACTIONS(571), - [aux_sym_flow_control_statement_token1] = ACTIONS(45), - [aux_sym_flow_control_statement_token2] = ACTIONS(45), - [aux_sym_flow_control_statement_token3] = ACTIONS(47), - [aux_sym_flow_control_statement_token4] = ACTIONS(47), - [aux_sym_flow_control_statement_token5] = ACTIONS(47), - [sym_label] = ACTIONS(573), - [aux_sym_trap_statement_token1] = ACTIONS(575), - [aux_sym_try_statement_token1] = ACTIONS(577), - [aux_sym_data_statement_token1] = ACTIONS(579), - [aux_sym_inlinescript_statement_token1] = ACTIONS(581), - [aux_sym_parallel_statement_token1] = ACTIONS(583), - [aux_sym_sequence_statement_token1] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_foreach_command_token1] = ACTIONS(65), - [aux_sym_class_statement_token1] = ACTIONS(587), - [aux_sym_enum_statement_token1] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_AT_LPAREN] = ACTIONS(77), - [anon_sym_AT_LBRACE] = ACTIONS(79), - }, - [82] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym__statement] = STATE(2067), - [sym_empty_statement] = STATE(2067), - [sym_if_statement] = STATE(2067), - [sym__labeled_statement] = STATE(2067), - [sym_switch_statement] = STATE(2067), - [sym_foreach_statement] = STATE(2067), - [sym_for_statement] = STATE(2067), - [sym_while_statement] = STATE(2067), - [sym_do_statement] = STATE(2067), - [sym_function_statement] = STATE(2067), - [sym_flow_control_statement] = STATE(1854), - [sym_trap_statement] = STATE(2067), - [sym_try_statement] = STATE(2067), - [sym_data_statement] = STATE(2067), - [sym_inlinescript_statement] = STATE(2067), - [sym_parallel_statement] = STATE(2067), - [sym_sequence_statement] = STATE(2067), - [sym_pipeline] = STATE(1854), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), - [sym_foreach_command] = STATE(1458), - [sym_class_statement] = STATE(2067), - [sym_enum_statement] = STATE(2067), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), - [sym_additive_expression] = STATE(197), - [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(5), - [sym_real_literal] = ACTIONS(7), - [aux_sym_expandable_string_literal_token1] = ACTIONS(9), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), - [sym_verbatim_string_characters] = ACTIONS(13), - [sym_verbatim_here_string_characters] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(243), - [aux_sym_comparison_operator_token37] = ACTIONS(19), - [aux_sym_comparison_operator_token50] = ACTIONS(19), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), - [anon_sym_DOLLAR_CARET] = ACTIONS(21), - [anon_sym_DOLLAR_QMARK] = ACTIONS(21), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(21), - [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(29), - [aux_sym_if_statement_token1] = ACTIONS(559), - [aux_sym_switch_statement_token1] = ACTIONS(561), - [aux_sym_foreach_statement_token1] = ACTIONS(563), - [aux_sym_for_statement_token1] = ACTIONS(565), - [aux_sym_while_statement_token1] = ACTIONS(567), - [aux_sym_do_statement_token1] = ACTIONS(569), - [aux_sym_function_statement_token1] = ACTIONS(571), - [aux_sym_function_statement_token2] = ACTIONS(571), - [aux_sym_function_statement_token3] = ACTIONS(571), - [aux_sym_flow_control_statement_token1] = ACTIONS(45), - [aux_sym_flow_control_statement_token2] = ACTIONS(45), - [aux_sym_flow_control_statement_token3] = ACTIONS(47), - [aux_sym_flow_control_statement_token4] = ACTIONS(47), - [aux_sym_flow_control_statement_token5] = ACTIONS(47), - [sym_label] = ACTIONS(573), - [aux_sym_trap_statement_token1] = ACTIONS(575), - [aux_sym_try_statement_token1] = ACTIONS(577), - [aux_sym_data_statement_token1] = ACTIONS(579), - [aux_sym_inlinescript_statement_token1] = ACTIONS(581), - [aux_sym_parallel_statement_token1] = ACTIONS(583), - [aux_sym_sequence_statement_token1] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_foreach_command_token1] = ACTIONS(65), - [aux_sym_class_statement_token1] = ACTIONS(587), - [aux_sym_enum_statement_token1] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_AT_LPAREN] = ACTIONS(77), - [anon_sym_AT_LBRACE] = ACTIONS(79), - }, [83] = { + [sym_argument_list] = STATE(105), [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_EQ] = ACTIONS(591), @@ -37431,6 +38343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(591), [anon_sym_SLASH_EQ] = ACTIONS(591), [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), [anon_sym_GT] = ACTIONS(593), [anon_sym_GT_GT] = ACTIONS(591), [anon_sym_2_GT] = ACTIONS(593), @@ -37512,7 +38425,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(591), [anon_sym_RPAREN] = ACTIONS(591), [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(591), [anon_sym_PIPE] = ACTIONS(591), [anon_sym_PERCENT] = ACTIONS(593), [aux_sym_logical_expression_token1] = ACTIONS(591), @@ -37543,6 +38455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(595), [anon_sym_SLASH_EQ] = ACTIONS(595), [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), [anon_sym_GT] = ACTIONS(597), [anon_sym_GT_GT] = ACTIONS(595), [anon_sym_2_GT] = ACTIONS(597), @@ -37624,7 +38537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(595), [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_COMMA] = ACTIONS(595), - [aux_sym_foreach_statement_token2] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(595), [anon_sym_PIPE] = ACTIONS(595), [anon_sym_PERCENT] = ACTIONS(597), [aux_sym_logical_expression_token1] = ACTIONS(595), @@ -37647,340 +38560,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(595), }, [85] = { + [sym_argument_list] = STATE(105), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_2_GT] = ACTIONS(601), - [anon_sym_2_GT_GT] = ACTIONS(599), - [anon_sym_3_GT] = ACTIONS(601), - [anon_sym_3_GT_GT] = ACTIONS(599), - [anon_sym_4_GT] = ACTIONS(601), - [anon_sym_4_GT_GT] = ACTIONS(599), - [anon_sym_5_GT] = ACTIONS(601), - [anon_sym_5_GT_GT] = ACTIONS(599), - [anon_sym_6_GT] = ACTIONS(601), - [anon_sym_6_GT_GT] = ACTIONS(599), - [anon_sym_STAR_GT] = ACTIONS(601), - [anon_sym_STAR_GT_GT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_STAR_GT_AMP1] = ACTIONS(599), - [anon_sym_2_GT_AMP1] = ACTIONS(599), - [anon_sym_3_GT_AMP1] = ACTIONS(599), - [anon_sym_4_GT_AMP1] = ACTIONS(599), - [anon_sym_5_GT_AMP1] = ACTIONS(599), - [anon_sym_6_GT_AMP1] = ACTIONS(599), - [anon_sym_STAR_GT_AMP2] = ACTIONS(599), - [anon_sym_1_GT_AMP2] = ACTIONS(599), - [anon_sym_3_GT_AMP2] = ACTIONS(599), - [anon_sym_4_GT_AMP2] = ACTIONS(599), - [anon_sym_5_GT_AMP2] = ACTIONS(599), - [anon_sym_6_GT_AMP2] = ACTIONS(599), - [aux_sym_comparison_operator_token1] = ACTIONS(599), - [aux_sym_comparison_operator_token2] = ACTIONS(599), - [aux_sym_comparison_operator_token3] = ACTIONS(599), - [aux_sym_comparison_operator_token4] = ACTIONS(599), - [aux_sym_comparison_operator_token5] = ACTIONS(599), - [aux_sym_comparison_operator_token6] = ACTIONS(599), - [aux_sym_comparison_operator_token7] = ACTIONS(599), - [aux_sym_comparison_operator_token8] = ACTIONS(599), - [aux_sym_comparison_operator_token9] = ACTIONS(599), - [aux_sym_comparison_operator_token10] = ACTIONS(599), - [aux_sym_comparison_operator_token11] = ACTIONS(599), - [aux_sym_comparison_operator_token12] = ACTIONS(599), - [aux_sym_comparison_operator_token13] = ACTIONS(599), - [aux_sym_comparison_operator_token14] = ACTIONS(599), - [aux_sym_comparison_operator_token15] = ACTIONS(599), - [aux_sym_comparison_operator_token16] = ACTIONS(599), - [aux_sym_comparison_operator_token17] = ACTIONS(599), - [aux_sym_comparison_operator_token18] = ACTIONS(599), - [aux_sym_comparison_operator_token19] = ACTIONS(599), - [aux_sym_comparison_operator_token20] = ACTIONS(599), - [aux_sym_comparison_operator_token21] = ACTIONS(599), - [aux_sym_comparison_operator_token22] = ACTIONS(599), - [aux_sym_comparison_operator_token23] = ACTIONS(599), - [aux_sym_comparison_operator_token24] = ACTIONS(599), - [aux_sym_comparison_operator_token25] = ACTIONS(599), - [aux_sym_comparison_operator_token26] = ACTIONS(599), - [aux_sym_comparison_operator_token27] = ACTIONS(599), - [aux_sym_comparison_operator_token28] = ACTIONS(601), - [aux_sym_comparison_operator_token29] = ACTIONS(599), - [aux_sym_comparison_operator_token30] = ACTIONS(599), - [aux_sym_comparison_operator_token31] = ACTIONS(599), - [aux_sym_comparison_operator_token32] = ACTIONS(599), - [aux_sym_comparison_operator_token33] = ACTIONS(599), - [aux_sym_comparison_operator_token34] = ACTIONS(601), - [aux_sym_comparison_operator_token35] = ACTIONS(599), - [aux_sym_comparison_operator_token36] = ACTIONS(599), - [aux_sym_comparison_operator_token37] = ACTIONS(599), - [aux_sym_comparison_operator_token38] = ACTIONS(599), - [aux_sym_comparison_operator_token39] = ACTIONS(599), - [aux_sym_comparison_operator_token40] = ACTIONS(599), - [aux_sym_comparison_operator_token41] = ACTIONS(599), - [aux_sym_comparison_operator_token42] = ACTIONS(599), - [aux_sym_comparison_operator_token43] = ACTIONS(599), - [aux_sym_comparison_operator_token44] = ACTIONS(599), - [aux_sym_comparison_operator_token45] = ACTIONS(599), - [aux_sym_comparison_operator_token46] = ACTIONS(599), - [aux_sym_comparison_operator_token47] = ACTIONS(599), - [aux_sym_comparison_operator_token48] = ACTIONS(599), - [aux_sym_comparison_operator_token49] = ACTIONS(599), - [aux_sym_comparison_operator_token50] = ACTIONS(599), - [aux_sym_format_operator_token1] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_2_GT] = ACTIONS(593), + [anon_sym_2_GT_GT] = ACTIONS(591), + [anon_sym_3_GT] = ACTIONS(593), + [anon_sym_3_GT_GT] = ACTIONS(591), + [anon_sym_4_GT] = ACTIONS(593), + [anon_sym_4_GT_GT] = ACTIONS(591), + [anon_sym_5_GT] = ACTIONS(593), + [anon_sym_5_GT_GT] = ACTIONS(591), + [anon_sym_6_GT] = ACTIONS(593), + [anon_sym_6_GT_GT] = ACTIONS(591), + [anon_sym_STAR_GT] = ACTIONS(593), + [anon_sym_STAR_GT_GT] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_STAR_GT_AMP1] = ACTIONS(591), + [anon_sym_2_GT_AMP1] = ACTIONS(591), + [anon_sym_3_GT_AMP1] = ACTIONS(591), + [anon_sym_4_GT_AMP1] = ACTIONS(591), + [anon_sym_5_GT_AMP1] = ACTIONS(591), + [anon_sym_6_GT_AMP1] = ACTIONS(591), + [anon_sym_STAR_GT_AMP2] = ACTIONS(591), + [anon_sym_1_GT_AMP2] = ACTIONS(591), + [anon_sym_3_GT_AMP2] = ACTIONS(591), + [anon_sym_4_GT_AMP2] = ACTIONS(591), + [anon_sym_5_GT_AMP2] = ACTIONS(591), + [anon_sym_6_GT_AMP2] = ACTIONS(591), + [aux_sym_comparison_operator_token1] = ACTIONS(591), + [aux_sym_comparison_operator_token2] = ACTIONS(591), + [aux_sym_comparison_operator_token3] = ACTIONS(591), + [aux_sym_comparison_operator_token4] = ACTIONS(591), + [aux_sym_comparison_operator_token5] = ACTIONS(591), + [aux_sym_comparison_operator_token6] = ACTIONS(591), + [aux_sym_comparison_operator_token7] = ACTIONS(591), + [aux_sym_comparison_operator_token8] = ACTIONS(591), + [aux_sym_comparison_operator_token9] = ACTIONS(591), + [aux_sym_comparison_operator_token10] = ACTIONS(591), + [aux_sym_comparison_operator_token11] = ACTIONS(591), + [aux_sym_comparison_operator_token12] = ACTIONS(591), + [aux_sym_comparison_operator_token13] = ACTIONS(591), + [aux_sym_comparison_operator_token14] = ACTIONS(591), + [aux_sym_comparison_operator_token15] = ACTIONS(591), + [aux_sym_comparison_operator_token16] = ACTIONS(591), + [aux_sym_comparison_operator_token17] = ACTIONS(591), + [aux_sym_comparison_operator_token18] = ACTIONS(591), + [aux_sym_comparison_operator_token19] = ACTIONS(591), + [aux_sym_comparison_operator_token20] = ACTIONS(591), + [aux_sym_comparison_operator_token21] = ACTIONS(591), + [aux_sym_comparison_operator_token22] = ACTIONS(591), + [aux_sym_comparison_operator_token23] = ACTIONS(591), + [aux_sym_comparison_operator_token24] = ACTIONS(591), + [aux_sym_comparison_operator_token25] = ACTIONS(591), + [aux_sym_comparison_operator_token26] = ACTIONS(591), + [aux_sym_comparison_operator_token27] = ACTIONS(591), + [aux_sym_comparison_operator_token28] = ACTIONS(593), + [aux_sym_comparison_operator_token29] = ACTIONS(591), + [aux_sym_comparison_operator_token30] = ACTIONS(591), + [aux_sym_comparison_operator_token31] = ACTIONS(591), + [aux_sym_comparison_operator_token32] = ACTIONS(591), + [aux_sym_comparison_operator_token33] = ACTIONS(591), + [aux_sym_comparison_operator_token34] = ACTIONS(593), + [aux_sym_comparison_operator_token35] = ACTIONS(591), + [aux_sym_comparison_operator_token36] = ACTIONS(591), + [aux_sym_comparison_operator_token37] = ACTIONS(591), + [aux_sym_comparison_operator_token38] = ACTIONS(591), + [aux_sym_comparison_operator_token39] = ACTIONS(591), + [aux_sym_comparison_operator_token40] = ACTIONS(591), + [aux_sym_comparison_operator_token41] = ACTIONS(591), + [aux_sym_comparison_operator_token42] = ACTIONS(591), + [aux_sym_comparison_operator_token43] = ACTIONS(591), + [aux_sym_comparison_operator_token44] = ACTIONS(591), + [aux_sym_comparison_operator_token45] = ACTIONS(591), + [aux_sym_comparison_operator_token46] = ACTIONS(591), + [aux_sym_comparison_operator_token47] = ACTIONS(591), + [aux_sym_comparison_operator_token48] = ACTIONS(591), + [aux_sym_comparison_operator_token49] = ACTIONS(591), + [aux_sym_comparison_operator_token50] = ACTIONS(591), + [aux_sym_format_operator_token1] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(601), - [aux_sym_logical_expression_token1] = ACTIONS(599), - [aux_sym_logical_expression_token2] = ACTIONS(599), - [aux_sym_logical_expression_token3] = ACTIONS(599), - [aux_sym_bitwise_expression_token1] = ACTIONS(599), - [aux_sym_bitwise_expression_token2] = ACTIONS(599), - [aux_sym_bitwise_expression_token3] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DOT2] = ACTIONS(601), - [anon_sym_COLON_COLON] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_PERCENT] = ACTIONS(593), + [aux_sym_logical_expression_token1] = ACTIONS(591), + [aux_sym_logical_expression_token2] = ACTIONS(591), + [aux_sym_logical_expression_token3] = ACTIONS(591), + [aux_sym_bitwise_expression_token1] = ACTIONS(591), + [aux_sym_bitwise_expression_token2] = ACTIONS(591), + [aux_sym_bitwise_expression_token3] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_BSLASH] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_DOT2] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(591), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(591), }, [86] = { - [sym_argument_list] = STATE(93), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_2_GT] = ACTIONS(605), - [anon_sym_2_GT_GT] = ACTIONS(603), - [anon_sym_3_GT] = ACTIONS(605), - [anon_sym_3_GT_GT] = ACTIONS(603), - [anon_sym_4_GT] = ACTIONS(605), - [anon_sym_4_GT_GT] = ACTIONS(603), - [anon_sym_5_GT] = ACTIONS(605), - [anon_sym_5_GT_GT] = ACTIONS(603), - [anon_sym_6_GT] = ACTIONS(605), - [anon_sym_6_GT_GT] = ACTIONS(603), - [anon_sym_STAR_GT] = ACTIONS(605), - [anon_sym_STAR_GT_GT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_STAR_GT_AMP1] = ACTIONS(603), - [anon_sym_2_GT_AMP1] = ACTIONS(603), - [anon_sym_3_GT_AMP1] = ACTIONS(603), - [anon_sym_4_GT_AMP1] = ACTIONS(603), - [anon_sym_5_GT_AMP1] = ACTIONS(603), - [anon_sym_6_GT_AMP1] = ACTIONS(603), - [anon_sym_STAR_GT_AMP2] = ACTIONS(603), - [anon_sym_1_GT_AMP2] = ACTIONS(603), - [anon_sym_3_GT_AMP2] = ACTIONS(603), - [anon_sym_4_GT_AMP2] = ACTIONS(603), - [anon_sym_5_GT_AMP2] = ACTIONS(603), - [anon_sym_6_GT_AMP2] = ACTIONS(603), - [aux_sym_comparison_operator_token1] = ACTIONS(603), - [aux_sym_comparison_operator_token2] = ACTIONS(603), - [aux_sym_comparison_operator_token3] = ACTIONS(603), - [aux_sym_comparison_operator_token4] = ACTIONS(603), - [aux_sym_comparison_operator_token5] = ACTIONS(603), - [aux_sym_comparison_operator_token6] = ACTIONS(603), - [aux_sym_comparison_operator_token7] = ACTIONS(603), - [aux_sym_comparison_operator_token8] = ACTIONS(603), - [aux_sym_comparison_operator_token9] = ACTIONS(603), - [aux_sym_comparison_operator_token10] = ACTIONS(603), - [aux_sym_comparison_operator_token11] = ACTIONS(603), - [aux_sym_comparison_operator_token12] = ACTIONS(603), - [aux_sym_comparison_operator_token13] = ACTIONS(603), - [aux_sym_comparison_operator_token14] = ACTIONS(603), - [aux_sym_comparison_operator_token15] = ACTIONS(603), - [aux_sym_comparison_operator_token16] = ACTIONS(603), - [aux_sym_comparison_operator_token17] = ACTIONS(603), - [aux_sym_comparison_operator_token18] = ACTIONS(603), - [aux_sym_comparison_operator_token19] = ACTIONS(603), - [aux_sym_comparison_operator_token20] = ACTIONS(603), - [aux_sym_comparison_operator_token21] = ACTIONS(603), - [aux_sym_comparison_operator_token22] = ACTIONS(603), - [aux_sym_comparison_operator_token23] = ACTIONS(603), - [aux_sym_comparison_operator_token24] = ACTIONS(603), - [aux_sym_comparison_operator_token25] = ACTIONS(603), - [aux_sym_comparison_operator_token26] = ACTIONS(603), - [aux_sym_comparison_operator_token27] = ACTIONS(603), - [aux_sym_comparison_operator_token28] = ACTIONS(605), - [aux_sym_comparison_operator_token29] = ACTIONS(603), - [aux_sym_comparison_operator_token30] = ACTIONS(603), - [aux_sym_comparison_operator_token31] = ACTIONS(603), - [aux_sym_comparison_operator_token32] = ACTIONS(603), - [aux_sym_comparison_operator_token33] = ACTIONS(603), - [aux_sym_comparison_operator_token34] = ACTIONS(605), - [aux_sym_comparison_operator_token35] = ACTIONS(603), - [aux_sym_comparison_operator_token36] = ACTIONS(603), - [aux_sym_comparison_operator_token37] = ACTIONS(603), - [aux_sym_comparison_operator_token38] = ACTIONS(603), - [aux_sym_comparison_operator_token39] = ACTIONS(603), - [aux_sym_comparison_operator_token40] = ACTIONS(603), - [aux_sym_comparison_operator_token41] = ACTIONS(603), - [aux_sym_comparison_operator_token42] = ACTIONS(603), - [aux_sym_comparison_operator_token43] = ACTIONS(603), - [aux_sym_comparison_operator_token44] = ACTIONS(603), - [aux_sym_comparison_operator_token45] = ACTIONS(603), - [aux_sym_comparison_operator_token46] = ACTIONS(603), - [aux_sym_comparison_operator_token47] = ACTIONS(603), - [aux_sym_comparison_operator_token48] = ACTIONS(603), - [aux_sym_comparison_operator_token49] = ACTIONS(603), - [aux_sym_comparison_operator_token50] = ACTIONS(603), - [aux_sym_format_operator_token1] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(605), - [aux_sym_logical_expression_token1] = ACTIONS(603), - [aux_sym_logical_expression_token2] = ACTIONS(603), - [aux_sym_logical_expression_token3] = ACTIONS(603), - [aux_sym_bitwise_expression_token1] = ACTIONS(603), - [aux_sym_bitwise_expression_token2] = ACTIONS(603), - [aux_sym_bitwise_expression_token3] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_DOT2] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(601), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_2_GT] = ACTIONS(603), + [anon_sym_2_GT_GT] = ACTIONS(601), + [anon_sym_3_GT] = ACTIONS(603), + [anon_sym_3_GT_GT] = ACTIONS(601), + [anon_sym_4_GT] = ACTIONS(603), + [anon_sym_4_GT_GT] = ACTIONS(601), + [anon_sym_5_GT] = ACTIONS(603), + [anon_sym_5_GT_GT] = ACTIONS(601), + [anon_sym_6_GT] = ACTIONS(603), + [anon_sym_6_GT_GT] = ACTIONS(601), + [anon_sym_STAR_GT] = ACTIONS(603), + [anon_sym_STAR_GT_GT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_STAR_GT_AMP1] = ACTIONS(601), + [anon_sym_2_GT_AMP1] = ACTIONS(601), + [anon_sym_3_GT_AMP1] = ACTIONS(601), + [anon_sym_4_GT_AMP1] = ACTIONS(601), + [anon_sym_5_GT_AMP1] = ACTIONS(601), + [anon_sym_6_GT_AMP1] = ACTIONS(601), + [anon_sym_STAR_GT_AMP2] = ACTIONS(601), + [anon_sym_1_GT_AMP2] = ACTIONS(601), + [anon_sym_3_GT_AMP2] = ACTIONS(601), + [anon_sym_4_GT_AMP2] = ACTIONS(601), + [anon_sym_5_GT_AMP2] = ACTIONS(601), + [anon_sym_6_GT_AMP2] = ACTIONS(601), + [aux_sym_comparison_operator_token1] = ACTIONS(601), + [aux_sym_comparison_operator_token2] = ACTIONS(601), + [aux_sym_comparison_operator_token3] = ACTIONS(601), + [aux_sym_comparison_operator_token4] = ACTIONS(601), + [aux_sym_comparison_operator_token5] = ACTIONS(601), + [aux_sym_comparison_operator_token6] = ACTIONS(601), + [aux_sym_comparison_operator_token7] = ACTIONS(601), + [aux_sym_comparison_operator_token8] = ACTIONS(601), + [aux_sym_comparison_operator_token9] = ACTIONS(601), + [aux_sym_comparison_operator_token10] = ACTIONS(601), + [aux_sym_comparison_operator_token11] = ACTIONS(601), + [aux_sym_comparison_operator_token12] = ACTIONS(601), + [aux_sym_comparison_operator_token13] = ACTIONS(601), + [aux_sym_comparison_operator_token14] = ACTIONS(601), + [aux_sym_comparison_operator_token15] = ACTIONS(601), + [aux_sym_comparison_operator_token16] = ACTIONS(601), + [aux_sym_comparison_operator_token17] = ACTIONS(601), + [aux_sym_comparison_operator_token18] = ACTIONS(601), + [aux_sym_comparison_operator_token19] = ACTIONS(601), + [aux_sym_comparison_operator_token20] = ACTIONS(601), + [aux_sym_comparison_operator_token21] = ACTIONS(601), + [aux_sym_comparison_operator_token22] = ACTIONS(601), + [aux_sym_comparison_operator_token23] = ACTIONS(601), + [aux_sym_comparison_operator_token24] = ACTIONS(601), + [aux_sym_comparison_operator_token25] = ACTIONS(601), + [aux_sym_comparison_operator_token26] = ACTIONS(601), + [aux_sym_comparison_operator_token27] = ACTIONS(601), + [aux_sym_comparison_operator_token28] = ACTIONS(603), + [aux_sym_comparison_operator_token29] = ACTIONS(601), + [aux_sym_comparison_operator_token30] = ACTIONS(601), + [aux_sym_comparison_operator_token31] = ACTIONS(601), + [aux_sym_comparison_operator_token32] = ACTIONS(601), + [aux_sym_comparison_operator_token33] = ACTIONS(601), + [aux_sym_comparison_operator_token34] = ACTIONS(603), + [aux_sym_comparison_operator_token35] = ACTIONS(601), + [aux_sym_comparison_operator_token36] = ACTIONS(601), + [aux_sym_comparison_operator_token37] = ACTIONS(601), + [aux_sym_comparison_operator_token38] = ACTIONS(601), + [aux_sym_comparison_operator_token39] = ACTIONS(601), + [aux_sym_comparison_operator_token40] = ACTIONS(601), + [aux_sym_comparison_operator_token41] = ACTIONS(601), + [aux_sym_comparison_operator_token42] = ACTIONS(601), + [aux_sym_comparison_operator_token43] = ACTIONS(601), + [aux_sym_comparison_operator_token44] = ACTIONS(601), + [aux_sym_comparison_operator_token45] = ACTIONS(601), + [aux_sym_comparison_operator_token46] = ACTIONS(601), + [aux_sym_comparison_operator_token47] = ACTIONS(601), + [aux_sym_comparison_operator_token48] = ACTIONS(601), + [aux_sym_comparison_operator_token49] = ACTIONS(601), + [aux_sym_comparison_operator_token50] = ACTIONS(601), + [aux_sym_format_operator_token1] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(603), + [aux_sym_logical_expression_token1] = ACTIONS(601), + [aux_sym_logical_expression_token2] = ACTIONS(601), + [aux_sym_logical_expression_token3] = ACTIONS(601), + [aux_sym_bitwise_expression_token1] = ACTIONS(601), + [aux_sym_bitwise_expression_token2] = ACTIONS(601), + [aux_sym_bitwise_expression_token3] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_DOT_DOT] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DOT2] = ACTIONS(603), + [anon_sym_COLON_COLON] = ACTIONS(601), + [anon_sym_RBRACK] = ACTIONS(601), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(601), }, [87] = { - [sym_argument_list] = STATE(93), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_2_GT] = ACTIONS(605), - [anon_sym_2_GT_GT] = ACTIONS(603), - [anon_sym_3_GT] = ACTIONS(605), - [anon_sym_3_GT_GT] = ACTIONS(603), - [anon_sym_4_GT] = ACTIONS(605), - [anon_sym_4_GT_GT] = ACTIONS(603), - [anon_sym_5_GT] = ACTIONS(605), - [anon_sym_5_GT_GT] = ACTIONS(603), - [anon_sym_6_GT] = ACTIONS(605), - [anon_sym_6_GT_GT] = ACTIONS(603), - [anon_sym_STAR_GT] = ACTIONS(605), - [anon_sym_STAR_GT_GT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_STAR_GT_AMP1] = ACTIONS(603), - [anon_sym_2_GT_AMP1] = ACTIONS(603), - [anon_sym_3_GT_AMP1] = ACTIONS(603), - [anon_sym_4_GT_AMP1] = ACTIONS(603), - [anon_sym_5_GT_AMP1] = ACTIONS(603), - [anon_sym_6_GT_AMP1] = ACTIONS(603), - [anon_sym_STAR_GT_AMP2] = ACTIONS(603), - [anon_sym_1_GT_AMP2] = ACTIONS(603), - [anon_sym_3_GT_AMP2] = ACTIONS(603), - [anon_sym_4_GT_AMP2] = ACTIONS(603), - [anon_sym_5_GT_AMP2] = ACTIONS(603), - [anon_sym_6_GT_AMP2] = ACTIONS(603), - [aux_sym_comparison_operator_token1] = ACTIONS(603), - [aux_sym_comparison_operator_token2] = ACTIONS(603), - [aux_sym_comparison_operator_token3] = ACTIONS(603), - [aux_sym_comparison_operator_token4] = ACTIONS(603), - [aux_sym_comparison_operator_token5] = ACTIONS(603), - [aux_sym_comparison_operator_token6] = ACTIONS(603), - [aux_sym_comparison_operator_token7] = ACTIONS(603), - [aux_sym_comparison_operator_token8] = ACTIONS(603), - [aux_sym_comparison_operator_token9] = ACTIONS(603), - [aux_sym_comparison_operator_token10] = ACTIONS(603), - [aux_sym_comparison_operator_token11] = ACTIONS(603), - [aux_sym_comparison_operator_token12] = ACTIONS(603), - [aux_sym_comparison_operator_token13] = ACTIONS(603), - [aux_sym_comparison_operator_token14] = ACTIONS(603), - [aux_sym_comparison_operator_token15] = ACTIONS(603), - [aux_sym_comparison_operator_token16] = ACTIONS(603), - [aux_sym_comparison_operator_token17] = ACTIONS(603), - [aux_sym_comparison_operator_token18] = ACTIONS(603), - [aux_sym_comparison_operator_token19] = ACTIONS(603), - [aux_sym_comparison_operator_token20] = ACTIONS(603), - [aux_sym_comparison_operator_token21] = ACTIONS(603), - [aux_sym_comparison_operator_token22] = ACTIONS(603), - [aux_sym_comparison_operator_token23] = ACTIONS(603), - [aux_sym_comparison_operator_token24] = ACTIONS(603), - [aux_sym_comparison_operator_token25] = ACTIONS(603), - [aux_sym_comparison_operator_token26] = ACTIONS(603), - [aux_sym_comparison_operator_token27] = ACTIONS(603), - [aux_sym_comparison_operator_token28] = ACTIONS(605), - [aux_sym_comparison_operator_token29] = ACTIONS(603), - [aux_sym_comparison_operator_token30] = ACTIONS(603), - [aux_sym_comparison_operator_token31] = ACTIONS(603), - [aux_sym_comparison_operator_token32] = ACTIONS(603), - [aux_sym_comparison_operator_token33] = ACTIONS(603), - [aux_sym_comparison_operator_token34] = ACTIONS(605), - [aux_sym_comparison_operator_token35] = ACTIONS(603), - [aux_sym_comparison_operator_token36] = ACTIONS(603), - [aux_sym_comparison_operator_token37] = ACTIONS(603), - [aux_sym_comparison_operator_token38] = ACTIONS(603), - [aux_sym_comparison_operator_token39] = ACTIONS(603), - [aux_sym_comparison_operator_token40] = ACTIONS(603), - [aux_sym_comparison_operator_token41] = ACTIONS(603), - [aux_sym_comparison_operator_token42] = ACTIONS(603), - [aux_sym_comparison_operator_token43] = ACTIONS(603), - [aux_sym_comparison_operator_token44] = ACTIONS(603), - [aux_sym_comparison_operator_token45] = ACTIONS(603), - [aux_sym_comparison_operator_token46] = ACTIONS(603), - [aux_sym_comparison_operator_token47] = ACTIONS(603), - [aux_sym_comparison_operator_token48] = ACTIONS(603), - [aux_sym_comparison_operator_token49] = ACTIONS(603), - [aux_sym_comparison_operator_token50] = ACTIONS(603), - [aux_sym_format_operator_token1] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(605), - [aux_sym_logical_expression_token1] = ACTIONS(603), - [aux_sym_logical_expression_token2] = ACTIONS(603), - [aux_sym_logical_expression_token3] = ACTIONS(603), - [aux_sym_bitwise_expression_token1] = ACTIONS(603), - [aux_sym_bitwise_expression_token2] = ACTIONS(603), - [aux_sym_bitwise_expression_token3] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_DOT2] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_2_GT] = ACTIONS(607), + [anon_sym_2_GT_GT] = ACTIONS(605), + [anon_sym_3_GT] = ACTIONS(607), + [anon_sym_3_GT_GT] = ACTIONS(605), + [anon_sym_4_GT] = ACTIONS(607), + [anon_sym_4_GT_GT] = ACTIONS(605), + [anon_sym_5_GT] = ACTIONS(607), + [anon_sym_5_GT_GT] = ACTIONS(605), + [anon_sym_6_GT] = ACTIONS(607), + [anon_sym_6_GT_GT] = ACTIONS(605), + [anon_sym_STAR_GT] = ACTIONS(607), + [anon_sym_STAR_GT_GT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_STAR_GT_AMP1] = ACTIONS(605), + [anon_sym_2_GT_AMP1] = ACTIONS(605), + [anon_sym_3_GT_AMP1] = ACTIONS(605), + [anon_sym_4_GT_AMP1] = ACTIONS(605), + [anon_sym_5_GT_AMP1] = ACTIONS(605), + [anon_sym_6_GT_AMP1] = ACTIONS(605), + [anon_sym_STAR_GT_AMP2] = ACTIONS(605), + [anon_sym_1_GT_AMP2] = ACTIONS(605), + [anon_sym_3_GT_AMP2] = ACTIONS(605), + [anon_sym_4_GT_AMP2] = ACTIONS(605), + [anon_sym_5_GT_AMP2] = ACTIONS(605), + [anon_sym_6_GT_AMP2] = ACTIONS(605), + [aux_sym_comparison_operator_token1] = ACTIONS(605), + [aux_sym_comparison_operator_token2] = ACTIONS(605), + [aux_sym_comparison_operator_token3] = ACTIONS(605), + [aux_sym_comparison_operator_token4] = ACTIONS(605), + [aux_sym_comparison_operator_token5] = ACTIONS(605), + [aux_sym_comparison_operator_token6] = ACTIONS(605), + [aux_sym_comparison_operator_token7] = ACTIONS(605), + [aux_sym_comparison_operator_token8] = ACTIONS(605), + [aux_sym_comparison_operator_token9] = ACTIONS(605), + [aux_sym_comparison_operator_token10] = ACTIONS(605), + [aux_sym_comparison_operator_token11] = ACTIONS(605), + [aux_sym_comparison_operator_token12] = ACTIONS(605), + [aux_sym_comparison_operator_token13] = ACTIONS(605), + [aux_sym_comparison_operator_token14] = ACTIONS(605), + [aux_sym_comparison_operator_token15] = ACTIONS(605), + [aux_sym_comparison_operator_token16] = ACTIONS(605), + [aux_sym_comparison_operator_token17] = ACTIONS(605), + [aux_sym_comparison_operator_token18] = ACTIONS(605), + [aux_sym_comparison_operator_token19] = ACTIONS(605), + [aux_sym_comparison_operator_token20] = ACTIONS(605), + [aux_sym_comparison_operator_token21] = ACTIONS(605), + [aux_sym_comparison_operator_token22] = ACTIONS(605), + [aux_sym_comparison_operator_token23] = ACTIONS(605), + [aux_sym_comparison_operator_token24] = ACTIONS(605), + [aux_sym_comparison_operator_token25] = ACTIONS(605), + [aux_sym_comparison_operator_token26] = ACTIONS(605), + [aux_sym_comparison_operator_token27] = ACTIONS(605), + [aux_sym_comparison_operator_token28] = ACTIONS(607), + [aux_sym_comparison_operator_token29] = ACTIONS(605), + [aux_sym_comparison_operator_token30] = ACTIONS(605), + [aux_sym_comparison_operator_token31] = ACTIONS(605), + [aux_sym_comparison_operator_token32] = ACTIONS(605), + [aux_sym_comparison_operator_token33] = ACTIONS(605), + [aux_sym_comparison_operator_token34] = ACTIONS(607), + [aux_sym_comparison_operator_token35] = ACTIONS(605), + [aux_sym_comparison_operator_token36] = ACTIONS(605), + [aux_sym_comparison_operator_token37] = ACTIONS(605), + [aux_sym_comparison_operator_token38] = ACTIONS(605), + [aux_sym_comparison_operator_token39] = ACTIONS(605), + [aux_sym_comparison_operator_token40] = ACTIONS(605), + [aux_sym_comparison_operator_token41] = ACTIONS(605), + [aux_sym_comparison_operator_token42] = ACTIONS(605), + [aux_sym_comparison_operator_token43] = ACTIONS(605), + [aux_sym_comparison_operator_token44] = ACTIONS(605), + [aux_sym_comparison_operator_token45] = ACTIONS(605), + [aux_sym_comparison_operator_token46] = ACTIONS(605), + [aux_sym_comparison_operator_token47] = ACTIONS(605), + [aux_sym_comparison_operator_token48] = ACTIONS(605), + [aux_sym_comparison_operator_token49] = ACTIONS(605), + [aux_sym_comparison_operator_token50] = ACTIONS(605), + [aux_sym_format_operator_token1] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [aux_sym_foreach_statement_token2] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(607), + [aux_sym_logical_expression_token1] = ACTIONS(605), + [aux_sym_logical_expression_token2] = ACTIONS(605), + [aux_sym_logical_expression_token3] = ACTIONS(605), + [aux_sym_bitwise_expression_token1] = ACTIONS(605), + [aux_sym_bitwise_expression_token2] = ACTIONS(605), + [aux_sym_bitwise_expression_token3] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_DOT2] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(605), + [anon_sym_RBRACK] = ACTIONS(605), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(605), }, [88] = { [sym_comment] = ACTIONS(81), @@ -37991,6 +38907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(609), [anon_sym_SLASH_EQ] = ACTIONS(609), [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), [anon_sym_GT] = ACTIONS(611), [anon_sym_GT_GT] = ACTIONS(609), [anon_sym_2_GT] = ACTIONS(611), @@ -38102,6 +39019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(613), [anon_sym_SLASH_EQ] = ACTIONS(613), [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), [anon_sym_GT] = ACTIONS(615), [anon_sym_GT_GT] = ACTIONS(613), [anon_sym_2_GT] = ACTIONS(615), @@ -38213,6 +39131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(617), [anon_sym_SLASH_EQ] = ACTIONS(617), [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), [anon_sym_GT] = ACTIONS(619), [anon_sym_GT_GT] = ACTIONS(617), [anon_sym_2_GT] = ACTIONS(619), @@ -38316,1449 +39235,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(617), }, [91] = { - [sym_argument_list] = STATE(137), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_2_GT] = ACTIONS(605), - [anon_sym_2_GT_GT] = ACTIONS(603), - [anon_sym_3_GT] = ACTIONS(605), - [anon_sym_3_GT_GT] = ACTIONS(603), - [anon_sym_4_GT] = ACTIONS(605), - [anon_sym_4_GT_GT] = ACTIONS(603), - [anon_sym_5_GT] = ACTIONS(605), - [anon_sym_5_GT_GT] = ACTIONS(603), - [anon_sym_6_GT] = ACTIONS(605), - [anon_sym_6_GT_GT] = ACTIONS(603), - [anon_sym_STAR_GT] = ACTIONS(605), - [anon_sym_STAR_GT_GT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_STAR_GT_AMP1] = ACTIONS(603), - [anon_sym_2_GT_AMP1] = ACTIONS(603), - [anon_sym_3_GT_AMP1] = ACTIONS(603), - [anon_sym_4_GT_AMP1] = ACTIONS(603), - [anon_sym_5_GT_AMP1] = ACTIONS(603), - [anon_sym_6_GT_AMP1] = ACTIONS(603), - [anon_sym_STAR_GT_AMP2] = ACTIONS(603), - [anon_sym_1_GT_AMP2] = ACTIONS(603), - [anon_sym_3_GT_AMP2] = ACTIONS(603), - [anon_sym_4_GT_AMP2] = ACTIONS(603), - [anon_sym_5_GT_AMP2] = ACTIONS(603), - [anon_sym_6_GT_AMP2] = ACTIONS(603), - [aux_sym_comparison_operator_token1] = ACTIONS(603), - [aux_sym_comparison_operator_token2] = ACTIONS(603), - [aux_sym_comparison_operator_token3] = ACTIONS(603), - [aux_sym_comparison_operator_token4] = ACTIONS(603), - [aux_sym_comparison_operator_token5] = ACTIONS(603), - [aux_sym_comparison_operator_token6] = ACTIONS(603), - [aux_sym_comparison_operator_token7] = ACTIONS(603), - [aux_sym_comparison_operator_token8] = ACTIONS(603), - [aux_sym_comparison_operator_token9] = ACTIONS(603), - [aux_sym_comparison_operator_token10] = ACTIONS(603), - [aux_sym_comparison_operator_token11] = ACTIONS(603), - [aux_sym_comparison_operator_token12] = ACTIONS(603), - [aux_sym_comparison_operator_token13] = ACTIONS(603), - [aux_sym_comparison_operator_token14] = ACTIONS(603), - [aux_sym_comparison_operator_token15] = ACTIONS(603), - [aux_sym_comparison_operator_token16] = ACTIONS(603), - [aux_sym_comparison_operator_token17] = ACTIONS(603), - [aux_sym_comparison_operator_token18] = ACTIONS(603), - [aux_sym_comparison_operator_token19] = ACTIONS(603), - [aux_sym_comparison_operator_token20] = ACTIONS(603), - [aux_sym_comparison_operator_token21] = ACTIONS(603), - [aux_sym_comparison_operator_token22] = ACTIONS(603), - [aux_sym_comparison_operator_token23] = ACTIONS(603), - [aux_sym_comparison_operator_token24] = ACTIONS(603), - [aux_sym_comparison_operator_token25] = ACTIONS(603), - [aux_sym_comparison_operator_token26] = ACTIONS(603), - [aux_sym_comparison_operator_token27] = ACTIONS(603), - [aux_sym_comparison_operator_token28] = ACTIONS(605), - [aux_sym_comparison_operator_token29] = ACTIONS(603), - [aux_sym_comparison_operator_token30] = ACTIONS(603), - [aux_sym_comparison_operator_token31] = ACTIONS(603), - [aux_sym_comparison_operator_token32] = ACTIONS(603), - [aux_sym_comparison_operator_token33] = ACTIONS(603), - [aux_sym_comparison_operator_token34] = ACTIONS(605), - [aux_sym_comparison_operator_token35] = ACTIONS(603), - [aux_sym_comparison_operator_token36] = ACTIONS(603), - [aux_sym_comparison_operator_token37] = ACTIONS(603), - [aux_sym_comparison_operator_token38] = ACTIONS(603), - [aux_sym_comparison_operator_token39] = ACTIONS(603), - [aux_sym_comparison_operator_token40] = ACTIONS(603), - [aux_sym_comparison_operator_token41] = ACTIONS(603), - [aux_sym_comparison_operator_token42] = ACTIONS(603), - [aux_sym_comparison_operator_token43] = ACTIONS(603), - [aux_sym_comparison_operator_token44] = ACTIONS(603), - [aux_sym_comparison_operator_token45] = ACTIONS(603), - [aux_sym_comparison_operator_token46] = ACTIONS(603), - [aux_sym_comparison_operator_token47] = ACTIONS(603), - [aux_sym_comparison_operator_token48] = ACTIONS(603), - [aux_sym_comparison_operator_token49] = ACTIONS(603), - [aux_sym_comparison_operator_token50] = ACTIONS(603), - [aux_sym_format_operator_token1] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_2_GT] = ACTIONS(623), + [anon_sym_2_GT_GT] = ACTIONS(621), + [anon_sym_3_GT] = ACTIONS(623), + [anon_sym_3_GT_GT] = ACTIONS(621), + [anon_sym_4_GT] = ACTIONS(623), + [anon_sym_4_GT_GT] = ACTIONS(621), + [anon_sym_5_GT] = ACTIONS(623), + [anon_sym_5_GT_GT] = ACTIONS(621), + [anon_sym_6_GT] = ACTIONS(623), + [anon_sym_6_GT_GT] = ACTIONS(621), + [anon_sym_STAR_GT] = ACTIONS(623), + [anon_sym_STAR_GT_GT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_STAR_GT_AMP1] = ACTIONS(621), + [anon_sym_2_GT_AMP1] = ACTIONS(621), + [anon_sym_3_GT_AMP1] = ACTIONS(621), + [anon_sym_4_GT_AMP1] = ACTIONS(621), + [anon_sym_5_GT_AMP1] = ACTIONS(621), + [anon_sym_6_GT_AMP1] = ACTIONS(621), + [anon_sym_STAR_GT_AMP2] = ACTIONS(621), + [anon_sym_1_GT_AMP2] = ACTIONS(621), + [anon_sym_3_GT_AMP2] = ACTIONS(621), + [anon_sym_4_GT_AMP2] = ACTIONS(621), + [anon_sym_5_GT_AMP2] = ACTIONS(621), + [anon_sym_6_GT_AMP2] = ACTIONS(621), + [aux_sym_comparison_operator_token1] = ACTIONS(621), + [aux_sym_comparison_operator_token2] = ACTIONS(621), + [aux_sym_comparison_operator_token3] = ACTIONS(621), + [aux_sym_comparison_operator_token4] = ACTIONS(621), + [aux_sym_comparison_operator_token5] = ACTIONS(621), + [aux_sym_comparison_operator_token6] = ACTIONS(621), + [aux_sym_comparison_operator_token7] = ACTIONS(621), + [aux_sym_comparison_operator_token8] = ACTIONS(621), + [aux_sym_comparison_operator_token9] = ACTIONS(621), + [aux_sym_comparison_operator_token10] = ACTIONS(621), + [aux_sym_comparison_operator_token11] = ACTIONS(621), + [aux_sym_comparison_operator_token12] = ACTIONS(621), + [aux_sym_comparison_operator_token13] = ACTIONS(621), + [aux_sym_comparison_operator_token14] = ACTIONS(621), + [aux_sym_comparison_operator_token15] = ACTIONS(621), + [aux_sym_comparison_operator_token16] = ACTIONS(621), + [aux_sym_comparison_operator_token17] = ACTIONS(621), + [aux_sym_comparison_operator_token18] = ACTIONS(621), + [aux_sym_comparison_operator_token19] = ACTIONS(621), + [aux_sym_comparison_operator_token20] = ACTIONS(621), + [aux_sym_comparison_operator_token21] = ACTIONS(621), + [aux_sym_comparison_operator_token22] = ACTIONS(621), + [aux_sym_comparison_operator_token23] = ACTIONS(621), + [aux_sym_comparison_operator_token24] = ACTIONS(621), + [aux_sym_comparison_operator_token25] = ACTIONS(621), + [aux_sym_comparison_operator_token26] = ACTIONS(621), + [aux_sym_comparison_operator_token27] = ACTIONS(621), + [aux_sym_comparison_operator_token28] = ACTIONS(623), + [aux_sym_comparison_operator_token29] = ACTIONS(621), + [aux_sym_comparison_operator_token30] = ACTIONS(621), + [aux_sym_comparison_operator_token31] = ACTIONS(621), + [aux_sym_comparison_operator_token32] = ACTIONS(621), + [aux_sym_comparison_operator_token33] = ACTIONS(621), + [aux_sym_comparison_operator_token34] = ACTIONS(623), + [aux_sym_comparison_operator_token35] = ACTIONS(621), + [aux_sym_comparison_operator_token36] = ACTIONS(621), + [aux_sym_comparison_operator_token37] = ACTIONS(621), + [aux_sym_comparison_operator_token38] = ACTIONS(621), + [aux_sym_comparison_operator_token39] = ACTIONS(621), + [aux_sym_comparison_operator_token40] = ACTIONS(621), + [aux_sym_comparison_operator_token41] = ACTIONS(621), + [aux_sym_comparison_operator_token42] = ACTIONS(621), + [aux_sym_comparison_operator_token43] = ACTIONS(621), + [aux_sym_comparison_operator_token44] = ACTIONS(621), + [aux_sym_comparison_operator_token45] = ACTIONS(621), + [aux_sym_comparison_operator_token46] = ACTIONS(621), + [aux_sym_comparison_operator_token47] = ACTIONS(621), + [aux_sym_comparison_operator_token48] = ACTIONS(621), + [aux_sym_comparison_operator_token49] = ACTIONS(621), + [aux_sym_comparison_operator_token50] = ACTIONS(621), + [aux_sym_format_operator_token1] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(605), - [aux_sym_logical_expression_token1] = ACTIONS(603), - [aux_sym_logical_expression_token2] = ACTIONS(603), - [aux_sym_logical_expression_token3] = ACTIONS(603), - [aux_sym_bitwise_expression_token1] = ACTIONS(603), - [aux_sym_bitwise_expression_token2] = ACTIONS(603), - [aux_sym_bitwise_expression_token3] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_DOT2] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(603), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(603), - [sym__statement_terminator] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(623), + [aux_sym_logical_expression_token1] = ACTIONS(621), + [aux_sym_logical_expression_token2] = ACTIONS(621), + [aux_sym_logical_expression_token3] = ACTIONS(621), + [aux_sym_bitwise_expression_token1] = ACTIONS(621), + [aux_sym_bitwise_expression_token2] = ACTIONS(621), + [aux_sym_bitwise_expression_token3] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DOT2] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(621), }, [92] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_2_GT] = ACTIONS(625), - [anon_sym_2_GT_GT] = ACTIONS(623), - [anon_sym_3_GT] = ACTIONS(625), - [anon_sym_3_GT_GT] = ACTIONS(623), - [anon_sym_4_GT] = ACTIONS(625), - [anon_sym_4_GT_GT] = ACTIONS(623), - [anon_sym_5_GT] = ACTIONS(625), - [anon_sym_5_GT_GT] = ACTIONS(623), - [anon_sym_6_GT] = ACTIONS(625), - [anon_sym_6_GT_GT] = ACTIONS(623), - [anon_sym_STAR_GT] = ACTIONS(625), - [anon_sym_STAR_GT_GT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_STAR_GT_AMP1] = ACTIONS(623), - [anon_sym_2_GT_AMP1] = ACTIONS(623), - [anon_sym_3_GT_AMP1] = ACTIONS(623), - [anon_sym_4_GT_AMP1] = ACTIONS(623), - [anon_sym_5_GT_AMP1] = ACTIONS(623), - [anon_sym_6_GT_AMP1] = ACTIONS(623), - [anon_sym_STAR_GT_AMP2] = ACTIONS(623), - [anon_sym_1_GT_AMP2] = ACTIONS(623), - [anon_sym_3_GT_AMP2] = ACTIONS(623), - [anon_sym_4_GT_AMP2] = ACTIONS(623), - [anon_sym_5_GT_AMP2] = ACTIONS(623), - [anon_sym_6_GT_AMP2] = ACTIONS(623), - [aux_sym_comparison_operator_token1] = ACTIONS(623), - [aux_sym_comparison_operator_token2] = ACTIONS(623), - [aux_sym_comparison_operator_token3] = ACTIONS(623), - [aux_sym_comparison_operator_token4] = ACTIONS(623), - [aux_sym_comparison_operator_token5] = ACTIONS(623), - [aux_sym_comparison_operator_token6] = ACTIONS(623), - [aux_sym_comparison_operator_token7] = ACTIONS(623), - [aux_sym_comparison_operator_token8] = ACTIONS(623), - [aux_sym_comparison_operator_token9] = ACTIONS(623), - [aux_sym_comparison_operator_token10] = ACTIONS(623), - [aux_sym_comparison_operator_token11] = ACTIONS(623), - [aux_sym_comparison_operator_token12] = ACTIONS(623), - [aux_sym_comparison_operator_token13] = ACTIONS(623), - [aux_sym_comparison_operator_token14] = ACTIONS(623), - [aux_sym_comparison_operator_token15] = ACTIONS(623), - [aux_sym_comparison_operator_token16] = ACTIONS(623), - [aux_sym_comparison_operator_token17] = ACTIONS(623), - [aux_sym_comparison_operator_token18] = ACTIONS(623), - [aux_sym_comparison_operator_token19] = ACTIONS(623), - [aux_sym_comparison_operator_token20] = ACTIONS(623), - [aux_sym_comparison_operator_token21] = ACTIONS(623), - [aux_sym_comparison_operator_token22] = ACTIONS(623), - [aux_sym_comparison_operator_token23] = ACTIONS(623), - [aux_sym_comparison_operator_token24] = ACTIONS(623), - [aux_sym_comparison_operator_token25] = ACTIONS(623), - [aux_sym_comparison_operator_token26] = ACTIONS(623), - [aux_sym_comparison_operator_token27] = ACTIONS(623), - [aux_sym_comparison_operator_token28] = ACTIONS(625), - [aux_sym_comparison_operator_token29] = ACTIONS(623), - [aux_sym_comparison_operator_token30] = ACTIONS(623), - [aux_sym_comparison_operator_token31] = ACTIONS(623), - [aux_sym_comparison_operator_token32] = ACTIONS(623), - [aux_sym_comparison_operator_token33] = ACTIONS(623), - [aux_sym_comparison_operator_token34] = ACTIONS(625), - [aux_sym_comparison_operator_token35] = ACTIONS(623), - [aux_sym_comparison_operator_token36] = ACTIONS(623), - [aux_sym_comparison_operator_token37] = ACTIONS(623), - [aux_sym_comparison_operator_token38] = ACTIONS(623), - [aux_sym_comparison_operator_token39] = ACTIONS(623), - [aux_sym_comparison_operator_token40] = ACTIONS(623), - [aux_sym_comparison_operator_token41] = ACTIONS(623), - [aux_sym_comparison_operator_token42] = ACTIONS(623), - [aux_sym_comparison_operator_token43] = ACTIONS(623), - [aux_sym_comparison_operator_token44] = ACTIONS(623), - [aux_sym_comparison_operator_token45] = ACTIONS(623), - [aux_sym_comparison_operator_token46] = ACTIONS(623), - [aux_sym_comparison_operator_token47] = ACTIONS(623), - [aux_sym_comparison_operator_token48] = ACTIONS(623), - [aux_sym_comparison_operator_token49] = ACTIONS(623), - [aux_sym_comparison_operator_token50] = ACTIONS(623), - [aux_sym_format_operator_token1] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(625), - [aux_sym_logical_expression_token1] = ACTIONS(623), - [aux_sym_logical_expression_token2] = ACTIONS(623), - [aux_sym_logical_expression_token3] = ACTIONS(623), - [aux_sym_bitwise_expression_token1] = ACTIONS(623), - [aux_sym_bitwise_expression_token2] = ACTIONS(623), - [aux_sym_bitwise_expression_token3] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_BSLASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_DOT2] = ACTIONS(625), - [anon_sym_COLON_COLON] = ACTIONS(623), - [anon_sym_RBRACK] = ACTIONS(623), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_2_GT] = ACTIONS(627), + [anon_sym_2_GT_GT] = ACTIONS(625), + [anon_sym_3_GT] = ACTIONS(627), + [anon_sym_3_GT_GT] = ACTIONS(625), + [anon_sym_4_GT] = ACTIONS(627), + [anon_sym_4_GT_GT] = ACTIONS(625), + [anon_sym_5_GT] = ACTIONS(627), + [anon_sym_5_GT_GT] = ACTIONS(625), + [anon_sym_6_GT] = ACTIONS(627), + [anon_sym_6_GT_GT] = ACTIONS(625), + [anon_sym_STAR_GT] = ACTIONS(627), + [anon_sym_STAR_GT_GT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_STAR_GT_AMP1] = ACTIONS(625), + [anon_sym_2_GT_AMP1] = ACTIONS(625), + [anon_sym_3_GT_AMP1] = ACTIONS(625), + [anon_sym_4_GT_AMP1] = ACTIONS(625), + [anon_sym_5_GT_AMP1] = ACTIONS(625), + [anon_sym_6_GT_AMP1] = ACTIONS(625), + [anon_sym_STAR_GT_AMP2] = ACTIONS(625), + [anon_sym_1_GT_AMP2] = ACTIONS(625), + [anon_sym_3_GT_AMP2] = ACTIONS(625), + [anon_sym_4_GT_AMP2] = ACTIONS(625), + [anon_sym_5_GT_AMP2] = ACTIONS(625), + [anon_sym_6_GT_AMP2] = ACTIONS(625), + [aux_sym_comparison_operator_token1] = ACTIONS(625), + [aux_sym_comparison_operator_token2] = ACTIONS(625), + [aux_sym_comparison_operator_token3] = ACTIONS(625), + [aux_sym_comparison_operator_token4] = ACTIONS(625), + [aux_sym_comparison_operator_token5] = ACTIONS(625), + [aux_sym_comparison_operator_token6] = ACTIONS(625), + [aux_sym_comparison_operator_token7] = ACTIONS(625), + [aux_sym_comparison_operator_token8] = ACTIONS(625), + [aux_sym_comparison_operator_token9] = ACTIONS(625), + [aux_sym_comparison_operator_token10] = ACTIONS(625), + [aux_sym_comparison_operator_token11] = ACTIONS(625), + [aux_sym_comparison_operator_token12] = ACTIONS(625), + [aux_sym_comparison_operator_token13] = ACTIONS(625), + [aux_sym_comparison_operator_token14] = ACTIONS(625), + [aux_sym_comparison_operator_token15] = ACTIONS(625), + [aux_sym_comparison_operator_token16] = ACTIONS(625), + [aux_sym_comparison_operator_token17] = ACTIONS(625), + [aux_sym_comparison_operator_token18] = ACTIONS(625), + [aux_sym_comparison_operator_token19] = ACTIONS(625), + [aux_sym_comparison_operator_token20] = ACTIONS(625), + [aux_sym_comparison_operator_token21] = ACTIONS(625), + [aux_sym_comparison_operator_token22] = ACTIONS(625), + [aux_sym_comparison_operator_token23] = ACTIONS(625), + [aux_sym_comparison_operator_token24] = ACTIONS(625), + [aux_sym_comparison_operator_token25] = ACTIONS(625), + [aux_sym_comparison_operator_token26] = ACTIONS(625), + [aux_sym_comparison_operator_token27] = ACTIONS(625), + [aux_sym_comparison_operator_token28] = ACTIONS(627), + [aux_sym_comparison_operator_token29] = ACTIONS(625), + [aux_sym_comparison_operator_token30] = ACTIONS(625), + [aux_sym_comparison_operator_token31] = ACTIONS(625), + [aux_sym_comparison_operator_token32] = ACTIONS(625), + [aux_sym_comparison_operator_token33] = ACTIONS(625), + [aux_sym_comparison_operator_token34] = ACTIONS(627), + [aux_sym_comparison_operator_token35] = ACTIONS(625), + [aux_sym_comparison_operator_token36] = ACTIONS(625), + [aux_sym_comparison_operator_token37] = ACTIONS(625), + [aux_sym_comparison_operator_token38] = ACTIONS(625), + [aux_sym_comparison_operator_token39] = ACTIONS(625), + [aux_sym_comparison_operator_token40] = ACTIONS(625), + [aux_sym_comparison_operator_token41] = ACTIONS(625), + [aux_sym_comparison_operator_token42] = ACTIONS(625), + [aux_sym_comparison_operator_token43] = ACTIONS(625), + [aux_sym_comparison_operator_token44] = ACTIONS(625), + [aux_sym_comparison_operator_token45] = ACTIONS(625), + [aux_sym_comparison_operator_token46] = ACTIONS(625), + [aux_sym_comparison_operator_token47] = ACTIONS(625), + [aux_sym_comparison_operator_token48] = ACTIONS(625), + [aux_sym_comparison_operator_token49] = ACTIONS(625), + [aux_sym_comparison_operator_token50] = ACTIONS(625), + [aux_sym_format_operator_token1] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_PERCENT] = ACTIONS(627), + [aux_sym_logical_expression_token1] = ACTIONS(625), + [aux_sym_logical_expression_token2] = ACTIONS(625), + [aux_sym_logical_expression_token3] = ACTIONS(625), + [aux_sym_bitwise_expression_token1] = ACTIONS(625), + [aux_sym_bitwise_expression_token2] = ACTIONS(625), + [aux_sym_bitwise_expression_token3] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_BSLASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_DOT2] = ACTIONS(627), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(625), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(625), }, [93] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_2_GT] = ACTIONS(629), - [anon_sym_2_GT_GT] = ACTIONS(627), - [anon_sym_3_GT] = ACTIONS(629), - [anon_sym_3_GT_GT] = ACTIONS(627), - [anon_sym_4_GT] = ACTIONS(629), - [anon_sym_4_GT_GT] = ACTIONS(627), - [anon_sym_5_GT] = ACTIONS(629), - [anon_sym_5_GT_GT] = ACTIONS(627), - [anon_sym_6_GT] = ACTIONS(629), - [anon_sym_6_GT_GT] = ACTIONS(627), - [anon_sym_STAR_GT] = ACTIONS(629), - [anon_sym_STAR_GT_GT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_STAR_GT_AMP1] = ACTIONS(627), - [anon_sym_2_GT_AMP1] = ACTIONS(627), - [anon_sym_3_GT_AMP1] = ACTIONS(627), - [anon_sym_4_GT_AMP1] = ACTIONS(627), - [anon_sym_5_GT_AMP1] = ACTIONS(627), - [anon_sym_6_GT_AMP1] = ACTIONS(627), - [anon_sym_STAR_GT_AMP2] = ACTIONS(627), - [anon_sym_1_GT_AMP2] = ACTIONS(627), - [anon_sym_3_GT_AMP2] = ACTIONS(627), - [anon_sym_4_GT_AMP2] = ACTIONS(627), - [anon_sym_5_GT_AMP2] = ACTIONS(627), - [anon_sym_6_GT_AMP2] = ACTIONS(627), - [aux_sym_comparison_operator_token1] = ACTIONS(627), - [aux_sym_comparison_operator_token2] = ACTIONS(627), - [aux_sym_comparison_operator_token3] = ACTIONS(627), - [aux_sym_comparison_operator_token4] = ACTIONS(627), - [aux_sym_comparison_operator_token5] = ACTIONS(627), - [aux_sym_comparison_operator_token6] = ACTIONS(627), - [aux_sym_comparison_operator_token7] = ACTIONS(627), - [aux_sym_comparison_operator_token8] = ACTIONS(627), - [aux_sym_comparison_operator_token9] = ACTIONS(627), - [aux_sym_comparison_operator_token10] = ACTIONS(627), - [aux_sym_comparison_operator_token11] = ACTIONS(627), - [aux_sym_comparison_operator_token12] = ACTIONS(627), - [aux_sym_comparison_operator_token13] = ACTIONS(627), - [aux_sym_comparison_operator_token14] = ACTIONS(627), - [aux_sym_comparison_operator_token15] = ACTIONS(627), - [aux_sym_comparison_operator_token16] = ACTIONS(627), - [aux_sym_comparison_operator_token17] = ACTIONS(627), - [aux_sym_comparison_operator_token18] = ACTIONS(627), - [aux_sym_comparison_operator_token19] = ACTIONS(627), - [aux_sym_comparison_operator_token20] = ACTIONS(627), - [aux_sym_comparison_operator_token21] = ACTIONS(627), - [aux_sym_comparison_operator_token22] = ACTIONS(627), - [aux_sym_comparison_operator_token23] = ACTIONS(627), - [aux_sym_comparison_operator_token24] = ACTIONS(627), - [aux_sym_comparison_operator_token25] = ACTIONS(627), - [aux_sym_comparison_operator_token26] = ACTIONS(627), - [aux_sym_comparison_operator_token27] = ACTIONS(627), - [aux_sym_comparison_operator_token28] = ACTIONS(629), - [aux_sym_comparison_operator_token29] = ACTIONS(627), - [aux_sym_comparison_operator_token30] = ACTIONS(627), - [aux_sym_comparison_operator_token31] = ACTIONS(627), - [aux_sym_comparison_operator_token32] = ACTIONS(627), - [aux_sym_comparison_operator_token33] = ACTIONS(627), - [aux_sym_comparison_operator_token34] = ACTIONS(629), - [aux_sym_comparison_operator_token35] = ACTIONS(627), - [aux_sym_comparison_operator_token36] = ACTIONS(627), - [aux_sym_comparison_operator_token37] = ACTIONS(627), - [aux_sym_comparison_operator_token38] = ACTIONS(627), - [aux_sym_comparison_operator_token39] = ACTIONS(627), - [aux_sym_comparison_operator_token40] = ACTIONS(627), - [aux_sym_comparison_operator_token41] = ACTIONS(627), - [aux_sym_comparison_operator_token42] = ACTIONS(627), - [aux_sym_comparison_operator_token43] = ACTIONS(627), - [aux_sym_comparison_operator_token44] = ACTIONS(627), - [aux_sym_comparison_operator_token45] = ACTIONS(627), - [aux_sym_comparison_operator_token46] = ACTIONS(627), - [aux_sym_comparison_operator_token47] = ACTIONS(627), - [aux_sym_comparison_operator_token48] = ACTIONS(627), - [aux_sym_comparison_operator_token49] = ACTIONS(627), - [aux_sym_comparison_operator_token50] = ACTIONS(627), - [aux_sym_format_operator_token1] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(629), - [aux_sym_logical_expression_token1] = ACTIONS(627), - [aux_sym_logical_expression_token2] = ACTIONS(627), - [aux_sym_logical_expression_token3] = ACTIONS(627), - [aux_sym_bitwise_expression_token1] = ACTIONS(627), - [aux_sym_bitwise_expression_token2] = ACTIONS(627), - [aux_sym_bitwise_expression_token3] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_BSLASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(629), - [anon_sym_DOT_DOT] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DOT2] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(627), - [anon_sym_RBRACK] = ACTIONS(627), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(629), + [anon_sym_2_GT] = ACTIONS(631), + [anon_sym_2_GT_GT] = ACTIONS(629), + [anon_sym_3_GT] = ACTIONS(631), + [anon_sym_3_GT_GT] = ACTIONS(629), + [anon_sym_4_GT] = ACTIONS(631), + [anon_sym_4_GT_GT] = ACTIONS(629), + [anon_sym_5_GT] = ACTIONS(631), + [anon_sym_5_GT_GT] = ACTIONS(629), + [anon_sym_6_GT] = ACTIONS(631), + [anon_sym_6_GT_GT] = ACTIONS(629), + [anon_sym_STAR_GT] = ACTIONS(631), + [anon_sym_STAR_GT_GT] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_STAR_GT_AMP1] = ACTIONS(629), + [anon_sym_2_GT_AMP1] = ACTIONS(629), + [anon_sym_3_GT_AMP1] = ACTIONS(629), + [anon_sym_4_GT_AMP1] = ACTIONS(629), + [anon_sym_5_GT_AMP1] = ACTIONS(629), + [anon_sym_6_GT_AMP1] = ACTIONS(629), + [anon_sym_STAR_GT_AMP2] = ACTIONS(629), + [anon_sym_1_GT_AMP2] = ACTIONS(629), + [anon_sym_3_GT_AMP2] = ACTIONS(629), + [anon_sym_4_GT_AMP2] = ACTIONS(629), + [anon_sym_5_GT_AMP2] = ACTIONS(629), + [anon_sym_6_GT_AMP2] = ACTIONS(629), + [aux_sym_comparison_operator_token1] = ACTIONS(629), + [aux_sym_comparison_operator_token2] = ACTIONS(629), + [aux_sym_comparison_operator_token3] = ACTIONS(629), + [aux_sym_comparison_operator_token4] = ACTIONS(629), + [aux_sym_comparison_operator_token5] = ACTIONS(629), + [aux_sym_comparison_operator_token6] = ACTIONS(629), + [aux_sym_comparison_operator_token7] = ACTIONS(629), + [aux_sym_comparison_operator_token8] = ACTIONS(629), + [aux_sym_comparison_operator_token9] = ACTIONS(629), + [aux_sym_comparison_operator_token10] = ACTIONS(629), + [aux_sym_comparison_operator_token11] = ACTIONS(629), + [aux_sym_comparison_operator_token12] = ACTIONS(629), + [aux_sym_comparison_operator_token13] = ACTIONS(629), + [aux_sym_comparison_operator_token14] = ACTIONS(629), + [aux_sym_comparison_operator_token15] = ACTIONS(629), + [aux_sym_comparison_operator_token16] = ACTIONS(629), + [aux_sym_comparison_operator_token17] = ACTIONS(629), + [aux_sym_comparison_operator_token18] = ACTIONS(629), + [aux_sym_comparison_operator_token19] = ACTIONS(629), + [aux_sym_comparison_operator_token20] = ACTIONS(629), + [aux_sym_comparison_operator_token21] = ACTIONS(629), + [aux_sym_comparison_operator_token22] = ACTIONS(629), + [aux_sym_comparison_operator_token23] = ACTIONS(629), + [aux_sym_comparison_operator_token24] = ACTIONS(629), + [aux_sym_comparison_operator_token25] = ACTIONS(629), + [aux_sym_comparison_operator_token26] = ACTIONS(629), + [aux_sym_comparison_operator_token27] = ACTIONS(629), + [aux_sym_comparison_operator_token28] = ACTIONS(631), + [aux_sym_comparison_operator_token29] = ACTIONS(629), + [aux_sym_comparison_operator_token30] = ACTIONS(629), + [aux_sym_comparison_operator_token31] = ACTIONS(629), + [aux_sym_comparison_operator_token32] = ACTIONS(629), + [aux_sym_comparison_operator_token33] = ACTIONS(629), + [aux_sym_comparison_operator_token34] = ACTIONS(631), + [aux_sym_comparison_operator_token35] = ACTIONS(629), + [aux_sym_comparison_operator_token36] = ACTIONS(629), + [aux_sym_comparison_operator_token37] = ACTIONS(629), + [aux_sym_comparison_operator_token38] = ACTIONS(629), + [aux_sym_comparison_operator_token39] = ACTIONS(629), + [aux_sym_comparison_operator_token40] = ACTIONS(629), + [aux_sym_comparison_operator_token41] = ACTIONS(629), + [aux_sym_comparison_operator_token42] = ACTIONS(629), + [aux_sym_comparison_operator_token43] = ACTIONS(629), + [aux_sym_comparison_operator_token44] = ACTIONS(629), + [aux_sym_comparison_operator_token45] = ACTIONS(629), + [aux_sym_comparison_operator_token46] = ACTIONS(629), + [aux_sym_comparison_operator_token47] = ACTIONS(629), + [aux_sym_comparison_operator_token48] = ACTIONS(629), + [aux_sym_comparison_operator_token49] = ACTIONS(629), + [aux_sym_comparison_operator_token50] = ACTIONS(629), + [aux_sym_format_operator_token1] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(629), + [anon_sym_PERCENT] = ACTIONS(631), + [aux_sym_logical_expression_token1] = ACTIONS(629), + [aux_sym_logical_expression_token2] = ACTIONS(629), + [aux_sym_logical_expression_token3] = ACTIONS(629), + [aux_sym_bitwise_expression_token1] = ACTIONS(629), + [aux_sym_bitwise_expression_token2] = ACTIONS(629), + [aux_sym_bitwise_expression_token3] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_DOT_DOT] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DOT2] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(629), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(629), }, [94] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_BANG_EQ] = ACTIONS(631), - [anon_sym_PLUS_EQ] = ACTIONS(631), - [anon_sym_STAR_EQ] = ACTIONS(631), - [anon_sym_SLASH_EQ] = ACTIONS(631), - [anon_sym_PERCENT_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(631), - [anon_sym_2_GT] = ACTIONS(633), - [anon_sym_2_GT_GT] = ACTIONS(631), - [anon_sym_3_GT] = ACTIONS(633), - [anon_sym_3_GT_GT] = ACTIONS(631), - [anon_sym_4_GT] = ACTIONS(633), - [anon_sym_4_GT_GT] = ACTIONS(631), - [anon_sym_5_GT] = ACTIONS(633), - [anon_sym_5_GT_GT] = ACTIONS(631), - [anon_sym_6_GT] = ACTIONS(633), - [anon_sym_6_GT_GT] = ACTIONS(631), - [anon_sym_STAR_GT] = ACTIONS(633), - [anon_sym_STAR_GT_GT] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_STAR_GT_AMP1] = ACTIONS(631), - [anon_sym_2_GT_AMP1] = ACTIONS(631), - [anon_sym_3_GT_AMP1] = ACTIONS(631), - [anon_sym_4_GT_AMP1] = ACTIONS(631), - [anon_sym_5_GT_AMP1] = ACTIONS(631), - [anon_sym_6_GT_AMP1] = ACTIONS(631), - [anon_sym_STAR_GT_AMP2] = ACTIONS(631), - [anon_sym_1_GT_AMP2] = ACTIONS(631), - [anon_sym_3_GT_AMP2] = ACTIONS(631), - [anon_sym_4_GT_AMP2] = ACTIONS(631), - [anon_sym_5_GT_AMP2] = ACTIONS(631), - [anon_sym_6_GT_AMP2] = ACTIONS(631), - [aux_sym_comparison_operator_token1] = ACTIONS(631), - [aux_sym_comparison_operator_token2] = ACTIONS(631), - [aux_sym_comparison_operator_token3] = ACTIONS(631), - [aux_sym_comparison_operator_token4] = ACTIONS(631), - [aux_sym_comparison_operator_token5] = ACTIONS(631), - [aux_sym_comparison_operator_token6] = ACTIONS(631), - [aux_sym_comparison_operator_token7] = ACTIONS(631), - [aux_sym_comparison_operator_token8] = ACTIONS(631), - [aux_sym_comparison_operator_token9] = ACTIONS(631), - [aux_sym_comparison_operator_token10] = ACTIONS(631), - [aux_sym_comparison_operator_token11] = ACTIONS(631), - [aux_sym_comparison_operator_token12] = ACTIONS(631), - [aux_sym_comparison_operator_token13] = ACTIONS(631), - [aux_sym_comparison_operator_token14] = ACTIONS(631), - [aux_sym_comparison_operator_token15] = ACTIONS(631), - [aux_sym_comparison_operator_token16] = ACTIONS(631), - [aux_sym_comparison_operator_token17] = ACTIONS(631), - [aux_sym_comparison_operator_token18] = ACTIONS(631), - [aux_sym_comparison_operator_token19] = ACTIONS(631), - [aux_sym_comparison_operator_token20] = ACTIONS(631), - [aux_sym_comparison_operator_token21] = ACTIONS(631), - [aux_sym_comparison_operator_token22] = ACTIONS(631), - [aux_sym_comparison_operator_token23] = ACTIONS(631), - [aux_sym_comparison_operator_token24] = ACTIONS(631), - [aux_sym_comparison_operator_token25] = ACTIONS(631), - [aux_sym_comparison_operator_token26] = ACTIONS(631), - [aux_sym_comparison_operator_token27] = ACTIONS(631), - [aux_sym_comparison_operator_token28] = ACTIONS(633), - [aux_sym_comparison_operator_token29] = ACTIONS(631), - [aux_sym_comparison_operator_token30] = ACTIONS(631), - [aux_sym_comparison_operator_token31] = ACTIONS(631), - [aux_sym_comparison_operator_token32] = ACTIONS(631), - [aux_sym_comparison_operator_token33] = ACTIONS(631), - [aux_sym_comparison_operator_token34] = ACTIONS(633), - [aux_sym_comparison_operator_token35] = ACTIONS(631), - [aux_sym_comparison_operator_token36] = ACTIONS(631), - [aux_sym_comparison_operator_token37] = ACTIONS(631), - [aux_sym_comparison_operator_token38] = ACTIONS(631), - [aux_sym_comparison_operator_token39] = ACTIONS(631), - [aux_sym_comparison_operator_token40] = ACTIONS(631), - [aux_sym_comparison_operator_token41] = ACTIONS(631), - [aux_sym_comparison_operator_token42] = ACTIONS(631), - [aux_sym_comparison_operator_token43] = ACTIONS(631), - [aux_sym_comparison_operator_token44] = ACTIONS(631), - [aux_sym_comparison_operator_token45] = ACTIONS(631), - [aux_sym_comparison_operator_token46] = ACTIONS(631), - [aux_sym_comparison_operator_token47] = ACTIONS(631), - [aux_sym_comparison_operator_token48] = ACTIONS(631), - [aux_sym_comparison_operator_token49] = ACTIONS(631), - [aux_sym_comparison_operator_token50] = ACTIONS(631), - [aux_sym_format_operator_token1] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(633), - [aux_sym_logical_expression_token1] = ACTIONS(631), - [aux_sym_logical_expression_token2] = ACTIONS(631), - [aux_sym_logical_expression_token3] = ACTIONS(631), - [aux_sym_bitwise_expression_token1] = ACTIONS(631), - [aux_sym_bitwise_expression_token2] = ACTIONS(631), - [aux_sym_bitwise_expression_token3] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_BSLASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT] = ACTIONS(631), - [anon_sym_PLUS_PLUS] = ACTIONS(631), - [anon_sym_DASH_DASH] = ACTIONS(631), - [anon_sym_DOT2] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym_RBRACK] = ACTIONS(631), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_BANG_EQ] = ACTIONS(633), + [anon_sym_PLUS_EQ] = ACTIONS(633), + [anon_sym_STAR_EQ] = ACTIONS(633), + [anon_sym_SLASH_EQ] = ACTIONS(633), + [anon_sym_PERCENT_EQ] = ACTIONS(633), + [anon_sym_DASH_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_2_GT] = ACTIONS(635), + [anon_sym_2_GT_GT] = ACTIONS(633), + [anon_sym_3_GT] = ACTIONS(635), + [anon_sym_3_GT_GT] = ACTIONS(633), + [anon_sym_4_GT] = ACTIONS(635), + [anon_sym_4_GT_GT] = ACTIONS(633), + [anon_sym_5_GT] = ACTIONS(635), + [anon_sym_5_GT_GT] = ACTIONS(633), + [anon_sym_6_GT] = ACTIONS(635), + [anon_sym_6_GT_GT] = ACTIONS(633), + [anon_sym_STAR_GT] = ACTIONS(635), + [anon_sym_STAR_GT_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_STAR_GT_AMP1] = ACTIONS(633), + [anon_sym_2_GT_AMP1] = ACTIONS(633), + [anon_sym_3_GT_AMP1] = ACTIONS(633), + [anon_sym_4_GT_AMP1] = ACTIONS(633), + [anon_sym_5_GT_AMP1] = ACTIONS(633), + [anon_sym_6_GT_AMP1] = ACTIONS(633), + [anon_sym_STAR_GT_AMP2] = ACTIONS(633), + [anon_sym_1_GT_AMP2] = ACTIONS(633), + [anon_sym_3_GT_AMP2] = ACTIONS(633), + [anon_sym_4_GT_AMP2] = ACTIONS(633), + [anon_sym_5_GT_AMP2] = ACTIONS(633), + [anon_sym_6_GT_AMP2] = ACTIONS(633), + [aux_sym_comparison_operator_token1] = ACTIONS(633), + [aux_sym_comparison_operator_token2] = ACTIONS(633), + [aux_sym_comparison_operator_token3] = ACTIONS(633), + [aux_sym_comparison_operator_token4] = ACTIONS(633), + [aux_sym_comparison_operator_token5] = ACTIONS(633), + [aux_sym_comparison_operator_token6] = ACTIONS(633), + [aux_sym_comparison_operator_token7] = ACTIONS(633), + [aux_sym_comparison_operator_token8] = ACTIONS(633), + [aux_sym_comparison_operator_token9] = ACTIONS(633), + [aux_sym_comparison_operator_token10] = ACTIONS(633), + [aux_sym_comparison_operator_token11] = ACTIONS(633), + [aux_sym_comparison_operator_token12] = ACTIONS(633), + [aux_sym_comparison_operator_token13] = ACTIONS(633), + [aux_sym_comparison_operator_token14] = ACTIONS(633), + [aux_sym_comparison_operator_token15] = ACTIONS(633), + [aux_sym_comparison_operator_token16] = ACTIONS(633), + [aux_sym_comparison_operator_token17] = ACTIONS(633), + [aux_sym_comparison_operator_token18] = ACTIONS(633), + [aux_sym_comparison_operator_token19] = ACTIONS(633), + [aux_sym_comparison_operator_token20] = ACTIONS(633), + [aux_sym_comparison_operator_token21] = ACTIONS(633), + [aux_sym_comparison_operator_token22] = ACTIONS(633), + [aux_sym_comparison_operator_token23] = ACTIONS(633), + [aux_sym_comparison_operator_token24] = ACTIONS(633), + [aux_sym_comparison_operator_token25] = ACTIONS(633), + [aux_sym_comparison_operator_token26] = ACTIONS(633), + [aux_sym_comparison_operator_token27] = ACTIONS(633), + [aux_sym_comparison_operator_token28] = ACTIONS(635), + [aux_sym_comparison_operator_token29] = ACTIONS(633), + [aux_sym_comparison_operator_token30] = ACTIONS(633), + [aux_sym_comparison_operator_token31] = ACTIONS(633), + [aux_sym_comparison_operator_token32] = ACTIONS(633), + [aux_sym_comparison_operator_token33] = ACTIONS(633), + [aux_sym_comparison_operator_token34] = ACTIONS(635), + [aux_sym_comparison_operator_token35] = ACTIONS(633), + [aux_sym_comparison_operator_token36] = ACTIONS(633), + [aux_sym_comparison_operator_token37] = ACTIONS(633), + [aux_sym_comparison_operator_token38] = ACTIONS(633), + [aux_sym_comparison_operator_token39] = ACTIONS(633), + [aux_sym_comparison_operator_token40] = ACTIONS(633), + [aux_sym_comparison_operator_token41] = ACTIONS(633), + [aux_sym_comparison_operator_token42] = ACTIONS(633), + [aux_sym_comparison_operator_token43] = ACTIONS(633), + [aux_sym_comparison_operator_token44] = ACTIONS(633), + [aux_sym_comparison_operator_token45] = ACTIONS(633), + [aux_sym_comparison_operator_token46] = ACTIONS(633), + [aux_sym_comparison_operator_token47] = ACTIONS(633), + [aux_sym_comparison_operator_token48] = ACTIONS(633), + [aux_sym_comparison_operator_token49] = ACTIONS(633), + [aux_sym_comparison_operator_token50] = ACTIONS(633), + [aux_sym_format_operator_token1] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(635), + [aux_sym_logical_expression_token1] = ACTIONS(633), + [aux_sym_logical_expression_token2] = ACTIONS(633), + [aux_sym_logical_expression_token3] = ACTIONS(633), + [aux_sym_bitwise_expression_token1] = ACTIONS(633), + [aux_sym_bitwise_expression_token2] = ACTIONS(633), + [aux_sym_bitwise_expression_token3] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_DOT_DOT] = ACTIONS(633), + [anon_sym_PLUS_PLUS] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(633), + [anon_sym_DOT2] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(633), + [anon_sym_RBRACK] = ACTIONS(633), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(633), }, [95] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_BANG_EQ] = ACTIONS(635), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(635), - [anon_sym_2_GT] = ACTIONS(637), - [anon_sym_2_GT_GT] = ACTIONS(635), - [anon_sym_3_GT] = ACTIONS(637), - [anon_sym_3_GT_GT] = ACTIONS(635), - [anon_sym_4_GT] = ACTIONS(637), - [anon_sym_4_GT_GT] = ACTIONS(635), - [anon_sym_5_GT] = ACTIONS(637), - [anon_sym_5_GT_GT] = ACTIONS(635), - [anon_sym_6_GT] = ACTIONS(637), - [anon_sym_6_GT_GT] = ACTIONS(635), - [anon_sym_STAR_GT] = ACTIONS(637), - [anon_sym_STAR_GT_GT] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_STAR_GT_AMP1] = ACTIONS(635), - [anon_sym_2_GT_AMP1] = ACTIONS(635), - [anon_sym_3_GT_AMP1] = ACTIONS(635), - [anon_sym_4_GT_AMP1] = ACTIONS(635), - [anon_sym_5_GT_AMP1] = ACTIONS(635), - [anon_sym_6_GT_AMP1] = ACTIONS(635), - [anon_sym_STAR_GT_AMP2] = ACTIONS(635), - [anon_sym_1_GT_AMP2] = ACTIONS(635), - [anon_sym_3_GT_AMP2] = ACTIONS(635), - [anon_sym_4_GT_AMP2] = ACTIONS(635), - [anon_sym_5_GT_AMP2] = ACTIONS(635), - [anon_sym_6_GT_AMP2] = ACTIONS(635), - [aux_sym_comparison_operator_token1] = ACTIONS(635), - [aux_sym_comparison_operator_token2] = ACTIONS(635), - [aux_sym_comparison_operator_token3] = ACTIONS(635), - [aux_sym_comparison_operator_token4] = ACTIONS(635), - [aux_sym_comparison_operator_token5] = ACTIONS(635), - [aux_sym_comparison_operator_token6] = ACTIONS(635), - [aux_sym_comparison_operator_token7] = ACTIONS(635), - [aux_sym_comparison_operator_token8] = ACTIONS(635), - [aux_sym_comparison_operator_token9] = ACTIONS(635), - [aux_sym_comparison_operator_token10] = ACTIONS(635), - [aux_sym_comparison_operator_token11] = ACTIONS(635), - [aux_sym_comparison_operator_token12] = ACTIONS(635), - [aux_sym_comparison_operator_token13] = ACTIONS(635), - [aux_sym_comparison_operator_token14] = ACTIONS(635), - [aux_sym_comparison_operator_token15] = ACTIONS(635), - [aux_sym_comparison_operator_token16] = ACTIONS(635), - [aux_sym_comparison_operator_token17] = ACTIONS(635), - [aux_sym_comparison_operator_token18] = ACTIONS(635), - [aux_sym_comparison_operator_token19] = ACTIONS(635), - [aux_sym_comparison_operator_token20] = ACTIONS(635), - [aux_sym_comparison_operator_token21] = ACTIONS(635), - [aux_sym_comparison_operator_token22] = ACTIONS(635), - [aux_sym_comparison_operator_token23] = ACTIONS(635), - [aux_sym_comparison_operator_token24] = ACTIONS(635), - [aux_sym_comparison_operator_token25] = ACTIONS(635), - [aux_sym_comparison_operator_token26] = ACTIONS(635), - [aux_sym_comparison_operator_token27] = ACTIONS(635), - [aux_sym_comparison_operator_token28] = ACTIONS(637), - [aux_sym_comparison_operator_token29] = ACTIONS(635), - [aux_sym_comparison_operator_token30] = ACTIONS(635), - [aux_sym_comparison_operator_token31] = ACTIONS(635), - [aux_sym_comparison_operator_token32] = ACTIONS(635), - [aux_sym_comparison_operator_token33] = ACTIONS(635), - [aux_sym_comparison_operator_token34] = ACTIONS(637), - [aux_sym_comparison_operator_token35] = ACTIONS(635), - [aux_sym_comparison_operator_token36] = ACTIONS(635), - [aux_sym_comparison_operator_token37] = ACTIONS(635), - [aux_sym_comparison_operator_token38] = ACTIONS(635), - [aux_sym_comparison_operator_token39] = ACTIONS(635), - [aux_sym_comparison_operator_token40] = ACTIONS(635), - [aux_sym_comparison_operator_token41] = ACTIONS(635), - [aux_sym_comparison_operator_token42] = ACTIONS(635), - [aux_sym_comparison_operator_token43] = ACTIONS(635), - [aux_sym_comparison_operator_token44] = ACTIONS(635), - [aux_sym_comparison_operator_token45] = ACTIONS(635), - [aux_sym_comparison_operator_token46] = ACTIONS(635), - [aux_sym_comparison_operator_token47] = ACTIONS(635), - [aux_sym_comparison_operator_token48] = ACTIONS(635), - [aux_sym_comparison_operator_token49] = ACTIONS(635), - [aux_sym_comparison_operator_token50] = ACTIONS(635), - [aux_sym_format_operator_token1] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PERCENT] = ACTIONS(637), - [aux_sym_logical_expression_token1] = ACTIONS(635), - [aux_sym_logical_expression_token2] = ACTIONS(635), - [aux_sym_logical_expression_token3] = ACTIONS(635), - [aux_sym_bitwise_expression_token1] = ACTIONS(635), - [aux_sym_bitwise_expression_token2] = ACTIONS(635), - [aux_sym_bitwise_expression_token3] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(635), - [anon_sym_DASH_DASH] = ACTIONS(635), - [anon_sym_DOT2] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_RBRACK] = ACTIONS(635), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_2_GT] = ACTIONS(639), + [anon_sym_2_GT_GT] = ACTIONS(637), + [anon_sym_3_GT] = ACTIONS(639), + [anon_sym_3_GT_GT] = ACTIONS(637), + [anon_sym_4_GT] = ACTIONS(639), + [anon_sym_4_GT_GT] = ACTIONS(637), + [anon_sym_5_GT] = ACTIONS(639), + [anon_sym_5_GT_GT] = ACTIONS(637), + [anon_sym_6_GT] = ACTIONS(639), + [anon_sym_6_GT_GT] = ACTIONS(637), + [anon_sym_STAR_GT] = ACTIONS(639), + [anon_sym_STAR_GT_GT] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_STAR_GT_AMP1] = ACTIONS(637), + [anon_sym_2_GT_AMP1] = ACTIONS(637), + [anon_sym_3_GT_AMP1] = ACTIONS(637), + [anon_sym_4_GT_AMP1] = ACTIONS(637), + [anon_sym_5_GT_AMP1] = ACTIONS(637), + [anon_sym_6_GT_AMP1] = ACTIONS(637), + [anon_sym_STAR_GT_AMP2] = ACTIONS(637), + [anon_sym_1_GT_AMP2] = ACTIONS(637), + [anon_sym_3_GT_AMP2] = ACTIONS(637), + [anon_sym_4_GT_AMP2] = ACTIONS(637), + [anon_sym_5_GT_AMP2] = ACTIONS(637), + [anon_sym_6_GT_AMP2] = ACTIONS(637), + [aux_sym_comparison_operator_token1] = ACTIONS(637), + [aux_sym_comparison_operator_token2] = ACTIONS(637), + [aux_sym_comparison_operator_token3] = ACTIONS(637), + [aux_sym_comparison_operator_token4] = ACTIONS(637), + [aux_sym_comparison_operator_token5] = ACTIONS(637), + [aux_sym_comparison_operator_token6] = ACTIONS(637), + [aux_sym_comparison_operator_token7] = ACTIONS(637), + [aux_sym_comparison_operator_token8] = ACTIONS(637), + [aux_sym_comparison_operator_token9] = ACTIONS(637), + [aux_sym_comparison_operator_token10] = ACTIONS(637), + [aux_sym_comparison_operator_token11] = ACTIONS(637), + [aux_sym_comparison_operator_token12] = ACTIONS(637), + [aux_sym_comparison_operator_token13] = ACTIONS(637), + [aux_sym_comparison_operator_token14] = ACTIONS(637), + [aux_sym_comparison_operator_token15] = ACTIONS(637), + [aux_sym_comparison_operator_token16] = ACTIONS(637), + [aux_sym_comparison_operator_token17] = ACTIONS(637), + [aux_sym_comparison_operator_token18] = ACTIONS(637), + [aux_sym_comparison_operator_token19] = ACTIONS(637), + [aux_sym_comparison_operator_token20] = ACTIONS(637), + [aux_sym_comparison_operator_token21] = ACTIONS(637), + [aux_sym_comparison_operator_token22] = ACTIONS(637), + [aux_sym_comparison_operator_token23] = ACTIONS(637), + [aux_sym_comparison_operator_token24] = ACTIONS(637), + [aux_sym_comparison_operator_token25] = ACTIONS(637), + [aux_sym_comparison_operator_token26] = ACTIONS(637), + [aux_sym_comparison_operator_token27] = ACTIONS(637), + [aux_sym_comparison_operator_token28] = ACTIONS(639), + [aux_sym_comparison_operator_token29] = ACTIONS(637), + [aux_sym_comparison_operator_token30] = ACTIONS(637), + [aux_sym_comparison_operator_token31] = ACTIONS(637), + [aux_sym_comparison_operator_token32] = ACTIONS(637), + [aux_sym_comparison_operator_token33] = ACTIONS(637), + [aux_sym_comparison_operator_token34] = ACTIONS(639), + [aux_sym_comparison_operator_token35] = ACTIONS(637), + [aux_sym_comparison_operator_token36] = ACTIONS(637), + [aux_sym_comparison_operator_token37] = ACTIONS(637), + [aux_sym_comparison_operator_token38] = ACTIONS(637), + [aux_sym_comparison_operator_token39] = ACTIONS(637), + [aux_sym_comparison_operator_token40] = ACTIONS(637), + [aux_sym_comparison_operator_token41] = ACTIONS(637), + [aux_sym_comparison_operator_token42] = ACTIONS(637), + [aux_sym_comparison_operator_token43] = ACTIONS(637), + [aux_sym_comparison_operator_token44] = ACTIONS(637), + [aux_sym_comparison_operator_token45] = ACTIONS(637), + [aux_sym_comparison_operator_token46] = ACTIONS(637), + [aux_sym_comparison_operator_token47] = ACTIONS(637), + [aux_sym_comparison_operator_token48] = ACTIONS(637), + [aux_sym_comparison_operator_token49] = ACTIONS(637), + [aux_sym_comparison_operator_token50] = ACTIONS(637), + [aux_sym_format_operator_token1] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [aux_sym_logical_expression_token1] = ACTIONS(637), + [aux_sym_logical_expression_token2] = ACTIONS(637), + [aux_sym_logical_expression_token3] = ACTIONS(637), + [aux_sym_bitwise_expression_token1] = ACTIONS(637), + [aux_sym_bitwise_expression_token2] = ACTIONS(637), + [aux_sym_bitwise_expression_token3] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_DOT2] = ACTIONS(639), + [anon_sym_COLON_COLON] = ACTIONS(637), + [anon_sym_RBRACK] = ACTIONS(637), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(637), }, [96] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_2_GT] = ACTIONS(641), - [anon_sym_2_GT_GT] = ACTIONS(639), - [anon_sym_3_GT] = ACTIONS(641), - [anon_sym_3_GT_GT] = ACTIONS(639), - [anon_sym_4_GT] = ACTIONS(641), - [anon_sym_4_GT_GT] = ACTIONS(639), - [anon_sym_5_GT] = ACTIONS(641), - [anon_sym_5_GT_GT] = ACTIONS(639), - [anon_sym_6_GT] = ACTIONS(641), - [anon_sym_6_GT_GT] = ACTIONS(639), - [anon_sym_STAR_GT] = ACTIONS(641), - [anon_sym_STAR_GT_GT] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_STAR_GT_AMP1] = ACTIONS(639), - [anon_sym_2_GT_AMP1] = ACTIONS(639), - [anon_sym_3_GT_AMP1] = ACTIONS(639), - [anon_sym_4_GT_AMP1] = ACTIONS(639), - [anon_sym_5_GT_AMP1] = ACTIONS(639), - [anon_sym_6_GT_AMP1] = ACTIONS(639), - [anon_sym_STAR_GT_AMP2] = ACTIONS(639), - [anon_sym_1_GT_AMP2] = ACTIONS(639), - [anon_sym_3_GT_AMP2] = ACTIONS(639), - [anon_sym_4_GT_AMP2] = ACTIONS(639), - [anon_sym_5_GT_AMP2] = ACTIONS(639), - [anon_sym_6_GT_AMP2] = ACTIONS(639), - [aux_sym_comparison_operator_token1] = ACTIONS(639), - [aux_sym_comparison_operator_token2] = ACTIONS(639), - [aux_sym_comparison_operator_token3] = ACTIONS(639), - [aux_sym_comparison_operator_token4] = ACTIONS(639), - [aux_sym_comparison_operator_token5] = ACTIONS(639), - [aux_sym_comparison_operator_token6] = ACTIONS(639), - [aux_sym_comparison_operator_token7] = ACTIONS(639), - [aux_sym_comparison_operator_token8] = ACTIONS(639), - [aux_sym_comparison_operator_token9] = ACTIONS(639), - [aux_sym_comparison_operator_token10] = ACTIONS(639), - [aux_sym_comparison_operator_token11] = ACTIONS(639), - [aux_sym_comparison_operator_token12] = ACTIONS(639), - [aux_sym_comparison_operator_token13] = ACTIONS(639), - [aux_sym_comparison_operator_token14] = ACTIONS(639), - [aux_sym_comparison_operator_token15] = ACTIONS(639), - [aux_sym_comparison_operator_token16] = ACTIONS(639), - [aux_sym_comparison_operator_token17] = ACTIONS(639), - [aux_sym_comparison_operator_token18] = ACTIONS(639), - [aux_sym_comparison_operator_token19] = ACTIONS(639), - [aux_sym_comparison_operator_token20] = ACTIONS(639), - [aux_sym_comparison_operator_token21] = ACTIONS(639), - [aux_sym_comparison_operator_token22] = ACTIONS(639), - [aux_sym_comparison_operator_token23] = ACTIONS(639), - [aux_sym_comparison_operator_token24] = ACTIONS(639), - [aux_sym_comparison_operator_token25] = ACTIONS(639), - [aux_sym_comparison_operator_token26] = ACTIONS(639), - [aux_sym_comparison_operator_token27] = ACTIONS(639), - [aux_sym_comparison_operator_token28] = ACTIONS(641), - [aux_sym_comparison_operator_token29] = ACTIONS(639), - [aux_sym_comparison_operator_token30] = ACTIONS(639), - [aux_sym_comparison_operator_token31] = ACTIONS(639), - [aux_sym_comparison_operator_token32] = ACTIONS(639), - [aux_sym_comparison_operator_token33] = ACTIONS(639), - [aux_sym_comparison_operator_token34] = ACTIONS(641), - [aux_sym_comparison_operator_token35] = ACTIONS(639), - [aux_sym_comparison_operator_token36] = ACTIONS(639), - [aux_sym_comparison_operator_token37] = ACTIONS(639), - [aux_sym_comparison_operator_token38] = ACTIONS(639), - [aux_sym_comparison_operator_token39] = ACTIONS(639), - [aux_sym_comparison_operator_token40] = ACTIONS(639), - [aux_sym_comparison_operator_token41] = ACTIONS(639), - [aux_sym_comparison_operator_token42] = ACTIONS(639), - [aux_sym_comparison_operator_token43] = ACTIONS(639), - [aux_sym_comparison_operator_token44] = ACTIONS(639), - [aux_sym_comparison_operator_token45] = ACTIONS(639), - [aux_sym_comparison_operator_token46] = ACTIONS(639), - [aux_sym_comparison_operator_token47] = ACTIONS(639), - [aux_sym_comparison_operator_token48] = ACTIONS(639), - [aux_sym_comparison_operator_token49] = ACTIONS(639), - [aux_sym_comparison_operator_token50] = ACTIONS(639), - [aux_sym_format_operator_token1] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(641), - [aux_sym_logical_expression_token1] = ACTIONS(639), - [aux_sym_logical_expression_token2] = ACTIONS(639), - [aux_sym_logical_expression_token3] = ACTIONS(639), - [aux_sym_bitwise_expression_token1] = ACTIONS(639), - [aux_sym_bitwise_expression_token2] = ACTIONS(639), - [aux_sym_bitwise_expression_token3] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT] = ACTIONS(639), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_DOT2] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(639), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(641), + [anon_sym_STAR_EQ] = ACTIONS(641), + [anon_sym_SLASH_EQ] = ACTIONS(641), + [anon_sym_PERCENT_EQ] = ACTIONS(641), + [anon_sym_DASH_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(641), + [anon_sym_2_GT] = ACTIONS(643), + [anon_sym_2_GT_GT] = ACTIONS(641), + [anon_sym_3_GT] = ACTIONS(643), + [anon_sym_3_GT_GT] = ACTIONS(641), + [anon_sym_4_GT] = ACTIONS(643), + [anon_sym_4_GT_GT] = ACTIONS(641), + [anon_sym_5_GT] = ACTIONS(643), + [anon_sym_5_GT_GT] = ACTIONS(641), + [anon_sym_6_GT] = ACTIONS(643), + [anon_sym_6_GT_GT] = ACTIONS(641), + [anon_sym_STAR_GT] = ACTIONS(643), + [anon_sym_STAR_GT_GT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_STAR_GT_AMP1] = ACTIONS(641), + [anon_sym_2_GT_AMP1] = ACTIONS(641), + [anon_sym_3_GT_AMP1] = ACTIONS(641), + [anon_sym_4_GT_AMP1] = ACTIONS(641), + [anon_sym_5_GT_AMP1] = ACTIONS(641), + [anon_sym_6_GT_AMP1] = ACTIONS(641), + [anon_sym_STAR_GT_AMP2] = ACTIONS(641), + [anon_sym_1_GT_AMP2] = ACTIONS(641), + [anon_sym_3_GT_AMP2] = ACTIONS(641), + [anon_sym_4_GT_AMP2] = ACTIONS(641), + [anon_sym_5_GT_AMP2] = ACTIONS(641), + [anon_sym_6_GT_AMP2] = ACTIONS(641), + [aux_sym_comparison_operator_token1] = ACTIONS(641), + [aux_sym_comparison_operator_token2] = ACTIONS(641), + [aux_sym_comparison_operator_token3] = ACTIONS(641), + [aux_sym_comparison_operator_token4] = ACTIONS(641), + [aux_sym_comparison_operator_token5] = ACTIONS(641), + [aux_sym_comparison_operator_token6] = ACTIONS(641), + [aux_sym_comparison_operator_token7] = ACTIONS(641), + [aux_sym_comparison_operator_token8] = ACTIONS(641), + [aux_sym_comparison_operator_token9] = ACTIONS(641), + [aux_sym_comparison_operator_token10] = ACTIONS(641), + [aux_sym_comparison_operator_token11] = ACTIONS(641), + [aux_sym_comparison_operator_token12] = ACTIONS(641), + [aux_sym_comparison_operator_token13] = ACTIONS(641), + [aux_sym_comparison_operator_token14] = ACTIONS(641), + [aux_sym_comparison_operator_token15] = ACTIONS(641), + [aux_sym_comparison_operator_token16] = ACTIONS(641), + [aux_sym_comparison_operator_token17] = ACTIONS(641), + [aux_sym_comparison_operator_token18] = ACTIONS(641), + [aux_sym_comparison_operator_token19] = ACTIONS(641), + [aux_sym_comparison_operator_token20] = ACTIONS(641), + [aux_sym_comparison_operator_token21] = ACTIONS(641), + [aux_sym_comparison_operator_token22] = ACTIONS(641), + [aux_sym_comparison_operator_token23] = ACTIONS(641), + [aux_sym_comparison_operator_token24] = ACTIONS(641), + [aux_sym_comparison_operator_token25] = ACTIONS(641), + [aux_sym_comparison_operator_token26] = ACTIONS(641), + [aux_sym_comparison_operator_token27] = ACTIONS(641), + [aux_sym_comparison_operator_token28] = ACTIONS(643), + [aux_sym_comparison_operator_token29] = ACTIONS(641), + [aux_sym_comparison_operator_token30] = ACTIONS(641), + [aux_sym_comparison_operator_token31] = ACTIONS(641), + [aux_sym_comparison_operator_token32] = ACTIONS(641), + [aux_sym_comparison_operator_token33] = ACTIONS(641), + [aux_sym_comparison_operator_token34] = ACTIONS(643), + [aux_sym_comparison_operator_token35] = ACTIONS(641), + [aux_sym_comparison_operator_token36] = ACTIONS(641), + [aux_sym_comparison_operator_token37] = ACTIONS(641), + [aux_sym_comparison_operator_token38] = ACTIONS(641), + [aux_sym_comparison_operator_token39] = ACTIONS(641), + [aux_sym_comparison_operator_token40] = ACTIONS(641), + [aux_sym_comparison_operator_token41] = ACTIONS(641), + [aux_sym_comparison_operator_token42] = ACTIONS(641), + [aux_sym_comparison_operator_token43] = ACTIONS(641), + [aux_sym_comparison_operator_token44] = ACTIONS(641), + [aux_sym_comparison_operator_token45] = ACTIONS(641), + [aux_sym_comparison_operator_token46] = ACTIONS(641), + [aux_sym_comparison_operator_token47] = ACTIONS(641), + [aux_sym_comparison_operator_token48] = ACTIONS(641), + [aux_sym_comparison_operator_token49] = ACTIONS(641), + [aux_sym_comparison_operator_token50] = ACTIONS(641), + [aux_sym_format_operator_token1] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_PERCENT] = ACTIONS(643), + [aux_sym_logical_expression_token1] = ACTIONS(641), + [aux_sym_logical_expression_token2] = ACTIONS(641), + [aux_sym_logical_expression_token3] = ACTIONS(641), + [aux_sym_bitwise_expression_token1] = ACTIONS(641), + [aux_sym_bitwise_expression_token2] = ACTIONS(641), + [aux_sym_bitwise_expression_token3] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_DOT2] = ACTIONS(643), + [anon_sym_COLON_COLON] = ACTIONS(641), + [anon_sym_RBRACK] = ACTIONS(641), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(641), }, [97] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_2_GT] = ACTIONS(645), - [anon_sym_2_GT_GT] = ACTIONS(643), - [anon_sym_3_GT] = ACTIONS(645), - [anon_sym_3_GT_GT] = ACTIONS(643), - [anon_sym_4_GT] = ACTIONS(645), - [anon_sym_4_GT_GT] = ACTIONS(643), - [anon_sym_5_GT] = ACTIONS(645), - [anon_sym_5_GT_GT] = ACTIONS(643), - [anon_sym_6_GT] = ACTIONS(645), - [anon_sym_6_GT_GT] = ACTIONS(643), - [anon_sym_STAR_GT] = ACTIONS(645), - [anon_sym_STAR_GT_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_STAR_GT_AMP1] = ACTIONS(643), - [anon_sym_2_GT_AMP1] = ACTIONS(643), - [anon_sym_3_GT_AMP1] = ACTIONS(643), - [anon_sym_4_GT_AMP1] = ACTIONS(643), - [anon_sym_5_GT_AMP1] = ACTIONS(643), - [anon_sym_6_GT_AMP1] = ACTIONS(643), - [anon_sym_STAR_GT_AMP2] = ACTIONS(643), - [anon_sym_1_GT_AMP2] = ACTIONS(643), - [anon_sym_3_GT_AMP2] = ACTIONS(643), - [anon_sym_4_GT_AMP2] = ACTIONS(643), - [anon_sym_5_GT_AMP2] = ACTIONS(643), - [anon_sym_6_GT_AMP2] = ACTIONS(643), - [aux_sym_comparison_operator_token1] = ACTIONS(643), - [aux_sym_comparison_operator_token2] = ACTIONS(643), - [aux_sym_comparison_operator_token3] = ACTIONS(643), - [aux_sym_comparison_operator_token4] = ACTIONS(643), - [aux_sym_comparison_operator_token5] = ACTIONS(643), - [aux_sym_comparison_operator_token6] = ACTIONS(643), - [aux_sym_comparison_operator_token7] = ACTIONS(643), - [aux_sym_comparison_operator_token8] = ACTIONS(643), - [aux_sym_comparison_operator_token9] = ACTIONS(643), - [aux_sym_comparison_operator_token10] = ACTIONS(643), - [aux_sym_comparison_operator_token11] = ACTIONS(643), - [aux_sym_comparison_operator_token12] = ACTIONS(643), - [aux_sym_comparison_operator_token13] = ACTIONS(643), - [aux_sym_comparison_operator_token14] = ACTIONS(643), - [aux_sym_comparison_operator_token15] = ACTIONS(643), - [aux_sym_comparison_operator_token16] = ACTIONS(643), - [aux_sym_comparison_operator_token17] = ACTIONS(643), - [aux_sym_comparison_operator_token18] = ACTIONS(643), - [aux_sym_comparison_operator_token19] = ACTIONS(643), - [aux_sym_comparison_operator_token20] = ACTIONS(643), - [aux_sym_comparison_operator_token21] = ACTIONS(643), - [aux_sym_comparison_operator_token22] = ACTIONS(643), - [aux_sym_comparison_operator_token23] = ACTIONS(643), - [aux_sym_comparison_operator_token24] = ACTIONS(643), - [aux_sym_comparison_operator_token25] = ACTIONS(643), - [aux_sym_comparison_operator_token26] = ACTIONS(643), - [aux_sym_comparison_operator_token27] = ACTIONS(643), - [aux_sym_comparison_operator_token28] = ACTIONS(645), - [aux_sym_comparison_operator_token29] = ACTIONS(643), - [aux_sym_comparison_operator_token30] = ACTIONS(643), - [aux_sym_comparison_operator_token31] = ACTIONS(643), - [aux_sym_comparison_operator_token32] = ACTIONS(643), - [aux_sym_comparison_operator_token33] = ACTIONS(643), - [aux_sym_comparison_operator_token34] = ACTIONS(645), - [aux_sym_comparison_operator_token35] = ACTIONS(643), - [aux_sym_comparison_operator_token36] = ACTIONS(643), - [aux_sym_comparison_operator_token37] = ACTIONS(643), - [aux_sym_comparison_operator_token38] = ACTIONS(643), - [aux_sym_comparison_operator_token39] = ACTIONS(643), - [aux_sym_comparison_operator_token40] = ACTIONS(643), - [aux_sym_comparison_operator_token41] = ACTIONS(643), - [aux_sym_comparison_operator_token42] = ACTIONS(643), - [aux_sym_comparison_operator_token43] = ACTIONS(643), - [aux_sym_comparison_operator_token44] = ACTIONS(643), - [aux_sym_comparison_operator_token45] = ACTIONS(643), - [aux_sym_comparison_operator_token46] = ACTIONS(643), - [aux_sym_comparison_operator_token47] = ACTIONS(643), - [aux_sym_comparison_operator_token48] = ACTIONS(643), - [aux_sym_comparison_operator_token49] = ACTIONS(643), - [aux_sym_comparison_operator_token50] = ACTIONS(643), - [aux_sym_format_operator_token1] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(643), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(645), - [aux_sym_logical_expression_token1] = ACTIONS(643), - [aux_sym_logical_expression_token2] = ACTIONS(643), - [aux_sym_logical_expression_token3] = ACTIONS(643), - [aux_sym_bitwise_expression_token1] = ACTIONS(643), - [aux_sym_bitwise_expression_token2] = ACTIONS(643), - [aux_sym_bitwise_expression_token3] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(643), - [anon_sym_DOT2] = ACTIONS(645), - [anon_sym_COLON_COLON] = ACTIONS(643), - [anon_sym_RBRACK] = ACTIONS(643), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_2_GT] = ACTIONS(647), + [anon_sym_2_GT_GT] = ACTIONS(645), + [anon_sym_3_GT] = ACTIONS(647), + [anon_sym_3_GT_GT] = ACTIONS(645), + [anon_sym_4_GT] = ACTIONS(647), + [anon_sym_4_GT_GT] = ACTIONS(645), + [anon_sym_5_GT] = ACTIONS(647), + [anon_sym_5_GT_GT] = ACTIONS(645), + [anon_sym_6_GT] = ACTIONS(647), + [anon_sym_6_GT_GT] = ACTIONS(645), + [anon_sym_STAR_GT] = ACTIONS(647), + [anon_sym_STAR_GT_GT] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_STAR_GT_AMP1] = ACTIONS(645), + [anon_sym_2_GT_AMP1] = ACTIONS(645), + [anon_sym_3_GT_AMP1] = ACTIONS(645), + [anon_sym_4_GT_AMP1] = ACTIONS(645), + [anon_sym_5_GT_AMP1] = ACTIONS(645), + [anon_sym_6_GT_AMP1] = ACTIONS(645), + [anon_sym_STAR_GT_AMP2] = ACTIONS(645), + [anon_sym_1_GT_AMP2] = ACTIONS(645), + [anon_sym_3_GT_AMP2] = ACTIONS(645), + [anon_sym_4_GT_AMP2] = ACTIONS(645), + [anon_sym_5_GT_AMP2] = ACTIONS(645), + [anon_sym_6_GT_AMP2] = ACTIONS(645), + [aux_sym_comparison_operator_token1] = ACTIONS(645), + [aux_sym_comparison_operator_token2] = ACTIONS(645), + [aux_sym_comparison_operator_token3] = ACTIONS(645), + [aux_sym_comparison_operator_token4] = ACTIONS(645), + [aux_sym_comparison_operator_token5] = ACTIONS(645), + [aux_sym_comparison_operator_token6] = ACTIONS(645), + [aux_sym_comparison_operator_token7] = ACTIONS(645), + [aux_sym_comparison_operator_token8] = ACTIONS(645), + [aux_sym_comparison_operator_token9] = ACTIONS(645), + [aux_sym_comparison_operator_token10] = ACTIONS(645), + [aux_sym_comparison_operator_token11] = ACTIONS(645), + [aux_sym_comparison_operator_token12] = ACTIONS(645), + [aux_sym_comparison_operator_token13] = ACTIONS(645), + [aux_sym_comparison_operator_token14] = ACTIONS(645), + [aux_sym_comparison_operator_token15] = ACTIONS(645), + [aux_sym_comparison_operator_token16] = ACTIONS(645), + [aux_sym_comparison_operator_token17] = ACTIONS(645), + [aux_sym_comparison_operator_token18] = ACTIONS(645), + [aux_sym_comparison_operator_token19] = ACTIONS(645), + [aux_sym_comparison_operator_token20] = ACTIONS(645), + [aux_sym_comparison_operator_token21] = ACTIONS(645), + [aux_sym_comparison_operator_token22] = ACTIONS(645), + [aux_sym_comparison_operator_token23] = ACTIONS(645), + [aux_sym_comparison_operator_token24] = ACTIONS(645), + [aux_sym_comparison_operator_token25] = ACTIONS(645), + [aux_sym_comparison_operator_token26] = ACTIONS(645), + [aux_sym_comparison_operator_token27] = ACTIONS(645), + [aux_sym_comparison_operator_token28] = ACTIONS(647), + [aux_sym_comparison_operator_token29] = ACTIONS(645), + [aux_sym_comparison_operator_token30] = ACTIONS(645), + [aux_sym_comparison_operator_token31] = ACTIONS(645), + [aux_sym_comparison_operator_token32] = ACTIONS(645), + [aux_sym_comparison_operator_token33] = ACTIONS(645), + [aux_sym_comparison_operator_token34] = ACTIONS(647), + [aux_sym_comparison_operator_token35] = ACTIONS(645), + [aux_sym_comparison_operator_token36] = ACTIONS(645), + [aux_sym_comparison_operator_token37] = ACTIONS(645), + [aux_sym_comparison_operator_token38] = ACTIONS(645), + [aux_sym_comparison_operator_token39] = ACTIONS(645), + [aux_sym_comparison_operator_token40] = ACTIONS(645), + [aux_sym_comparison_operator_token41] = ACTIONS(645), + [aux_sym_comparison_operator_token42] = ACTIONS(645), + [aux_sym_comparison_operator_token43] = ACTIONS(645), + [aux_sym_comparison_operator_token44] = ACTIONS(645), + [aux_sym_comparison_operator_token45] = ACTIONS(645), + [aux_sym_comparison_operator_token46] = ACTIONS(645), + [aux_sym_comparison_operator_token47] = ACTIONS(645), + [aux_sym_comparison_operator_token48] = ACTIONS(645), + [aux_sym_comparison_operator_token49] = ACTIONS(645), + [aux_sym_comparison_operator_token50] = ACTIONS(645), + [aux_sym_format_operator_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(647), + [aux_sym_logical_expression_token1] = ACTIONS(645), + [aux_sym_logical_expression_token2] = ACTIONS(645), + [aux_sym_logical_expression_token3] = ACTIONS(645), + [aux_sym_bitwise_expression_token1] = ACTIONS(645), + [aux_sym_bitwise_expression_token2] = ACTIONS(645), + [aux_sym_bitwise_expression_token3] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_DOT_DOT] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(647), + [anon_sym_COLON_COLON] = ACTIONS(645), + [anon_sym_RBRACK] = ACTIONS(645), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(645), }, [98] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(649), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_2_GT] = ACTIONS(649), - [anon_sym_2_GT_GT] = ACTIONS(647), - [anon_sym_3_GT] = ACTIONS(649), - [anon_sym_3_GT_GT] = ACTIONS(647), - [anon_sym_4_GT] = ACTIONS(649), - [anon_sym_4_GT_GT] = ACTIONS(647), - [anon_sym_5_GT] = ACTIONS(649), - [anon_sym_5_GT_GT] = ACTIONS(647), - [anon_sym_6_GT] = ACTIONS(649), - [anon_sym_6_GT_GT] = ACTIONS(647), - [anon_sym_STAR_GT] = ACTIONS(649), - [anon_sym_STAR_GT_GT] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(649), - [anon_sym_STAR_GT_AMP1] = ACTIONS(647), - [anon_sym_2_GT_AMP1] = ACTIONS(647), - [anon_sym_3_GT_AMP1] = ACTIONS(647), - [anon_sym_4_GT_AMP1] = ACTIONS(647), - [anon_sym_5_GT_AMP1] = ACTIONS(647), - [anon_sym_6_GT_AMP1] = ACTIONS(647), - [anon_sym_STAR_GT_AMP2] = ACTIONS(647), - [anon_sym_1_GT_AMP2] = ACTIONS(647), - [anon_sym_3_GT_AMP2] = ACTIONS(647), - [anon_sym_4_GT_AMP2] = ACTIONS(647), - [anon_sym_5_GT_AMP2] = ACTIONS(647), - [anon_sym_6_GT_AMP2] = ACTIONS(647), - [aux_sym_comparison_operator_token1] = ACTIONS(647), - [aux_sym_comparison_operator_token2] = ACTIONS(647), - [aux_sym_comparison_operator_token3] = ACTIONS(647), - [aux_sym_comparison_operator_token4] = ACTIONS(647), - [aux_sym_comparison_operator_token5] = ACTIONS(647), - [aux_sym_comparison_operator_token6] = ACTIONS(647), - [aux_sym_comparison_operator_token7] = ACTIONS(647), - [aux_sym_comparison_operator_token8] = ACTIONS(647), - [aux_sym_comparison_operator_token9] = ACTIONS(647), - [aux_sym_comparison_operator_token10] = ACTIONS(647), - [aux_sym_comparison_operator_token11] = ACTIONS(647), - [aux_sym_comparison_operator_token12] = ACTIONS(647), - [aux_sym_comparison_operator_token13] = ACTIONS(647), - [aux_sym_comparison_operator_token14] = ACTIONS(647), - [aux_sym_comparison_operator_token15] = ACTIONS(647), - [aux_sym_comparison_operator_token16] = ACTIONS(647), - [aux_sym_comparison_operator_token17] = ACTIONS(647), - [aux_sym_comparison_operator_token18] = ACTIONS(647), - [aux_sym_comparison_operator_token19] = ACTIONS(647), - [aux_sym_comparison_operator_token20] = ACTIONS(647), - [aux_sym_comparison_operator_token21] = ACTIONS(647), - [aux_sym_comparison_operator_token22] = ACTIONS(647), - [aux_sym_comparison_operator_token23] = ACTIONS(647), - [aux_sym_comparison_operator_token24] = ACTIONS(647), - [aux_sym_comparison_operator_token25] = ACTIONS(647), - [aux_sym_comparison_operator_token26] = ACTIONS(647), - [aux_sym_comparison_operator_token27] = ACTIONS(647), - [aux_sym_comparison_operator_token28] = ACTIONS(649), - [aux_sym_comparison_operator_token29] = ACTIONS(647), - [aux_sym_comparison_operator_token30] = ACTIONS(647), - [aux_sym_comparison_operator_token31] = ACTIONS(647), - [aux_sym_comparison_operator_token32] = ACTIONS(647), - [aux_sym_comparison_operator_token33] = ACTIONS(647), - [aux_sym_comparison_operator_token34] = ACTIONS(649), - [aux_sym_comparison_operator_token35] = ACTIONS(647), - [aux_sym_comparison_operator_token36] = ACTIONS(647), - [aux_sym_comparison_operator_token37] = ACTIONS(647), - [aux_sym_comparison_operator_token38] = ACTIONS(647), - [aux_sym_comparison_operator_token39] = ACTIONS(647), - [aux_sym_comparison_operator_token40] = ACTIONS(647), - [aux_sym_comparison_operator_token41] = ACTIONS(647), - [aux_sym_comparison_operator_token42] = ACTIONS(647), - [aux_sym_comparison_operator_token43] = ACTIONS(647), - [aux_sym_comparison_operator_token44] = ACTIONS(647), - [aux_sym_comparison_operator_token45] = ACTIONS(647), - [aux_sym_comparison_operator_token46] = ACTIONS(647), - [aux_sym_comparison_operator_token47] = ACTIONS(647), - [aux_sym_comparison_operator_token48] = ACTIONS(647), - [aux_sym_comparison_operator_token49] = ACTIONS(647), - [aux_sym_comparison_operator_token50] = ACTIONS(647), - [aux_sym_format_operator_token1] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(647), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(649), - [aux_sym_logical_expression_token1] = ACTIONS(647), - [aux_sym_logical_expression_token2] = ACTIONS(647), - [aux_sym_logical_expression_token3] = ACTIONS(647), - [aux_sym_bitwise_expression_token1] = ACTIONS(647), - [aux_sym_bitwise_expression_token2] = ACTIONS(647), - [aux_sym_bitwise_expression_token3] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(649), - [anon_sym_SLASH] = ACTIONS(649), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_DOT2] = ACTIONS(649), - [anon_sym_COLON_COLON] = ACTIONS(647), - [anon_sym_RBRACK] = ACTIONS(647), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_PLUS_EQ] = ACTIONS(649), + [anon_sym_STAR_EQ] = ACTIONS(649), + [anon_sym_SLASH_EQ] = ACTIONS(649), + [anon_sym_PERCENT_EQ] = ACTIONS(649), + [anon_sym_DASH_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_2_GT] = ACTIONS(651), + [anon_sym_2_GT_GT] = ACTIONS(649), + [anon_sym_3_GT] = ACTIONS(651), + [anon_sym_3_GT_GT] = ACTIONS(649), + [anon_sym_4_GT] = ACTIONS(651), + [anon_sym_4_GT_GT] = ACTIONS(649), + [anon_sym_5_GT] = ACTIONS(651), + [anon_sym_5_GT_GT] = ACTIONS(649), + [anon_sym_6_GT] = ACTIONS(651), + [anon_sym_6_GT_GT] = ACTIONS(649), + [anon_sym_STAR_GT] = ACTIONS(651), + [anon_sym_STAR_GT_GT] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_STAR_GT_AMP1] = ACTIONS(649), + [anon_sym_2_GT_AMP1] = ACTIONS(649), + [anon_sym_3_GT_AMP1] = ACTIONS(649), + [anon_sym_4_GT_AMP1] = ACTIONS(649), + [anon_sym_5_GT_AMP1] = ACTIONS(649), + [anon_sym_6_GT_AMP1] = ACTIONS(649), + [anon_sym_STAR_GT_AMP2] = ACTIONS(649), + [anon_sym_1_GT_AMP2] = ACTIONS(649), + [anon_sym_3_GT_AMP2] = ACTIONS(649), + [anon_sym_4_GT_AMP2] = ACTIONS(649), + [anon_sym_5_GT_AMP2] = ACTIONS(649), + [anon_sym_6_GT_AMP2] = ACTIONS(649), + [aux_sym_comparison_operator_token1] = ACTIONS(649), + [aux_sym_comparison_operator_token2] = ACTIONS(649), + [aux_sym_comparison_operator_token3] = ACTIONS(649), + [aux_sym_comparison_operator_token4] = ACTIONS(649), + [aux_sym_comparison_operator_token5] = ACTIONS(649), + [aux_sym_comparison_operator_token6] = ACTIONS(649), + [aux_sym_comparison_operator_token7] = ACTIONS(649), + [aux_sym_comparison_operator_token8] = ACTIONS(649), + [aux_sym_comparison_operator_token9] = ACTIONS(649), + [aux_sym_comparison_operator_token10] = ACTIONS(649), + [aux_sym_comparison_operator_token11] = ACTIONS(649), + [aux_sym_comparison_operator_token12] = ACTIONS(649), + [aux_sym_comparison_operator_token13] = ACTIONS(649), + [aux_sym_comparison_operator_token14] = ACTIONS(649), + [aux_sym_comparison_operator_token15] = ACTIONS(649), + [aux_sym_comparison_operator_token16] = ACTIONS(649), + [aux_sym_comparison_operator_token17] = ACTIONS(649), + [aux_sym_comparison_operator_token18] = ACTIONS(649), + [aux_sym_comparison_operator_token19] = ACTIONS(649), + [aux_sym_comparison_operator_token20] = ACTIONS(649), + [aux_sym_comparison_operator_token21] = ACTIONS(649), + [aux_sym_comparison_operator_token22] = ACTIONS(649), + [aux_sym_comparison_operator_token23] = ACTIONS(649), + [aux_sym_comparison_operator_token24] = ACTIONS(649), + [aux_sym_comparison_operator_token25] = ACTIONS(649), + [aux_sym_comparison_operator_token26] = ACTIONS(649), + [aux_sym_comparison_operator_token27] = ACTIONS(649), + [aux_sym_comparison_operator_token28] = ACTIONS(651), + [aux_sym_comparison_operator_token29] = ACTIONS(649), + [aux_sym_comparison_operator_token30] = ACTIONS(649), + [aux_sym_comparison_operator_token31] = ACTIONS(649), + [aux_sym_comparison_operator_token32] = ACTIONS(649), + [aux_sym_comparison_operator_token33] = ACTIONS(649), + [aux_sym_comparison_operator_token34] = ACTIONS(651), + [aux_sym_comparison_operator_token35] = ACTIONS(649), + [aux_sym_comparison_operator_token36] = ACTIONS(649), + [aux_sym_comparison_operator_token37] = ACTIONS(649), + [aux_sym_comparison_operator_token38] = ACTIONS(649), + [aux_sym_comparison_operator_token39] = ACTIONS(649), + [aux_sym_comparison_operator_token40] = ACTIONS(649), + [aux_sym_comparison_operator_token41] = ACTIONS(649), + [aux_sym_comparison_operator_token42] = ACTIONS(649), + [aux_sym_comparison_operator_token43] = ACTIONS(649), + [aux_sym_comparison_operator_token44] = ACTIONS(649), + [aux_sym_comparison_operator_token45] = ACTIONS(649), + [aux_sym_comparison_operator_token46] = ACTIONS(649), + [aux_sym_comparison_operator_token47] = ACTIONS(649), + [aux_sym_comparison_operator_token48] = ACTIONS(649), + [aux_sym_comparison_operator_token49] = ACTIONS(649), + [aux_sym_comparison_operator_token50] = ACTIONS(649), + [aux_sym_format_operator_token1] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(651), + [aux_sym_logical_expression_token1] = ACTIONS(649), + [aux_sym_logical_expression_token2] = ACTIONS(649), + [aux_sym_logical_expression_token3] = ACTIONS(649), + [aux_sym_bitwise_expression_token1] = ACTIONS(649), + [aux_sym_bitwise_expression_token2] = ACTIONS(649), + [aux_sym_bitwise_expression_token3] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_DOT2] = ACTIONS(651), + [anon_sym_COLON_COLON] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(649), }, [99] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT2] = ACTIONS(653), - [anon_sym_COLON_COLON] = ACTIONS(651), - [anon_sym_RBRACK] = ACTIONS(651), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_PLUS_EQ] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(653), + [anon_sym_SLASH_EQ] = ACTIONS(653), + [anon_sym_PERCENT_EQ] = ACTIONS(653), + [anon_sym_DASH_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_2_GT] = ACTIONS(655), + [anon_sym_2_GT_GT] = ACTIONS(653), + [anon_sym_3_GT] = ACTIONS(655), + [anon_sym_3_GT_GT] = ACTIONS(653), + [anon_sym_4_GT] = ACTIONS(655), + [anon_sym_4_GT_GT] = ACTIONS(653), + [anon_sym_5_GT] = ACTIONS(655), + [anon_sym_5_GT_GT] = ACTIONS(653), + [anon_sym_6_GT] = ACTIONS(655), + [anon_sym_6_GT_GT] = ACTIONS(653), + [anon_sym_STAR_GT] = ACTIONS(655), + [anon_sym_STAR_GT_GT] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_STAR_GT_AMP1] = ACTIONS(653), + [anon_sym_2_GT_AMP1] = ACTIONS(653), + [anon_sym_3_GT_AMP1] = ACTIONS(653), + [anon_sym_4_GT_AMP1] = ACTIONS(653), + [anon_sym_5_GT_AMP1] = ACTIONS(653), + [anon_sym_6_GT_AMP1] = ACTIONS(653), + [anon_sym_STAR_GT_AMP2] = ACTIONS(653), + [anon_sym_1_GT_AMP2] = ACTIONS(653), + [anon_sym_3_GT_AMP2] = ACTIONS(653), + [anon_sym_4_GT_AMP2] = ACTIONS(653), + [anon_sym_5_GT_AMP2] = ACTIONS(653), + [anon_sym_6_GT_AMP2] = ACTIONS(653), + [aux_sym_comparison_operator_token1] = ACTIONS(653), + [aux_sym_comparison_operator_token2] = ACTIONS(653), + [aux_sym_comparison_operator_token3] = ACTIONS(653), + [aux_sym_comparison_operator_token4] = ACTIONS(653), + [aux_sym_comparison_operator_token5] = ACTIONS(653), + [aux_sym_comparison_operator_token6] = ACTIONS(653), + [aux_sym_comparison_operator_token7] = ACTIONS(653), + [aux_sym_comparison_operator_token8] = ACTIONS(653), + [aux_sym_comparison_operator_token9] = ACTIONS(653), + [aux_sym_comparison_operator_token10] = ACTIONS(653), + [aux_sym_comparison_operator_token11] = ACTIONS(653), + [aux_sym_comparison_operator_token12] = ACTIONS(653), + [aux_sym_comparison_operator_token13] = ACTIONS(653), + [aux_sym_comparison_operator_token14] = ACTIONS(653), + [aux_sym_comparison_operator_token15] = ACTIONS(653), + [aux_sym_comparison_operator_token16] = ACTIONS(653), + [aux_sym_comparison_operator_token17] = ACTIONS(653), + [aux_sym_comparison_operator_token18] = ACTIONS(653), + [aux_sym_comparison_operator_token19] = ACTIONS(653), + [aux_sym_comparison_operator_token20] = ACTIONS(653), + [aux_sym_comparison_operator_token21] = ACTIONS(653), + [aux_sym_comparison_operator_token22] = ACTIONS(653), + [aux_sym_comparison_operator_token23] = ACTIONS(653), + [aux_sym_comparison_operator_token24] = ACTIONS(653), + [aux_sym_comparison_operator_token25] = ACTIONS(653), + [aux_sym_comparison_operator_token26] = ACTIONS(653), + [aux_sym_comparison_operator_token27] = ACTIONS(653), + [aux_sym_comparison_operator_token28] = ACTIONS(655), + [aux_sym_comparison_operator_token29] = ACTIONS(653), + [aux_sym_comparison_operator_token30] = ACTIONS(653), + [aux_sym_comparison_operator_token31] = ACTIONS(653), + [aux_sym_comparison_operator_token32] = ACTIONS(653), + [aux_sym_comparison_operator_token33] = ACTIONS(653), + [aux_sym_comparison_operator_token34] = ACTIONS(655), + [aux_sym_comparison_operator_token35] = ACTIONS(653), + [aux_sym_comparison_operator_token36] = ACTIONS(653), + [aux_sym_comparison_operator_token37] = ACTIONS(653), + [aux_sym_comparison_operator_token38] = ACTIONS(653), + [aux_sym_comparison_operator_token39] = ACTIONS(653), + [aux_sym_comparison_operator_token40] = ACTIONS(653), + [aux_sym_comparison_operator_token41] = ACTIONS(653), + [aux_sym_comparison_operator_token42] = ACTIONS(653), + [aux_sym_comparison_operator_token43] = ACTIONS(653), + [aux_sym_comparison_operator_token44] = ACTIONS(653), + [aux_sym_comparison_operator_token45] = ACTIONS(653), + [aux_sym_comparison_operator_token46] = ACTIONS(653), + [aux_sym_comparison_operator_token47] = ACTIONS(653), + [aux_sym_comparison_operator_token48] = ACTIONS(653), + [aux_sym_comparison_operator_token49] = ACTIONS(653), + [aux_sym_comparison_operator_token50] = ACTIONS(653), + [aux_sym_format_operator_token1] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(655), + [aux_sym_logical_expression_token1] = ACTIONS(653), + [aux_sym_logical_expression_token2] = ACTIONS(653), + [aux_sym_logical_expression_token3] = ACTIONS(653), + [aux_sym_bitwise_expression_token1] = ACTIONS(653), + [aux_sym_bitwise_expression_token2] = ACTIONS(653), + [aux_sym_bitwise_expression_token3] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(653), + [anon_sym_DOT2] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(653), + [anon_sym_RBRACK] = ACTIONS(653), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(653), }, [100] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_PLUS_EQ] = ACTIONS(655), - [anon_sym_STAR_EQ] = ACTIONS(655), - [anon_sym_SLASH_EQ] = ACTIONS(655), - [anon_sym_PERCENT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(655), - [anon_sym_2_GT] = ACTIONS(657), - [anon_sym_2_GT_GT] = ACTIONS(655), - [anon_sym_3_GT] = ACTIONS(657), - [anon_sym_3_GT_GT] = ACTIONS(655), - [anon_sym_4_GT] = ACTIONS(657), - [anon_sym_4_GT_GT] = ACTIONS(655), - [anon_sym_5_GT] = ACTIONS(657), - [anon_sym_5_GT_GT] = ACTIONS(655), - [anon_sym_6_GT] = ACTIONS(657), - [anon_sym_6_GT_GT] = ACTIONS(655), - [anon_sym_STAR_GT] = ACTIONS(657), - [anon_sym_STAR_GT_GT] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_STAR_GT_AMP1] = ACTIONS(655), - [anon_sym_2_GT_AMP1] = ACTIONS(655), - [anon_sym_3_GT_AMP1] = ACTIONS(655), - [anon_sym_4_GT_AMP1] = ACTIONS(655), - [anon_sym_5_GT_AMP1] = ACTIONS(655), - [anon_sym_6_GT_AMP1] = ACTIONS(655), - [anon_sym_STAR_GT_AMP2] = ACTIONS(655), - [anon_sym_1_GT_AMP2] = ACTIONS(655), - [anon_sym_3_GT_AMP2] = ACTIONS(655), - [anon_sym_4_GT_AMP2] = ACTIONS(655), - [anon_sym_5_GT_AMP2] = ACTIONS(655), - [anon_sym_6_GT_AMP2] = ACTIONS(655), - [aux_sym_comparison_operator_token1] = ACTIONS(655), - [aux_sym_comparison_operator_token2] = ACTIONS(655), - [aux_sym_comparison_operator_token3] = ACTIONS(655), - [aux_sym_comparison_operator_token4] = ACTIONS(655), - [aux_sym_comparison_operator_token5] = ACTIONS(655), - [aux_sym_comparison_operator_token6] = ACTIONS(655), - [aux_sym_comparison_operator_token7] = ACTIONS(655), - [aux_sym_comparison_operator_token8] = ACTIONS(655), - [aux_sym_comparison_operator_token9] = ACTIONS(655), - [aux_sym_comparison_operator_token10] = ACTIONS(655), - [aux_sym_comparison_operator_token11] = ACTIONS(655), - [aux_sym_comparison_operator_token12] = ACTIONS(655), - [aux_sym_comparison_operator_token13] = ACTIONS(655), - [aux_sym_comparison_operator_token14] = ACTIONS(655), - [aux_sym_comparison_operator_token15] = ACTIONS(655), - [aux_sym_comparison_operator_token16] = ACTIONS(655), - [aux_sym_comparison_operator_token17] = ACTIONS(655), - [aux_sym_comparison_operator_token18] = ACTIONS(655), - [aux_sym_comparison_operator_token19] = ACTIONS(655), - [aux_sym_comparison_operator_token20] = ACTIONS(655), - [aux_sym_comparison_operator_token21] = ACTIONS(655), - [aux_sym_comparison_operator_token22] = ACTIONS(655), - [aux_sym_comparison_operator_token23] = ACTIONS(655), - [aux_sym_comparison_operator_token24] = ACTIONS(655), - [aux_sym_comparison_operator_token25] = ACTIONS(655), - [aux_sym_comparison_operator_token26] = ACTIONS(655), - [aux_sym_comparison_operator_token27] = ACTIONS(655), - [aux_sym_comparison_operator_token28] = ACTIONS(657), - [aux_sym_comparison_operator_token29] = ACTIONS(655), - [aux_sym_comparison_operator_token30] = ACTIONS(655), - [aux_sym_comparison_operator_token31] = ACTIONS(655), - [aux_sym_comparison_operator_token32] = ACTIONS(655), - [aux_sym_comparison_operator_token33] = ACTIONS(655), - [aux_sym_comparison_operator_token34] = ACTIONS(657), - [aux_sym_comparison_operator_token35] = ACTIONS(655), - [aux_sym_comparison_operator_token36] = ACTIONS(655), - [aux_sym_comparison_operator_token37] = ACTIONS(655), - [aux_sym_comparison_operator_token38] = ACTIONS(655), - [aux_sym_comparison_operator_token39] = ACTIONS(655), - [aux_sym_comparison_operator_token40] = ACTIONS(655), - [aux_sym_comparison_operator_token41] = ACTIONS(655), - [aux_sym_comparison_operator_token42] = ACTIONS(655), - [aux_sym_comparison_operator_token43] = ACTIONS(655), - [aux_sym_comparison_operator_token44] = ACTIONS(655), - [aux_sym_comparison_operator_token45] = ACTIONS(655), - [aux_sym_comparison_operator_token46] = ACTIONS(655), - [aux_sym_comparison_operator_token47] = ACTIONS(655), - [aux_sym_comparison_operator_token48] = ACTIONS(655), - [aux_sym_comparison_operator_token49] = ACTIONS(655), - [aux_sym_comparison_operator_token50] = ACTIONS(655), - [aux_sym_format_operator_token1] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PERCENT] = ACTIONS(657), - [aux_sym_logical_expression_token1] = ACTIONS(655), - [aux_sym_logical_expression_token2] = ACTIONS(655), - [aux_sym_logical_expression_token3] = ACTIONS(655), - [aux_sym_bitwise_expression_token1] = ACTIONS(655), - [aux_sym_bitwise_expression_token2] = ACTIONS(655), - [aux_sym_bitwise_expression_token3] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(655), - [anon_sym_PLUS_PLUS] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(655), - [anon_sym_DOT2] = ACTIONS(657), - [anon_sym_COLON_COLON] = ACTIONS(655), - [anon_sym_RBRACK] = ACTIONS(655), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_GT] = ACTIONS(657), + [anon_sym_2_GT] = ACTIONS(659), + [anon_sym_2_GT_GT] = ACTIONS(657), + [anon_sym_3_GT] = ACTIONS(659), + [anon_sym_3_GT_GT] = ACTIONS(657), + [anon_sym_4_GT] = ACTIONS(659), + [anon_sym_4_GT_GT] = ACTIONS(657), + [anon_sym_5_GT] = ACTIONS(659), + [anon_sym_5_GT_GT] = ACTIONS(657), + [anon_sym_6_GT] = ACTIONS(659), + [anon_sym_6_GT_GT] = ACTIONS(657), + [anon_sym_STAR_GT] = ACTIONS(659), + [anon_sym_STAR_GT_GT] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_STAR_GT_AMP1] = ACTIONS(657), + [anon_sym_2_GT_AMP1] = ACTIONS(657), + [anon_sym_3_GT_AMP1] = ACTIONS(657), + [anon_sym_4_GT_AMP1] = ACTIONS(657), + [anon_sym_5_GT_AMP1] = ACTIONS(657), + [anon_sym_6_GT_AMP1] = ACTIONS(657), + [anon_sym_STAR_GT_AMP2] = ACTIONS(657), + [anon_sym_1_GT_AMP2] = ACTIONS(657), + [anon_sym_3_GT_AMP2] = ACTIONS(657), + [anon_sym_4_GT_AMP2] = ACTIONS(657), + [anon_sym_5_GT_AMP2] = ACTIONS(657), + [anon_sym_6_GT_AMP2] = ACTIONS(657), + [aux_sym_comparison_operator_token1] = ACTIONS(657), + [aux_sym_comparison_operator_token2] = ACTIONS(657), + [aux_sym_comparison_operator_token3] = ACTIONS(657), + [aux_sym_comparison_operator_token4] = ACTIONS(657), + [aux_sym_comparison_operator_token5] = ACTIONS(657), + [aux_sym_comparison_operator_token6] = ACTIONS(657), + [aux_sym_comparison_operator_token7] = ACTIONS(657), + [aux_sym_comparison_operator_token8] = ACTIONS(657), + [aux_sym_comparison_operator_token9] = ACTIONS(657), + [aux_sym_comparison_operator_token10] = ACTIONS(657), + [aux_sym_comparison_operator_token11] = ACTIONS(657), + [aux_sym_comparison_operator_token12] = ACTIONS(657), + [aux_sym_comparison_operator_token13] = ACTIONS(657), + [aux_sym_comparison_operator_token14] = ACTIONS(657), + [aux_sym_comparison_operator_token15] = ACTIONS(657), + [aux_sym_comparison_operator_token16] = ACTIONS(657), + [aux_sym_comparison_operator_token17] = ACTIONS(657), + [aux_sym_comparison_operator_token18] = ACTIONS(657), + [aux_sym_comparison_operator_token19] = ACTIONS(657), + [aux_sym_comparison_operator_token20] = ACTIONS(657), + [aux_sym_comparison_operator_token21] = ACTIONS(657), + [aux_sym_comparison_operator_token22] = ACTIONS(657), + [aux_sym_comparison_operator_token23] = ACTIONS(657), + [aux_sym_comparison_operator_token24] = ACTIONS(657), + [aux_sym_comparison_operator_token25] = ACTIONS(657), + [aux_sym_comparison_operator_token26] = ACTIONS(657), + [aux_sym_comparison_operator_token27] = ACTIONS(657), + [aux_sym_comparison_operator_token28] = ACTIONS(659), + [aux_sym_comparison_operator_token29] = ACTIONS(657), + [aux_sym_comparison_operator_token30] = ACTIONS(657), + [aux_sym_comparison_operator_token31] = ACTIONS(657), + [aux_sym_comparison_operator_token32] = ACTIONS(657), + [aux_sym_comparison_operator_token33] = ACTIONS(657), + [aux_sym_comparison_operator_token34] = ACTIONS(659), + [aux_sym_comparison_operator_token35] = ACTIONS(657), + [aux_sym_comparison_operator_token36] = ACTIONS(657), + [aux_sym_comparison_operator_token37] = ACTIONS(657), + [aux_sym_comparison_operator_token38] = ACTIONS(657), + [aux_sym_comparison_operator_token39] = ACTIONS(657), + [aux_sym_comparison_operator_token40] = ACTIONS(657), + [aux_sym_comparison_operator_token41] = ACTIONS(657), + [aux_sym_comparison_operator_token42] = ACTIONS(657), + [aux_sym_comparison_operator_token43] = ACTIONS(657), + [aux_sym_comparison_operator_token44] = ACTIONS(657), + [aux_sym_comparison_operator_token45] = ACTIONS(657), + [aux_sym_comparison_operator_token46] = ACTIONS(657), + [aux_sym_comparison_operator_token47] = ACTIONS(657), + [aux_sym_comparison_operator_token48] = ACTIONS(657), + [aux_sym_comparison_operator_token49] = ACTIONS(657), + [aux_sym_comparison_operator_token50] = ACTIONS(657), + [aux_sym_format_operator_token1] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_PERCENT] = ACTIONS(659), + [aux_sym_logical_expression_token1] = ACTIONS(657), + [aux_sym_logical_expression_token2] = ACTIONS(657), + [aux_sym_logical_expression_token3] = ACTIONS(657), + [aux_sym_bitwise_expression_token1] = ACTIONS(657), + [aux_sym_bitwise_expression_token2] = ACTIONS(657), + [aux_sym_bitwise_expression_token3] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_DOT_DOT] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(657), + [anon_sym_DASH_DASH] = ACTIONS(657), + [anon_sym_DOT2] = ACTIONS(659), + [anon_sym_COLON_COLON] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(657), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(657), }, [101] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(659), - [anon_sym_2_GT] = ACTIONS(661), - [anon_sym_2_GT_GT] = ACTIONS(659), - [anon_sym_3_GT] = ACTIONS(661), - [anon_sym_3_GT_GT] = ACTIONS(659), - [anon_sym_4_GT] = ACTIONS(661), - [anon_sym_4_GT_GT] = ACTIONS(659), - [anon_sym_5_GT] = ACTIONS(661), - [anon_sym_5_GT_GT] = ACTIONS(659), - [anon_sym_6_GT] = ACTIONS(661), - [anon_sym_6_GT_GT] = ACTIONS(659), - [anon_sym_STAR_GT] = ACTIONS(661), - [anon_sym_STAR_GT_GT] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_STAR_GT_AMP1] = ACTIONS(659), - [anon_sym_2_GT_AMP1] = ACTIONS(659), - [anon_sym_3_GT_AMP1] = ACTIONS(659), - [anon_sym_4_GT_AMP1] = ACTIONS(659), - [anon_sym_5_GT_AMP1] = ACTIONS(659), - [anon_sym_6_GT_AMP1] = ACTIONS(659), - [anon_sym_STAR_GT_AMP2] = ACTIONS(659), - [anon_sym_1_GT_AMP2] = ACTIONS(659), - [anon_sym_3_GT_AMP2] = ACTIONS(659), - [anon_sym_4_GT_AMP2] = ACTIONS(659), - [anon_sym_5_GT_AMP2] = ACTIONS(659), - [anon_sym_6_GT_AMP2] = ACTIONS(659), - [aux_sym_comparison_operator_token1] = ACTIONS(659), - [aux_sym_comparison_operator_token2] = ACTIONS(659), - [aux_sym_comparison_operator_token3] = ACTIONS(659), - [aux_sym_comparison_operator_token4] = ACTIONS(659), - [aux_sym_comparison_operator_token5] = ACTIONS(659), - [aux_sym_comparison_operator_token6] = ACTIONS(659), - [aux_sym_comparison_operator_token7] = ACTIONS(659), - [aux_sym_comparison_operator_token8] = ACTIONS(659), - [aux_sym_comparison_operator_token9] = ACTIONS(659), - [aux_sym_comparison_operator_token10] = ACTIONS(659), - [aux_sym_comparison_operator_token11] = ACTIONS(659), - [aux_sym_comparison_operator_token12] = ACTIONS(659), - [aux_sym_comparison_operator_token13] = ACTIONS(659), - [aux_sym_comparison_operator_token14] = ACTIONS(659), - [aux_sym_comparison_operator_token15] = ACTIONS(659), - [aux_sym_comparison_operator_token16] = ACTIONS(659), - [aux_sym_comparison_operator_token17] = ACTIONS(659), - [aux_sym_comparison_operator_token18] = ACTIONS(659), - [aux_sym_comparison_operator_token19] = ACTIONS(659), - [aux_sym_comparison_operator_token20] = ACTIONS(659), - [aux_sym_comparison_operator_token21] = ACTIONS(659), - [aux_sym_comparison_operator_token22] = ACTIONS(659), - [aux_sym_comparison_operator_token23] = ACTIONS(659), - [aux_sym_comparison_operator_token24] = ACTIONS(659), - [aux_sym_comparison_operator_token25] = ACTIONS(659), - [aux_sym_comparison_operator_token26] = ACTIONS(659), - [aux_sym_comparison_operator_token27] = ACTIONS(659), - [aux_sym_comparison_operator_token28] = ACTIONS(661), - [aux_sym_comparison_operator_token29] = ACTIONS(659), - [aux_sym_comparison_operator_token30] = ACTIONS(659), - [aux_sym_comparison_operator_token31] = ACTIONS(659), - [aux_sym_comparison_operator_token32] = ACTIONS(659), - [aux_sym_comparison_operator_token33] = ACTIONS(659), - [aux_sym_comparison_operator_token34] = ACTIONS(661), - [aux_sym_comparison_operator_token35] = ACTIONS(659), - [aux_sym_comparison_operator_token36] = ACTIONS(659), - [aux_sym_comparison_operator_token37] = ACTIONS(659), - [aux_sym_comparison_operator_token38] = ACTIONS(659), - [aux_sym_comparison_operator_token39] = ACTIONS(659), - [aux_sym_comparison_operator_token40] = ACTIONS(659), - [aux_sym_comparison_operator_token41] = ACTIONS(659), - [aux_sym_comparison_operator_token42] = ACTIONS(659), - [aux_sym_comparison_operator_token43] = ACTIONS(659), - [aux_sym_comparison_operator_token44] = ACTIONS(659), - [aux_sym_comparison_operator_token45] = ACTIONS(659), - [aux_sym_comparison_operator_token46] = ACTIONS(659), - [aux_sym_comparison_operator_token47] = ACTIONS(659), - [aux_sym_comparison_operator_token48] = ACTIONS(659), - [aux_sym_comparison_operator_token49] = ACTIONS(659), - [aux_sym_comparison_operator_token50] = ACTIONS(659), - [aux_sym_format_operator_token1] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_PERCENT] = ACTIONS(661), - [aux_sym_logical_expression_token1] = ACTIONS(659), - [aux_sym_logical_expression_token2] = ACTIONS(659), - [aux_sym_logical_expression_token3] = ACTIONS(659), - [aux_sym_bitwise_expression_token1] = ACTIONS(659), - [aux_sym_bitwise_expression_token2] = ACTIONS(659), - [aux_sym_bitwise_expression_token3] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_DOT2] = ACTIONS(661), - [anon_sym_COLON_COLON] = ACTIONS(659), - [anon_sym_RBRACK] = ACTIONS(659), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_BANG_EQ] = ACTIONS(661), + [anon_sym_PLUS_EQ] = ACTIONS(661), + [anon_sym_STAR_EQ] = ACTIONS(661), + [anon_sym_SLASH_EQ] = ACTIONS(661), + [anon_sym_PERCENT_EQ] = ACTIONS(661), + [anon_sym_DASH_EQ] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_2_GT] = ACTIONS(664), + [anon_sym_2_GT_GT] = ACTIONS(661), + [anon_sym_3_GT] = ACTIONS(664), + [anon_sym_3_GT_GT] = ACTIONS(661), + [anon_sym_4_GT] = ACTIONS(664), + [anon_sym_4_GT_GT] = ACTIONS(661), + [anon_sym_5_GT] = ACTIONS(664), + [anon_sym_5_GT_GT] = ACTIONS(661), + [anon_sym_6_GT] = ACTIONS(664), + [anon_sym_6_GT_GT] = ACTIONS(661), + [anon_sym_STAR_GT] = ACTIONS(664), + [anon_sym_STAR_GT_GT] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_STAR_GT_AMP1] = ACTIONS(661), + [anon_sym_2_GT_AMP1] = ACTIONS(661), + [anon_sym_3_GT_AMP1] = ACTIONS(661), + [anon_sym_4_GT_AMP1] = ACTIONS(661), + [anon_sym_5_GT_AMP1] = ACTIONS(661), + [anon_sym_6_GT_AMP1] = ACTIONS(661), + [anon_sym_STAR_GT_AMP2] = ACTIONS(661), + [anon_sym_1_GT_AMP2] = ACTIONS(661), + [anon_sym_3_GT_AMP2] = ACTIONS(661), + [anon_sym_4_GT_AMP2] = ACTIONS(661), + [anon_sym_5_GT_AMP2] = ACTIONS(661), + [anon_sym_6_GT_AMP2] = ACTIONS(661), + [aux_sym_comparison_operator_token1] = ACTIONS(661), + [aux_sym_comparison_operator_token2] = ACTIONS(661), + [aux_sym_comparison_operator_token3] = ACTIONS(661), + [aux_sym_comparison_operator_token4] = ACTIONS(661), + [aux_sym_comparison_operator_token5] = ACTIONS(661), + [aux_sym_comparison_operator_token6] = ACTIONS(661), + [aux_sym_comparison_operator_token7] = ACTIONS(661), + [aux_sym_comparison_operator_token8] = ACTIONS(661), + [aux_sym_comparison_operator_token9] = ACTIONS(661), + [aux_sym_comparison_operator_token10] = ACTIONS(661), + [aux_sym_comparison_operator_token11] = ACTIONS(661), + [aux_sym_comparison_operator_token12] = ACTIONS(661), + [aux_sym_comparison_operator_token13] = ACTIONS(661), + [aux_sym_comparison_operator_token14] = ACTIONS(661), + [aux_sym_comparison_operator_token15] = ACTIONS(661), + [aux_sym_comparison_operator_token16] = ACTIONS(661), + [aux_sym_comparison_operator_token17] = ACTIONS(661), + [aux_sym_comparison_operator_token18] = ACTIONS(661), + [aux_sym_comparison_operator_token19] = ACTIONS(661), + [aux_sym_comparison_operator_token20] = ACTIONS(661), + [aux_sym_comparison_operator_token21] = ACTIONS(661), + [aux_sym_comparison_operator_token22] = ACTIONS(661), + [aux_sym_comparison_operator_token23] = ACTIONS(661), + [aux_sym_comparison_operator_token24] = ACTIONS(661), + [aux_sym_comparison_operator_token25] = ACTIONS(661), + [aux_sym_comparison_operator_token26] = ACTIONS(661), + [aux_sym_comparison_operator_token27] = ACTIONS(661), + [aux_sym_comparison_operator_token28] = ACTIONS(664), + [aux_sym_comparison_operator_token29] = ACTIONS(661), + [aux_sym_comparison_operator_token30] = ACTIONS(661), + [aux_sym_comparison_operator_token31] = ACTIONS(661), + [aux_sym_comparison_operator_token32] = ACTIONS(661), + [aux_sym_comparison_operator_token33] = ACTIONS(661), + [aux_sym_comparison_operator_token34] = ACTIONS(664), + [aux_sym_comparison_operator_token35] = ACTIONS(661), + [aux_sym_comparison_operator_token36] = ACTIONS(661), + [aux_sym_comparison_operator_token37] = ACTIONS(661), + [aux_sym_comparison_operator_token38] = ACTIONS(661), + [aux_sym_comparison_operator_token39] = ACTIONS(661), + [aux_sym_comparison_operator_token40] = ACTIONS(661), + [aux_sym_comparison_operator_token41] = ACTIONS(661), + [aux_sym_comparison_operator_token42] = ACTIONS(661), + [aux_sym_comparison_operator_token43] = ACTIONS(661), + [aux_sym_comparison_operator_token44] = ACTIONS(661), + [aux_sym_comparison_operator_token45] = ACTIONS(661), + [aux_sym_comparison_operator_token46] = ACTIONS(661), + [aux_sym_comparison_operator_token47] = ACTIONS(661), + [aux_sym_comparison_operator_token48] = ACTIONS(661), + [aux_sym_comparison_operator_token49] = ACTIONS(661), + [aux_sym_comparison_operator_token50] = ACTIONS(661), + [aux_sym_format_operator_token1] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(661), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_COMMA] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_PERCENT] = ACTIONS(664), + [aux_sym_logical_expression_token1] = ACTIONS(661), + [aux_sym_logical_expression_token2] = ACTIONS(661), + [aux_sym_logical_expression_token3] = ACTIONS(661), + [aux_sym_bitwise_expression_token1] = ACTIONS(661), + [aux_sym_bitwise_expression_token2] = ACTIONS(661), + [aux_sym_bitwise_expression_token3] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_DOT2] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(661), + [anon_sym_RBRACK] = ACTIONS(661), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(661), }, [102] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(591), - [anon_sym_2_GT] = ACTIONS(593), - [anon_sym_2_GT_GT] = ACTIONS(591), - [anon_sym_3_GT] = ACTIONS(593), - [anon_sym_3_GT_GT] = ACTIONS(591), - [anon_sym_4_GT] = ACTIONS(593), - [anon_sym_4_GT_GT] = ACTIONS(591), - [anon_sym_5_GT] = ACTIONS(593), - [anon_sym_5_GT_GT] = ACTIONS(591), - [anon_sym_6_GT] = ACTIONS(593), - [anon_sym_6_GT_GT] = ACTIONS(591), - [anon_sym_STAR_GT] = ACTIONS(593), - [anon_sym_STAR_GT_GT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_STAR_GT_AMP1] = ACTIONS(591), - [anon_sym_2_GT_AMP1] = ACTIONS(591), - [anon_sym_3_GT_AMP1] = ACTIONS(591), - [anon_sym_4_GT_AMP1] = ACTIONS(591), - [anon_sym_5_GT_AMP1] = ACTIONS(591), - [anon_sym_6_GT_AMP1] = ACTIONS(591), - [anon_sym_STAR_GT_AMP2] = ACTIONS(591), - [anon_sym_1_GT_AMP2] = ACTIONS(591), - [anon_sym_3_GT_AMP2] = ACTIONS(591), - [anon_sym_4_GT_AMP2] = ACTIONS(591), - [anon_sym_5_GT_AMP2] = ACTIONS(591), - [anon_sym_6_GT_AMP2] = ACTIONS(591), - [aux_sym_comparison_operator_token1] = ACTIONS(591), - [aux_sym_comparison_operator_token2] = ACTIONS(591), - [aux_sym_comparison_operator_token3] = ACTIONS(591), - [aux_sym_comparison_operator_token4] = ACTIONS(591), - [aux_sym_comparison_operator_token5] = ACTIONS(591), - [aux_sym_comparison_operator_token6] = ACTIONS(591), - [aux_sym_comparison_operator_token7] = ACTIONS(591), - [aux_sym_comparison_operator_token8] = ACTIONS(591), - [aux_sym_comparison_operator_token9] = ACTIONS(591), - [aux_sym_comparison_operator_token10] = ACTIONS(591), - [aux_sym_comparison_operator_token11] = ACTIONS(591), - [aux_sym_comparison_operator_token12] = ACTIONS(591), - [aux_sym_comparison_operator_token13] = ACTIONS(591), - [aux_sym_comparison_operator_token14] = ACTIONS(591), - [aux_sym_comparison_operator_token15] = ACTIONS(591), - [aux_sym_comparison_operator_token16] = ACTIONS(591), - [aux_sym_comparison_operator_token17] = ACTIONS(591), - [aux_sym_comparison_operator_token18] = ACTIONS(591), - [aux_sym_comparison_operator_token19] = ACTIONS(591), - [aux_sym_comparison_operator_token20] = ACTIONS(591), - [aux_sym_comparison_operator_token21] = ACTIONS(591), - [aux_sym_comparison_operator_token22] = ACTIONS(591), - [aux_sym_comparison_operator_token23] = ACTIONS(591), - [aux_sym_comparison_operator_token24] = ACTIONS(591), - [aux_sym_comparison_operator_token25] = ACTIONS(591), - [aux_sym_comparison_operator_token26] = ACTIONS(591), - [aux_sym_comparison_operator_token27] = ACTIONS(591), - [aux_sym_comparison_operator_token28] = ACTIONS(593), - [aux_sym_comparison_operator_token29] = ACTIONS(591), - [aux_sym_comparison_operator_token30] = ACTIONS(591), - [aux_sym_comparison_operator_token31] = ACTIONS(591), - [aux_sym_comparison_operator_token32] = ACTIONS(591), - [aux_sym_comparison_operator_token33] = ACTIONS(591), - [aux_sym_comparison_operator_token34] = ACTIONS(593), - [aux_sym_comparison_operator_token35] = ACTIONS(591), - [aux_sym_comparison_operator_token36] = ACTIONS(591), - [aux_sym_comparison_operator_token37] = ACTIONS(591), - [aux_sym_comparison_operator_token38] = ACTIONS(591), - [aux_sym_comparison_operator_token39] = ACTIONS(591), - [aux_sym_comparison_operator_token40] = ACTIONS(591), - [aux_sym_comparison_operator_token41] = ACTIONS(591), - [aux_sym_comparison_operator_token42] = ACTIONS(591), - [aux_sym_comparison_operator_token43] = ACTIONS(591), - [aux_sym_comparison_operator_token44] = ACTIONS(591), - [aux_sym_comparison_operator_token45] = ACTIONS(591), - [aux_sym_comparison_operator_token46] = ACTIONS(591), - [aux_sym_comparison_operator_token47] = ACTIONS(591), - [aux_sym_comparison_operator_token48] = ACTIONS(591), - [aux_sym_comparison_operator_token49] = ACTIONS(591), - [aux_sym_comparison_operator_token50] = ACTIONS(591), - [aux_sym_format_operator_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_PERCENT] = ACTIONS(593), - [aux_sym_logical_expression_token1] = ACTIONS(591), - [aux_sym_logical_expression_token2] = ACTIONS(591), - [aux_sym_logical_expression_token3] = ACTIONS(591), - [aux_sym_bitwise_expression_token1] = ACTIONS(591), - [aux_sym_bitwise_expression_token2] = ACTIONS(591), - [aux_sym_bitwise_expression_token3] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_BSLASH] = ACTIONS(591), - [anon_sym_STAR] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_DOT2] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(591), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(591), - [sym__statement_terminator] = ACTIONS(591), - }, - [103] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_2_GT] = ACTIONS(665), - [anon_sym_2_GT_GT] = ACTIONS(663), - [anon_sym_3_GT] = ACTIONS(665), - [anon_sym_3_GT_GT] = ACTIONS(663), - [anon_sym_4_GT] = ACTIONS(665), - [anon_sym_4_GT_GT] = ACTIONS(663), - [anon_sym_5_GT] = ACTIONS(665), - [anon_sym_5_GT_GT] = ACTIONS(663), - [anon_sym_6_GT] = ACTIONS(665), - [anon_sym_6_GT_GT] = ACTIONS(663), - [anon_sym_STAR_GT] = ACTIONS(665), - [anon_sym_STAR_GT_GT] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_STAR_GT_AMP1] = ACTIONS(663), - [anon_sym_2_GT_AMP1] = ACTIONS(663), - [anon_sym_3_GT_AMP1] = ACTIONS(663), - [anon_sym_4_GT_AMP1] = ACTIONS(663), - [anon_sym_5_GT_AMP1] = ACTIONS(663), - [anon_sym_6_GT_AMP1] = ACTIONS(663), - [anon_sym_STAR_GT_AMP2] = ACTIONS(663), - [anon_sym_1_GT_AMP2] = ACTIONS(663), - [anon_sym_3_GT_AMP2] = ACTIONS(663), - [anon_sym_4_GT_AMP2] = ACTIONS(663), - [anon_sym_5_GT_AMP2] = ACTIONS(663), - [anon_sym_6_GT_AMP2] = ACTIONS(663), - [aux_sym_comparison_operator_token1] = ACTIONS(663), - [aux_sym_comparison_operator_token2] = ACTIONS(663), - [aux_sym_comparison_operator_token3] = ACTIONS(663), - [aux_sym_comparison_operator_token4] = ACTIONS(663), - [aux_sym_comparison_operator_token5] = ACTIONS(663), - [aux_sym_comparison_operator_token6] = ACTIONS(663), - [aux_sym_comparison_operator_token7] = ACTIONS(663), - [aux_sym_comparison_operator_token8] = ACTIONS(663), - [aux_sym_comparison_operator_token9] = ACTIONS(663), - [aux_sym_comparison_operator_token10] = ACTIONS(663), - [aux_sym_comparison_operator_token11] = ACTIONS(663), - [aux_sym_comparison_operator_token12] = ACTIONS(663), - [aux_sym_comparison_operator_token13] = ACTIONS(663), - [aux_sym_comparison_operator_token14] = ACTIONS(663), - [aux_sym_comparison_operator_token15] = ACTIONS(663), - [aux_sym_comparison_operator_token16] = ACTIONS(663), - [aux_sym_comparison_operator_token17] = ACTIONS(663), - [aux_sym_comparison_operator_token18] = ACTIONS(663), - [aux_sym_comparison_operator_token19] = ACTIONS(663), - [aux_sym_comparison_operator_token20] = ACTIONS(663), - [aux_sym_comparison_operator_token21] = ACTIONS(663), - [aux_sym_comparison_operator_token22] = ACTIONS(663), - [aux_sym_comparison_operator_token23] = ACTIONS(663), - [aux_sym_comparison_operator_token24] = ACTIONS(663), - [aux_sym_comparison_operator_token25] = ACTIONS(663), - [aux_sym_comparison_operator_token26] = ACTIONS(663), - [aux_sym_comparison_operator_token27] = ACTIONS(663), - [aux_sym_comparison_operator_token28] = ACTIONS(665), - [aux_sym_comparison_operator_token29] = ACTIONS(663), - [aux_sym_comparison_operator_token30] = ACTIONS(663), - [aux_sym_comparison_operator_token31] = ACTIONS(663), - [aux_sym_comparison_operator_token32] = ACTIONS(663), - [aux_sym_comparison_operator_token33] = ACTIONS(663), - [aux_sym_comparison_operator_token34] = ACTIONS(665), - [aux_sym_comparison_operator_token35] = ACTIONS(663), - [aux_sym_comparison_operator_token36] = ACTIONS(663), - [aux_sym_comparison_operator_token37] = ACTIONS(663), - [aux_sym_comparison_operator_token38] = ACTIONS(663), - [aux_sym_comparison_operator_token39] = ACTIONS(663), - [aux_sym_comparison_operator_token40] = ACTIONS(663), - [aux_sym_comparison_operator_token41] = ACTIONS(663), - [aux_sym_comparison_operator_token42] = ACTIONS(663), - [aux_sym_comparison_operator_token43] = ACTIONS(663), - [aux_sym_comparison_operator_token44] = ACTIONS(663), - [aux_sym_comparison_operator_token45] = ACTIONS(663), - [aux_sym_comparison_operator_token46] = ACTIONS(663), - [aux_sym_comparison_operator_token47] = ACTIONS(663), - [aux_sym_comparison_operator_token48] = ACTIONS(663), - [aux_sym_comparison_operator_token49] = ACTIONS(663), - [aux_sym_comparison_operator_token50] = ACTIONS(663), - [aux_sym_format_operator_token1] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(665), - [aux_sym_logical_expression_token1] = ACTIONS(663), - [aux_sym_logical_expression_token2] = ACTIONS(663), - [aux_sym_logical_expression_token3] = ACTIONS(663), - [aux_sym_bitwise_expression_token1] = ACTIONS(663), - [aux_sym_bitwise_expression_token2] = ACTIONS(663), - [aux_sym_bitwise_expression_token3] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DOT2] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(663), - }, - [104] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(667), [anon_sym_EQ] = ACTIONS(667), @@ -39767,6 +40475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(667), [anon_sym_SLASH_EQ] = ACTIONS(667), [anon_sym_PERCENT_EQ] = ACTIONS(667), + [anon_sym_DASH_EQ] = ACTIONS(667), [anon_sym_GT] = ACTIONS(669), [anon_sym_GT_GT] = ACTIONS(667), [anon_sym_2_GT] = ACTIONS(669), @@ -39869,7 +40578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(667), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(667), }, - [105] = { + [103] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(671), [anon_sym_EQ] = ACTIONS(671), @@ -39878,6 +40587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(671), [anon_sym_SLASH_EQ] = ACTIONS(671), [anon_sym_PERCENT_EQ] = ACTIONS(671), + [anon_sym_DASH_EQ] = ACTIONS(671), [anon_sym_GT] = ACTIONS(673), [anon_sym_GT_GT] = ACTIONS(671), [anon_sym_2_GT] = ACTIONS(673), @@ -39980,118 +40690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(671), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(671), }, - [106] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_2_GT] = ACTIONS(601), - [anon_sym_2_GT_GT] = ACTIONS(599), - [anon_sym_3_GT] = ACTIONS(601), - [anon_sym_3_GT_GT] = ACTIONS(599), - [anon_sym_4_GT] = ACTIONS(601), - [anon_sym_4_GT_GT] = ACTIONS(599), - [anon_sym_5_GT] = ACTIONS(601), - [anon_sym_5_GT_GT] = ACTIONS(599), - [anon_sym_6_GT] = ACTIONS(601), - [anon_sym_6_GT_GT] = ACTIONS(599), - [anon_sym_STAR_GT] = ACTIONS(601), - [anon_sym_STAR_GT_GT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_STAR_GT_AMP1] = ACTIONS(599), - [anon_sym_2_GT_AMP1] = ACTIONS(599), - [anon_sym_3_GT_AMP1] = ACTIONS(599), - [anon_sym_4_GT_AMP1] = ACTIONS(599), - [anon_sym_5_GT_AMP1] = ACTIONS(599), - [anon_sym_6_GT_AMP1] = ACTIONS(599), - [anon_sym_STAR_GT_AMP2] = ACTIONS(599), - [anon_sym_1_GT_AMP2] = ACTIONS(599), - [anon_sym_3_GT_AMP2] = ACTIONS(599), - [anon_sym_4_GT_AMP2] = ACTIONS(599), - [anon_sym_5_GT_AMP2] = ACTIONS(599), - [anon_sym_6_GT_AMP2] = ACTIONS(599), - [aux_sym_comparison_operator_token1] = ACTIONS(599), - [aux_sym_comparison_operator_token2] = ACTIONS(599), - [aux_sym_comparison_operator_token3] = ACTIONS(599), - [aux_sym_comparison_operator_token4] = ACTIONS(599), - [aux_sym_comparison_operator_token5] = ACTIONS(599), - [aux_sym_comparison_operator_token6] = ACTIONS(599), - [aux_sym_comparison_operator_token7] = ACTIONS(599), - [aux_sym_comparison_operator_token8] = ACTIONS(599), - [aux_sym_comparison_operator_token9] = ACTIONS(599), - [aux_sym_comparison_operator_token10] = ACTIONS(599), - [aux_sym_comparison_operator_token11] = ACTIONS(599), - [aux_sym_comparison_operator_token12] = ACTIONS(599), - [aux_sym_comparison_operator_token13] = ACTIONS(599), - [aux_sym_comparison_operator_token14] = ACTIONS(599), - [aux_sym_comparison_operator_token15] = ACTIONS(599), - [aux_sym_comparison_operator_token16] = ACTIONS(599), - [aux_sym_comparison_operator_token17] = ACTIONS(599), - [aux_sym_comparison_operator_token18] = ACTIONS(599), - [aux_sym_comparison_operator_token19] = ACTIONS(599), - [aux_sym_comparison_operator_token20] = ACTIONS(599), - [aux_sym_comparison_operator_token21] = ACTIONS(599), - [aux_sym_comparison_operator_token22] = ACTIONS(599), - [aux_sym_comparison_operator_token23] = ACTIONS(599), - [aux_sym_comparison_operator_token24] = ACTIONS(599), - [aux_sym_comparison_operator_token25] = ACTIONS(599), - [aux_sym_comparison_operator_token26] = ACTIONS(599), - [aux_sym_comparison_operator_token27] = ACTIONS(599), - [aux_sym_comparison_operator_token28] = ACTIONS(601), - [aux_sym_comparison_operator_token29] = ACTIONS(599), - [aux_sym_comparison_operator_token30] = ACTIONS(599), - [aux_sym_comparison_operator_token31] = ACTIONS(599), - [aux_sym_comparison_operator_token32] = ACTIONS(599), - [aux_sym_comparison_operator_token33] = ACTIONS(599), - [aux_sym_comparison_operator_token34] = ACTIONS(601), - [aux_sym_comparison_operator_token35] = ACTIONS(599), - [aux_sym_comparison_operator_token36] = ACTIONS(599), - [aux_sym_comparison_operator_token37] = ACTIONS(599), - [aux_sym_comparison_operator_token38] = ACTIONS(599), - [aux_sym_comparison_operator_token39] = ACTIONS(599), - [aux_sym_comparison_operator_token40] = ACTIONS(599), - [aux_sym_comparison_operator_token41] = ACTIONS(599), - [aux_sym_comparison_operator_token42] = ACTIONS(599), - [aux_sym_comparison_operator_token43] = ACTIONS(599), - [aux_sym_comparison_operator_token44] = ACTIONS(599), - [aux_sym_comparison_operator_token45] = ACTIONS(599), - [aux_sym_comparison_operator_token46] = ACTIONS(599), - [aux_sym_comparison_operator_token47] = ACTIONS(599), - [aux_sym_comparison_operator_token48] = ACTIONS(599), - [aux_sym_comparison_operator_token49] = ACTIONS(599), - [aux_sym_comparison_operator_token50] = ACTIONS(599), - [aux_sym_format_operator_token1] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(601), - [aux_sym_logical_expression_token1] = ACTIONS(599), - [aux_sym_logical_expression_token2] = ACTIONS(599), - [aux_sym_logical_expression_token3] = ACTIONS(599), - [aux_sym_bitwise_expression_token1] = ACTIONS(599), - [aux_sym_bitwise_expression_token2] = ACTIONS(599), - [aux_sym_bitwise_expression_token3] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_BSLASH] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_DOT_DOT] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DOT2] = ACTIONS(601), - [anon_sym_COLON_COLON] = ACTIONS(599), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(599), - [sym__statement_terminator] = ACTIONS(599), - }, - [107] = { + [104] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_EQ] = ACTIONS(675), @@ -40100,6 +40699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(675), [anon_sym_SLASH_EQ] = ACTIONS(675), [anon_sym_PERCENT_EQ] = ACTIONS(675), + [anon_sym_DASH_EQ] = ACTIONS(675), [anon_sym_GT] = ACTIONS(677), [anon_sym_GT_GT] = ACTIONS(675), [anon_sym_2_GT] = ACTIONS(677), @@ -40202,118 +40802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(675), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(675), }, - [108] = { - [sym_argument_list] = STATE(137), - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_GT_GT] = ACTIONS(603), - [anon_sym_2_GT] = ACTIONS(605), - [anon_sym_2_GT_GT] = ACTIONS(603), - [anon_sym_3_GT] = ACTIONS(605), - [anon_sym_3_GT_GT] = ACTIONS(603), - [anon_sym_4_GT] = ACTIONS(605), - [anon_sym_4_GT_GT] = ACTIONS(603), - [anon_sym_5_GT] = ACTIONS(605), - [anon_sym_5_GT_GT] = ACTIONS(603), - [anon_sym_6_GT] = ACTIONS(605), - [anon_sym_6_GT_GT] = ACTIONS(603), - [anon_sym_STAR_GT] = ACTIONS(605), - [anon_sym_STAR_GT_GT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(605), - [anon_sym_STAR_GT_AMP1] = ACTIONS(603), - [anon_sym_2_GT_AMP1] = ACTIONS(603), - [anon_sym_3_GT_AMP1] = ACTIONS(603), - [anon_sym_4_GT_AMP1] = ACTIONS(603), - [anon_sym_5_GT_AMP1] = ACTIONS(603), - [anon_sym_6_GT_AMP1] = ACTIONS(603), - [anon_sym_STAR_GT_AMP2] = ACTIONS(603), - [anon_sym_1_GT_AMP2] = ACTIONS(603), - [anon_sym_3_GT_AMP2] = ACTIONS(603), - [anon_sym_4_GT_AMP2] = ACTIONS(603), - [anon_sym_5_GT_AMP2] = ACTIONS(603), - [anon_sym_6_GT_AMP2] = ACTIONS(603), - [aux_sym_comparison_operator_token1] = ACTIONS(603), - [aux_sym_comparison_operator_token2] = ACTIONS(603), - [aux_sym_comparison_operator_token3] = ACTIONS(603), - [aux_sym_comparison_operator_token4] = ACTIONS(603), - [aux_sym_comparison_operator_token5] = ACTIONS(603), - [aux_sym_comparison_operator_token6] = ACTIONS(603), - [aux_sym_comparison_operator_token7] = ACTIONS(603), - [aux_sym_comparison_operator_token8] = ACTIONS(603), - [aux_sym_comparison_operator_token9] = ACTIONS(603), - [aux_sym_comparison_operator_token10] = ACTIONS(603), - [aux_sym_comparison_operator_token11] = ACTIONS(603), - [aux_sym_comparison_operator_token12] = ACTIONS(603), - [aux_sym_comparison_operator_token13] = ACTIONS(603), - [aux_sym_comparison_operator_token14] = ACTIONS(603), - [aux_sym_comparison_operator_token15] = ACTIONS(603), - [aux_sym_comparison_operator_token16] = ACTIONS(603), - [aux_sym_comparison_operator_token17] = ACTIONS(603), - [aux_sym_comparison_operator_token18] = ACTIONS(603), - [aux_sym_comparison_operator_token19] = ACTIONS(603), - [aux_sym_comparison_operator_token20] = ACTIONS(603), - [aux_sym_comparison_operator_token21] = ACTIONS(603), - [aux_sym_comparison_operator_token22] = ACTIONS(603), - [aux_sym_comparison_operator_token23] = ACTIONS(603), - [aux_sym_comparison_operator_token24] = ACTIONS(603), - [aux_sym_comparison_operator_token25] = ACTIONS(603), - [aux_sym_comparison_operator_token26] = ACTIONS(603), - [aux_sym_comparison_operator_token27] = ACTIONS(603), - [aux_sym_comparison_operator_token28] = ACTIONS(605), - [aux_sym_comparison_operator_token29] = ACTIONS(603), - [aux_sym_comparison_operator_token30] = ACTIONS(603), - [aux_sym_comparison_operator_token31] = ACTIONS(603), - [aux_sym_comparison_operator_token32] = ACTIONS(603), - [aux_sym_comparison_operator_token33] = ACTIONS(603), - [aux_sym_comparison_operator_token34] = ACTIONS(605), - [aux_sym_comparison_operator_token35] = ACTIONS(603), - [aux_sym_comparison_operator_token36] = ACTIONS(603), - [aux_sym_comparison_operator_token37] = ACTIONS(603), - [aux_sym_comparison_operator_token38] = ACTIONS(603), - [aux_sym_comparison_operator_token39] = ACTIONS(603), - [aux_sym_comparison_operator_token40] = ACTIONS(603), - [aux_sym_comparison_operator_token41] = ACTIONS(603), - [aux_sym_comparison_operator_token42] = ACTIONS(603), - [aux_sym_comparison_operator_token43] = ACTIONS(603), - [aux_sym_comparison_operator_token44] = ACTIONS(603), - [aux_sym_comparison_operator_token45] = ACTIONS(603), - [aux_sym_comparison_operator_token46] = ACTIONS(603), - [aux_sym_comparison_operator_token47] = ACTIONS(603), - [aux_sym_comparison_operator_token48] = ACTIONS(603), - [aux_sym_comparison_operator_token49] = ACTIONS(603), - [aux_sym_comparison_operator_token50] = ACTIONS(603), - [aux_sym_format_operator_token1] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(605), - [aux_sym_logical_expression_token1] = ACTIONS(603), - [aux_sym_logical_expression_token2] = ACTIONS(603), - [aux_sym_logical_expression_token3] = ACTIONS(603), - [aux_sym_bitwise_expression_token1] = ACTIONS(603), - [aux_sym_bitwise_expression_token2] = ACTIONS(603), - [aux_sym_bitwise_expression_token3] = ACTIONS(603), - [anon_sym_PLUS] = ACTIONS(605), - [anon_sym_DASH] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_BSLASH] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_DOT2] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(603), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(603), - [sym__statement_terminator] = ACTIONS(603), - }, - [109] = { + [105] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(679), [anon_sym_EQ] = ACTIONS(679), @@ -40322,6 +40811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(679), [anon_sym_SLASH_EQ] = ACTIONS(679), [anon_sym_PERCENT_EQ] = ACTIONS(679), + [anon_sym_DASH_EQ] = ACTIONS(679), [anon_sym_GT] = ACTIONS(681), [anon_sym_GT_GT] = ACTIONS(679), [anon_sym_2_GT] = ACTIONS(681), @@ -40424,7 +40914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(679), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(679), }, - [110] = { + [106] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(683), [anon_sym_EQ] = ACTIONS(683), @@ -40433,21 +40923,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(683), [anon_sym_SLASH_EQ] = ACTIONS(683), [anon_sym_PERCENT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(686), + [anon_sym_DASH_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(685), [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_2_GT] = ACTIONS(686), + [anon_sym_2_GT] = ACTIONS(685), [anon_sym_2_GT_GT] = ACTIONS(683), - [anon_sym_3_GT] = ACTIONS(686), + [anon_sym_3_GT] = ACTIONS(685), [anon_sym_3_GT_GT] = ACTIONS(683), - [anon_sym_4_GT] = ACTIONS(686), + [anon_sym_4_GT] = ACTIONS(685), [anon_sym_4_GT_GT] = ACTIONS(683), - [anon_sym_5_GT] = ACTIONS(686), + [anon_sym_5_GT] = ACTIONS(685), [anon_sym_5_GT_GT] = ACTIONS(683), - [anon_sym_6_GT] = ACTIONS(686), + [anon_sym_6_GT] = ACTIONS(685), [anon_sym_6_GT_GT] = ACTIONS(683), - [anon_sym_STAR_GT] = ACTIONS(686), + [anon_sym_STAR_GT] = ACTIONS(685), [anon_sym_STAR_GT_GT] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(685), [anon_sym_STAR_GT_AMP1] = ACTIONS(683), [anon_sym_2_GT_AMP1] = ACTIONS(683), [anon_sym_3_GT_AMP1] = ACTIONS(683), @@ -40487,13 +40978,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token25] = ACTIONS(683), [aux_sym_comparison_operator_token26] = ACTIONS(683), [aux_sym_comparison_operator_token27] = ACTIONS(683), - [aux_sym_comparison_operator_token28] = ACTIONS(686), + [aux_sym_comparison_operator_token28] = ACTIONS(685), [aux_sym_comparison_operator_token29] = ACTIONS(683), [aux_sym_comparison_operator_token30] = ACTIONS(683), [aux_sym_comparison_operator_token31] = ACTIONS(683), [aux_sym_comparison_operator_token32] = ACTIONS(683), [aux_sym_comparison_operator_token33] = ACTIONS(683), - [aux_sym_comparison_operator_token34] = ACTIONS(686), + [aux_sym_comparison_operator_token34] = ACTIONS(685), [aux_sym_comparison_operator_token35] = ACTIONS(683), [aux_sym_comparison_operator_token36] = ACTIONS(683), [aux_sym_comparison_operator_token37] = ACTIONS(683), @@ -40515,913 +41006,1369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(683), [anon_sym_COMMA] = ACTIONS(683), [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(685), [aux_sym_logical_expression_token1] = ACTIONS(683), [aux_sym_logical_expression_token2] = ACTIONS(683), [aux_sym_logical_expression_token3] = ACTIONS(683), [aux_sym_bitwise_expression_token1] = ACTIONS(683), [aux_sym_bitwise_expression_token2] = ACTIONS(683), [aux_sym_bitwise_expression_token3] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_SLASH] = ACTIONS(685), [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(685), [anon_sym_DOT_DOT] = ACTIONS(683), [anon_sym_PLUS_PLUS] = ACTIONS(683), [anon_sym_DASH_DASH] = ACTIONS(683), - [anon_sym_DOT2] = ACTIONS(686), + [anon_sym_DOT2] = ACTIONS(685), [anon_sym_COLON_COLON] = ACTIONS(683), [anon_sym_RBRACK] = ACTIONS(683), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(683), }, + [107] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_BANG_EQ] = ACTIONS(687), + [anon_sym_PLUS_EQ] = ACTIONS(687), + [anon_sym_STAR_EQ] = ACTIONS(687), + [anon_sym_SLASH_EQ] = ACTIONS(687), + [anon_sym_PERCENT_EQ] = ACTIONS(687), + [anon_sym_DASH_EQ] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_2_GT] = ACTIONS(689), + [anon_sym_2_GT_GT] = ACTIONS(687), + [anon_sym_3_GT] = ACTIONS(689), + [anon_sym_3_GT_GT] = ACTIONS(687), + [anon_sym_4_GT] = ACTIONS(689), + [anon_sym_4_GT_GT] = ACTIONS(687), + [anon_sym_5_GT] = ACTIONS(689), + [anon_sym_5_GT_GT] = ACTIONS(687), + [anon_sym_6_GT] = ACTIONS(689), + [anon_sym_6_GT_GT] = ACTIONS(687), + [anon_sym_STAR_GT] = ACTIONS(689), + [anon_sym_STAR_GT_GT] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_STAR_GT_AMP1] = ACTIONS(687), + [anon_sym_2_GT_AMP1] = ACTIONS(687), + [anon_sym_3_GT_AMP1] = ACTIONS(687), + [anon_sym_4_GT_AMP1] = ACTIONS(687), + [anon_sym_5_GT_AMP1] = ACTIONS(687), + [anon_sym_6_GT_AMP1] = ACTIONS(687), + [anon_sym_STAR_GT_AMP2] = ACTIONS(687), + [anon_sym_1_GT_AMP2] = ACTIONS(687), + [anon_sym_3_GT_AMP2] = ACTIONS(687), + [anon_sym_4_GT_AMP2] = ACTIONS(687), + [anon_sym_5_GT_AMP2] = ACTIONS(687), + [anon_sym_6_GT_AMP2] = ACTIONS(687), + [aux_sym_comparison_operator_token1] = ACTIONS(687), + [aux_sym_comparison_operator_token2] = ACTIONS(687), + [aux_sym_comparison_operator_token3] = ACTIONS(687), + [aux_sym_comparison_operator_token4] = ACTIONS(687), + [aux_sym_comparison_operator_token5] = ACTIONS(687), + [aux_sym_comparison_operator_token6] = ACTIONS(687), + [aux_sym_comparison_operator_token7] = ACTIONS(687), + [aux_sym_comparison_operator_token8] = ACTIONS(687), + [aux_sym_comparison_operator_token9] = ACTIONS(687), + [aux_sym_comparison_operator_token10] = ACTIONS(687), + [aux_sym_comparison_operator_token11] = ACTIONS(687), + [aux_sym_comparison_operator_token12] = ACTIONS(687), + [aux_sym_comparison_operator_token13] = ACTIONS(687), + [aux_sym_comparison_operator_token14] = ACTIONS(687), + [aux_sym_comparison_operator_token15] = ACTIONS(687), + [aux_sym_comparison_operator_token16] = ACTIONS(687), + [aux_sym_comparison_operator_token17] = ACTIONS(687), + [aux_sym_comparison_operator_token18] = ACTIONS(687), + [aux_sym_comparison_operator_token19] = ACTIONS(687), + [aux_sym_comparison_operator_token20] = ACTIONS(687), + [aux_sym_comparison_operator_token21] = ACTIONS(687), + [aux_sym_comparison_operator_token22] = ACTIONS(687), + [aux_sym_comparison_operator_token23] = ACTIONS(687), + [aux_sym_comparison_operator_token24] = ACTIONS(687), + [aux_sym_comparison_operator_token25] = ACTIONS(687), + [aux_sym_comparison_operator_token26] = ACTIONS(687), + [aux_sym_comparison_operator_token27] = ACTIONS(687), + [aux_sym_comparison_operator_token28] = ACTIONS(689), + [aux_sym_comparison_operator_token29] = ACTIONS(687), + [aux_sym_comparison_operator_token30] = ACTIONS(687), + [aux_sym_comparison_operator_token31] = ACTIONS(687), + [aux_sym_comparison_operator_token32] = ACTIONS(687), + [aux_sym_comparison_operator_token33] = ACTIONS(687), + [aux_sym_comparison_operator_token34] = ACTIONS(689), + [aux_sym_comparison_operator_token35] = ACTIONS(687), + [aux_sym_comparison_operator_token36] = ACTIONS(687), + [aux_sym_comparison_operator_token37] = ACTIONS(687), + [aux_sym_comparison_operator_token38] = ACTIONS(687), + [aux_sym_comparison_operator_token39] = ACTIONS(687), + [aux_sym_comparison_operator_token40] = ACTIONS(687), + [aux_sym_comparison_operator_token41] = ACTIONS(687), + [aux_sym_comparison_operator_token42] = ACTIONS(687), + [aux_sym_comparison_operator_token43] = ACTIONS(687), + [aux_sym_comparison_operator_token44] = ACTIONS(687), + [aux_sym_comparison_operator_token45] = ACTIONS(687), + [aux_sym_comparison_operator_token46] = ACTIONS(687), + [aux_sym_comparison_operator_token47] = ACTIONS(687), + [aux_sym_comparison_operator_token48] = ACTIONS(687), + [aux_sym_comparison_operator_token49] = ACTIONS(687), + [aux_sym_comparison_operator_token50] = ACTIONS(687), + [aux_sym_format_operator_token1] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_COMMA] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_PERCENT] = ACTIONS(689), + [aux_sym_logical_expression_token1] = ACTIONS(687), + [aux_sym_logical_expression_token2] = ACTIONS(687), + [aux_sym_logical_expression_token3] = ACTIONS(687), + [aux_sym_bitwise_expression_token1] = ACTIONS(687), + [aux_sym_bitwise_expression_token2] = ACTIONS(687), + [aux_sym_bitwise_expression_token3] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_BSLASH] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_DOT_DOT] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_DOT2] = ACTIONS(689), + [anon_sym_COLON_COLON] = ACTIONS(687), + [anon_sym_RBRACK] = ACTIONS(687), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(687), + }, + [108] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_BANG_EQ] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(691), + [anon_sym_STAR_EQ] = ACTIONS(691), + [anon_sym_SLASH_EQ] = ACTIONS(691), + [anon_sym_PERCENT_EQ] = ACTIONS(691), + [anon_sym_DASH_EQ] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_2_GT] = ACTIONS(693), + [anon_sym_2_GT_GT] = ACTIONS(691), + [anon_sym_3_GT] = ACTIONS(693), + [anon_sym_3_GT_GT] = ACTIONS(691), + [anon_sym_4_GT] = ACTIONS(693), + [anon_sym_4_GT_GT] = ACTIONS(691), + [anon_sym_5_GT] = ACTIONS(693), + [anon_sym_5_GT_GT] = ACTIONS(691), + [anon_sym_6_GT] = ACTIONS(693), + [anon_sym_6_GT_GT] = ACTIONS(691), + [anon_sym_STAR_GT] = ACTIONS(693), + [anon_sym_STAR_GT_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_STAR_GT_AMP1] = ACTIONS(691), + [anon_sym_2_GT_AMP1] = ACTIONS(691), + [anon_sym_3_GT_AMP1] = ACTIONS(691), + [anon_sym_4_GT_AMP1] = ACTIONS(691), + [anon_sym_5_GT_AMP1] = ACTIONS(691), + [anon_sym_6_GT_AMP1] = ACTIONS(691), + [anon_sym_STAR_GT_AMP2] = ACTIONS(691), + [anon_sym_1_GT_AMP2] = ACTIONS(691), + [anon_sym_3_GT_AMP2] = ACTIONS(691), + [anon_sym_4_GT_AMP2] = ACTIONS(691), + [anon_sym_5_GT_AMP2] = ACTIONS(691), + [anon_sym_6_GT_AMP2] = ACTIONS(691), + [aux_sym_comparison_operator_token1] = ACTIONS(691), + [aux_sym_comparison_operator_token2] = ACTIONS(691), + [aux_sym_comparison_operator_token3] = ACTIONS(691), + [aux_sym_comparison_operator_token4] = ACTIONS(691), + [aux_sym_comparison_operator_token5] = ACTIONS(691), + [aux_sym_comparison_operator_token6] = ACTIONS(691), + [aux_sym_comparison_operator_token7] = ACTIONS(691), + [aux_sym_comparison_operator_token8] = ACTIONS(691), + [aux_sym_comparison_operator_token9] = ACTIONS(691), + [aux_sym_comparison_operator_token10] = ACTIONS(691), + [aux_sym_comparison_operator_token11] = ACTIONS(691), + [aux_sym_comparison_operator_token12] = ACTIONS(691), + [aux_sym_comparison_operator_token13] = ACTIONS(691), + [aux_sym_comparison_operator_token14] = ACTIONS(691), + [aux_sym_comparison_operator_token15] = ACTIONS(691), + [aux_sym_comparison_operator_token16] = ACTIONS(691), + [aux_sym_comparison_operator_token17] = ACTIONS(691), + [aux_sym_comparison_operator_token18] = ACTIONS(691), + [aux_sym_comparison_operator_token19] = ACTIONS(691), + [aux_sym_comparison_operator_token20] = ACTIONS(691), + [aux_sym_comparison_operator_token21] = ACTIONS(691), + [aux_sym_comparison_operator_token22] = ACTIONS(691), + [aux_sym_comparison_operator_token23] = ACTIONS(691), + [aux_sym_comparison_operator_token24] = ACTIONS(691), + [aux_sym_comparison_operator_token25] = ACTIONS(691), + [aux_sym_comparison_operator_token26] = ACTIONS(691), + [aux_sym_comparison_operator_token27] = ACTIONS(691), + [aux_sym_comparison_operator_token28] = ACTIONS(693), + [aux_sym_comparison_operator_token29] = ACTIONS(691), + [aux_sym_comparison_operator_token30] = ACTIONS(691), + [aux_sym_comparison_operator_token31] = ACTIONS(691), + [aux_sym_comparison_operator_token32] = ACTIONS(691), + [aux_sym_comparison_operator_token33] = ACTIONS(691), + [aux_sym_comparison_operator_token34] = ACTIONS(693), + [aux_sym_comparison_operator_token35] = ACTIONS(691), + [aux_sym_comparison_operator_token36] = ACTIONS(691), + [aux_sym_comparison_operator_token37] = ACTIONS(691), + [aux_sym_comparison_operator_token38] = ACTIONS(691), + [aux_sym_comparison_operator_token39] = ACTIONS(691), + [aux_sym_comparison_operator_token40] = ACTIONS(691), + [aux_sym_comparison_operator_token41] = ACTIONS(691), + [aux_sym_comparison_operator_token42] = ACTIONS(691), + [aux_sym_comparison_operator_token43] = ACTIONS(691), + [aux_sym_comparison_operator_token44] = ACTIONS(691), + [aux_sym_comparison_operator_token45] = ACTIONS(691), + [aux_sym_comparison_operator_token46] = ACTIONS(691), + [aux_sym_comparison_operator_token47] = ACTIONS(691), + [aux_sym_comparison_operator_token48] = ACTIONS(691), + [aux_sym_comparison_operator_token49] = ACTIONS(691), + [aux_sym_comparison_operator_token50] = ACTIONS(691), + [aux_sym_format_operator_token1] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_RPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(693), + [aux_sym_logical_expression_token1] = ACTIONS(691), + [aux_sym_logical_expression_token2] = ACTIONS(691), + [aux_sym_logical_expression_token3] = ACTIONS(691), + [aux_sym_bitwise_expression_token1] = ACTIONS(691), + [aux_sym_bitwise_expression_token2] = ACTIONS(691), + [aux_sym_bitwise_expression_token3] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DOT2] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(691), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(691), + }, + [109] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(695), + [anon_sym_DASH_DASH] = ACTIONS(695), + [anon_sym_DOT2] = ACTIONS(697), + [anon_sym_COLON_COLON] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(695), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(695), + }, + [110] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [anon_sym_PLUS_EQ] = ACTIONS(699), + [anon_sym_STAR_EQ] = ACTIONS(699), + [anon_sym_SLASH_EQ] = ACTIONS(699), + [anon_sym_PERCENT_EQ] = ACTIONS(699), + [anon_sym_DASH_EQ] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_2_GT] = ACTIONS(701), + [anon_sym_2_GT_GT] = ACTIONS(699), + [anon_sym_3_GT] = ACTIONS(701), + [anon_sym_3_GT_GT] = ACTIONS(699), + [anon_sym_4_GT] = ACTIONS(701), + [anon_sym_4_GT_GT] = ACTIONS(699), + [anon_sym_5_GT] = ACTIONS(701), + [anon_sym_5_GT_GT] = ACTIONS(699), + [anon_sym_6_GT] = ACTIONS(701), + [anon_sym_6_GT_GT] = ACTIONS(699), + [anon_sym_STAR_GT] = ACTIONS(701), + [anon_sym_STAR_GT_GT] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_STAR_GT_AMP1] = ACTIONS(699), + [anon_sym_2_GT_AMP1] = ACTIONS(699), + [anon_sym_3_GT_AMP1] = ACTIONS(699), + [anon_sym_4_GT_AMP1] = ACTIONS(699), + [anon_sym_5_GT_AMP1] = ACTIONS(699), + [anon_sym_6_GT_AMP1] = ACTIONS(699), + [anon_sym_STAR_GT_AMP2] = ACTIONS(699), + [anon_sym_1_GT_AMP2] = ACTIONS(699), + [anon_sym_3_GT_AMP2] = ACTIONS(699), + [anon_sym_4_GT_AMP2] = ACTIONS(699), + [anon_sym_5_GT_AMP2] = ACTIONS(699), + [anon_sym_6_GT_AMP2] = ACTIONS(699), + [aux_sym_comparison_operator_token1] = ACTIONS(699), + [aux_sym_comparison_operator_token2] = ACTIONS(699), + [aux_sym_comparison_operator_token3] = ACTIONS(699), + [aux_sym_comparison_operator_token4] = ACTIONS(699), + [aux_sym_comparison_operator_token5] = ACTIONS(699), + [aux_sym_comparison_operator_token6] = ACTIONS(699), + [aux_sym_comparison_operator_token7] = ACTIONS(699), + [aux_sym_comparison_operator_token8] = ACTIONS(699), + [aux_sym_comparison_operator_token9] = ACTIONS(699), + [aux_sym_comparison_operator_token10] = ACTIONS(699), + [aux_sym_comparison_operator_token11] = ACTIONS(699), + [aux_sym_comparison_operator_token12] = ACTIONS(699), + [aux_sym_comparison_operator_token13] = ACTIONS(699), + [aux_sym_comparison_operator_token14] = ACTIONS(699), + [aux_sym_comparison_operator_token15] = ACTIONS(699), + [aux_sym_comparison_operator_token16] = ACTIONS(699), + [aux_sym_comparison_operator_token17] = ACTIONS(699), + [aux_sym_comparison_operator_token18] = ACTIONS(699), + [aux_sym_comparison_operator_token19] = ACTIONS(699), + [aux_sym_comparison_operator_token20] = ACTIONS(699), + [aux_sym_comparison_operator_token21] = ACTIONS(699), + [aux_sym_comparison_operator_token22] = ACTIONS(699), + [aux_sym_comparison_operator_token23] = ACTIONS(699), + [aux_sym_comparison_operator_token24] = ACTIONS(699), + [aux_sym_comparison_operator_token25] = ACTIONS(699), + [aux_sym_comparison_operator_token26] = ACTIONS(699), + [aux_sym_comparison_operator_token27] = ACTIONS(699), + [aux_sym_comparison_operator_token28] = ACTIONS(701), + [aux_sym_comparison_operator_token29] = ACTIONS(699), + [aux_sym_comparison_operator_token30] = ACTIONS(699), + [aux_sym_comparison_operator_token31] = ACTIONS(699), + [aux_sym_comparison_operator_token32] = ACTIONS(699), + [aux_sym_comparison_operator_token33] = ACTIONS(699), + [aux_sym_comparison_operator_token34] = ACTIONS(701), + [aux_sym_comparison_operator_token35] = ACTIONS(699), + [aux_sym_comparison_operator_token36] = ACTIONS(699), + [aux_sym_comparison_operator_token37] = ACTIONS(699), + [aux_sym_comparison_operator_token38] = ACTIONS(699), + [aux_sym_comparison_operator_token39] = ACTIONS(699), + [aux_sym_comparison_operator_token40] = ACTIONS(699), + [aux_sym_comparison_operator_token41] = ACTIONS(699), + [aux_sym_comparison_operator_token42] = ACTIONS(699), + [aux_sym_comparison_operator_token43] = ACTIONS(699), + [aux_sym_comparison_operator_token44] = ACTIONS(699), + [aux_sym_comparison_operator_token45] = ACTIONS(699), + [aux_sym_comparison_operator_token46] = ACTIONS(699), + [aux_sym_comparison_operator_token47] = ACTIONS(699), + [aux_sym_comparison_operator_token48] = ACTIONS(699), + [aux_sym_comparison_operator_token49] = ACTIONS(699), + [aux_sym_comparison_operator_token50] = ACTIONS(699), + [aux_sym_format_operator_token1] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_PERCENT] = ACTIONS(701), + [aux_sym_logical_expression_token1] = ACTIONS(699), + [aux_sym_logical_expression_token2] = ACTIONS(699), + [aux_sym_logical_expression_token3] = ACTIONS(699), + [aux_sym_bitwise_expression_token1] = ACTIONS(699), + [aux_sym_bitwise_expression_token2] = ACTIONS(699), + [aux_sym_bitwise_expression_token3] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_BSLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(699), + [anon_sym_PLUS_PLUS] = ACTIONS(699), + [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_DOT2] = ACTIONS(701), + [anon_sym_COLON_COLON] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(699), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(699), + }, [111] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_STAR_EQ] = ACTIONS(689), - [anon_sym_SLASH_EQ] = ACTIONS(689), - [anon_sym_PERCENT_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_2_GT] = ACTIONS(691), - [anon_sym_2_GT_GT] = ACTIONS(689), - [anon_sym_3_GT] = ACTIONS(691), - [anon_sym_3_GT_GT] = ACTIONS(689), - [anon_sym_4_GT] = ACTIONS(691), - [anon_sym_4_GT_GT] = ACTIONS(689), - [anon_sym_5_GT] = ACTIONS(691), - [anon_sym_5_GT_GT] = ACTIONS(689), - [anon_sym_6_GT] = ACTIONS(691), - [anon_sym_6_GT_GT] = ACTIONS(689), - [anon_sym_STAR_GT] = ACTIONS(691), - [anon_sym_STAR_GT_GT] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_STAR_GT_AMP1] = ACTIONS(689), - [anon_sym_2_GT_AMP1] = ACTIONS(689), - [anon_sym_3_GT_AMP1] = ACTIONS(689), - [anon_sym_4_GT_AMP1] = ACTIONS(689), - [anon_sym_5_GT_AMP1] = ACTIONS(689), - [anon_sym_6_GT_AMP1] = ACTIONS(689), - [anon_sym_STAR_GT_AMP2] = ACTIONS(689), - [anon_sym_1_GT_AMP2] = ACTIONS(689), - [anon_sym_3_GT_AMP2] = ACTIONS(689), - [anon_sym_4_GT_AMP2] = ACTIONS(689), - [anon_sym_5_GT_AMP2] = ACTIONS(689), - [anon_sym_6_GT_AMP2] = ACTIONS(689), - [aux_sym_comparison_operator_token1] = ACTIONS(689), - [aux_sym_comparison_operator_token2] = ACTIONS(689), - [aux_sym_comparison_operator_token3] = ACTIONS(689), - [aux_sym_comparison_operator_token4] = ACTIONS(689), - [aux_sym_comparison_operator_token5] = ACTIONS(689), - [aux_sym_comparison_operator_token6] = ACTIONS(689), - [aux_sym_comparison_operator_token7] = ACTIONS(689), - [aux_sym_comparison_operator_token8] = ACTIONS(689), - [aux_sym_comparison_operator_token9] = ACTIONS(689), - [aux_sym_comparison_operator_token10] = ACTIONS(689), - [aux_sym_comparison_operator_token11] = ACTIONS(689), - [aux_sym_comparison_operator_token12] = ACTIONS(689), - [aux_sym_comparison_operator_token13] = ACTIONS(689), - [aux_sym_comparison_operator_token14] = ACTIONS(689), - [aux_sym_comparison_operator_token15] = ACTIONS(689), - [aux_sym_comparison_operator_token16] = ACTIONS(689), - [aux_sym_comparison_operator_token17] = ACTIONS(689), - [aux_sym_comparison_operator_token18] = ACTIONS(689), - [aux_sym_comparison_operator_token19] = ACTIONS(689), - [aux_sym_comparison_operator_token20] = ACTIONS(689), - [aux_sym_comparison_operator_token21] = ACTIONS(689), - [aux_sym_comparison_operator_token22] = ACTIONS(689), - [aux_sym_comparison_operator_token23] = ACTIONS(689), - [aux_sym_comparison_operator_token24] = ACTIONS(689), - [aux_sym_comparison_operator_token25] = ACTIONS(689), - [aux_sym_comparison_operator_token26] = ACTIONS(689), - [aux_sym_comparison_operator_token27] = ACTIONS(689), - [aux_sym_comparison_operator_token28] = ACTIONS(691), - [aux_sym_comparison_operator_token29] = ACTIONS(689), - [aux_sym_comparison_operator_token30] = ACTIONS(689), - [aux_sym_comparison_operator_token31] = ACTIONS(689), - [aux_sym_comparison_operator_token32] = ACTIONS(689), - [aux_sym_comparison_operator_token33] = ACTIONS(689), - [aux_sym_comparison_operator_token34] = ACTIONS(691), - [aux_sym_comparison_operator_token35] = ACTIONS(689), - [aux_sym_comparison_operator_token36] = ACTIONS(689), - [aux_sym_comparison_operator_token37] = ACTIONS(689), - [aux_sym_comparison_operator_token38] = ACTIONS(689), - [aux_sym_comparison_operator_token39] = ACTIONS(689), - [aux_sym_comparison_operator_token40] = ACTIONS(689), - [aux_sym_comparison_operator_token41] = ACTIONS(689), - [aux_sym_comparison_operator_token42] = ACTIONS(689), - [aux_sym_comparison_operator_token43] = ACTIONS(689), - [aux_sym_comparison_operator_token44] = ACTIONS(689), - [aux_sym_comparison_operator_token45] = ACTIONS(689), - [aux_sym_comparison_operator_token46] = ACTIONS(689), - [aux_sym_comparison_operator_token47] = ACTIONS(689), - [aux_sym_comparison_operator_token48] = ACTIONS(689), - [aux_sym_comparison_operator_token49] = ACTIONS(689), - [aux_sym_comparison_operator_token50] = ACTIONS(689), - [aux_sym_format_operator_token1] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(691), - [aux_sym_logical_expression_token1] = ACTIONS(689), - [aux_sym_logical_expression_token2] = ACTIONS(689), - [aux_sym_logical_expression_token3] = ACTIONS(689), - [aux_sym_bitwise_expression_token1] = ACTIONS(689), - [aux_sym_bitwise_expression_token2] = ACTIONS(689), - [aux_sym_bitwise_expression_token3] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_DOT_DOT] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_DOT2] = ACTIONS(691), - [anon_sym_COLON_COLON] = ACTIONS(689), - [anon_sym_RBRACK] = ACTIONS(689), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), + [anon_sym_STAR_EQ] = ACTIONS(703), + [anon_sym_SLASH_EQ] = ACTIONS(703), + [anon_sym_PERCENT_EQ] = ACTIONS(703), + [anon_sym_DASH_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(703), + [anon_sym_2_GT] = ACTIONS(705), + [anon_sym_2_GT_GT] = ACTIONS(703), + [anon_sym_3_GT] = ACTIONS(705), + [anon_sym_3_GT_GT] = ACTIONS(703), + [anon_sym_4_GT] = ACTIONS(705), + [anon_sym_4_GT_GT] = ACTIONS(703), + [anon_sym_5_GT] = ACTIONS(705), + [anon_sym_5_GT_GT] = ACTIONS(703), + [anon_sym_6_GT] = ACTIONS(705), + [anon_sym_6_GT_GT] = ACTIONS(703), + [anon_sym_STAR_GT] = ACTIONS(705), + [anon_sym_STAR_GT_GT] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_STAR_GT_AMP1] = ACTIONS(703), + [anon_sym_2_GT_AMP1] = ACTIONS(703), + [anon_sym_3_GT_AMP1] = ACTIONS(703), + [anon_sym_4_GT_AMP1] = ACTIONS(703), + [anon_sym_5_GT_AMP1] = ACTIONS(703), + [anon_sym_6_GT_AMP1] = ACTIONS(703), + [anon_sym_STAR_GT_AMP2] = ACTIONS(703), + [anon_sym_1_GT_AMP2] = ACTIONS(703), + [anon_sym_3_GT_AMP2] = ACTIONS(703), + [anon_sym_4_GT_AMP2] = ACTIONS(703), + [anon_sym_5_GT_AMP2] = ACTIONS(703), + [anon_sym_6_GT_AMP2] = ACTIONS(703), + [aux_sym_comparison_operator_token1] = ACTIONS(703), + [aux_sym_comparison_operator_token2] = ACTIONS(703), + [aux_sym_comparison_operator_token3] = ACTIONS(703), + [aux_sym_comparison_operator_token4] = ACTIONS(703), + [aux_sym_comparison_operator_token5] = ACTIONS(703), + [aux_sym_comparison_operator_token6] = ACTIONS(703), + [aux_sym_comparison_operator_token7] = ACTIONS(703), + [aux_sym_comparison_operator_token8] = ACTIONS(703), + [aux_sym_comparison_operator_token9] = ACTIONS(703), + [aux_sym_comparison_operator_token10] = ACTIONS(703), + [aux_sym_comparison_operator_token11] = ACTIONS(703), + [aux_sym_comparison_operator_token12] = ACTIONS(703), + [aux_sym_comparison_operator_token13] = ACTIONS(703), + [aux_sym_comparison_operator_token14] = ACTIONS(703), + [aux_sym_comparison_operator_token15] = ACTIONS(703), + [aux_sym_comparison_operator_token16] = ACTIONS(703), + [aux_sym_comparison_operator_token17] = ACTIONS(703), + [aux_sym_comparison_operator_token18] = ACTIONS(703), + [aux_sym_comparison_operator_token19] = ACTIONS(703), + [aux_sym_comparison_operator_token20] = ACTIONS(703), + [aux_sym_comparison_operator_token21] = ACTIONS(703), + [aux_sym_comparison_operator_token22] = ACTIONS(703), + [aux_sym_comparison_operator_token23] = ACTIONS(703), + [aux_sym_comparison_operator_token24] = ACTIONS(703), + [aux_sym_comparison_operator_token25] = ACTIONS(703), + [aux_sym_comparison_operator_token26] = ACTIONS(703), + [aux_sym_comparison_operator_token27] = ACTIONS(703), + [aux_sym_comparison_operator_token28] = ACTIONS(705), + [aux_sym_comparison_operator_token29] = ACTIONS(703), + [aux_sym_comparison_operator_token30] = ACTIONS(703), + [aux_sym_comparison_operator_token31] = ACTIONS(703), + [aux_sym_comparison_operator_token32] = ACTIONS(703), + [aux_sym_comparison_operator_token33] = ACTIONS(703), + [aux_sym_comparison_operator_token34] = ACTIONS(705), + [aux_sym_comparison_operator_token35] = ACTIONS(703), + [aux_sym_comparison_operator_token36] = ACTIONS(703), + [aux_sym_comparison_operator_token37] = ACTIONS(703), + [aux_sym_comparison_operator_token38] = ACTIONS(703), + [aux_sym_comparison_operator_token39] = ACTIONS(703), + [aux_sym_comparison_operator_token40] = ACTIONS(703), + [aux_sym_comparison_operator_token41] = ACTIONS(703), + [aux_sym_comparison_operator_token42] = ACTIONS(703), + [aux_sym_comparison_operator_token43] = ACTIONS(703), + [aux_sym_comparison_operator_token44] = ACTIONS(703), + [aux_sym_comparison_operator_token45] = ACTIONS(703), + [aux_sym_comparison_operator_token46] = ACTIONS(703), + [aux_sym_comparison_operator_token47] = ACTIONS(703), + [aux_sym_comparison_operator_token48] = ACTIONS(703), + [aux_sym_comparison_operator_token49] = ACTIONS(703), + [aux_sym_comparison_operator_token50] = ACTIONS(703), + [aux_sym_format_operator_token1] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(705), + [aux_sym_logical_expression_token1] = ACTIONS(703), + [aux_sym_logical_expression_token2] = ACTIONS(703), + [aux_sym_logical_expression_token3] = ACTIONS(703), + [aux_sym_bitwise_expression_token1] = ACTIONS(703), + [aux_sym_bitwise_expression_token2] = ACTIONS(703), + [aux_sym_bitwise_expression_token3] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_DOT2] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(703), + [anon_sym_RBRACK] = ACTIONS(703), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(703), }, [112] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(693), - [anon_sym_STAR_EQ] = ACTIONS(693), - [anon_sym_SLASH_EQ] = ACTIONS(693), - [anon_sym_PERCENT_EQ] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_2_GT] = ACTIONS(695), - [anon_sym_2_GT_GT] = ACTIONS(693), - [anon_sym_3_GT] = ACTIONS(695), - [anon_sym_3_GT_GT] = ACTIONS(693), - [anon_sym_4_GT] = ACTIONS(695), - [anon_sym_4_GT_GT] = ACTIONS(693), - [anon_sym_5_GT] = ACTIONS(695), - [anon_sym_5_GT_GT] = ACTIONS(693), - [anon_sym_6_GT] = ACTIONS(695), - [anon_sym_6_GT_GT] = ACTIONS(693), - [anon_sym_STAR_GT] = ACTIONS(695), - [anon_sym_STAR_GT_GT] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_STAR_GT_AMP1] = ACTIONS(693), - [anon_sym_2_GT_AMP1] = ACTIONS(693), - [anon_sym_3_GT_AMP1] = ACTIONS(693), - [anon_sym_4_GT_AMP1] = ACTIONS(693), - [anon_sym_5_GT_AMP1] = ACTIONS(693), - [anon_sym_6_GT_AMP1] = ACTIONS(693), - [anon_sym_STAR_GT_AMP2] = ACTIONS(693), - [anon_sym_1_GT_AMP2] = ACTIONS(693), - [anon_sym_3_GT_AMP2] = ACTIONS(693), - [anon_sym_4_GT_AMP2] = ACTIONS(693), - [anon_sym_5_GT_AMP2] = ACTIONS(693), - [anon_sym_6_GT_AMP2] = ACTIONS(693), - [aux_sym_comparison_operator_token1] = ACTIONS(693), - [aux_sym_comparison_operator_token2] = ACTIONS(693), - [aux_sym_comparison_operator_token3] = ACTIONS(693), - [aux_sym_comparison_operator_token4] = ACTIONS(693), - [aux_sym_comparison_operator_token5] = ACTIONS(693), - [aux_sym_comparison_operator_token6] = ACTIONS(693), - [aux_sym_comparison_operator_token7] = ACTIONS(693), - [aux_sym_comparison_operator_token8] = ACTIONS(693), - [aux_sym_comparison_operator_token9] = ACTIONS(693), - [aux_sym_comparison_operator_token10] = ACTIONS(693), - [aux_sym_comparison_operator_token11] = ACTIONS(693), - [aux_sym_comparison_operator_token12] = ACTIONS(693), - [aux_sym_comparison_operator_token13] = ACTIONS(693), - [aux_sym_comparison_operator_token14] = ACTIONS(693), - [aux_sym_comparison_operator_token15] = ACTIONS(693), - [aux_sym_comparison_operator_token16] = ACTIONS(693), - [aux_sym_comparison_operator_token17] = ACTIONS(693), - [aux_sym_comparison_operator_token18] = ACTIONS(693), - [aux_sym_comparison_operator_token19] = ACTIONS(693), - [aux_sym_comparison_operator_token20] = ACTIONS(693), - [aux_sym_comparison_operator_token21] = ACTIONS(693), - [aux_sym_comparison_operator_token22] = ACTIONS(693), - [aux_sym_comparison_operator_token23] = ACTIONS(693), - [aux_sym_comparison_operator_token24] = ACTIONS(693), - [aux_sym_comparison_operator_token25] = ACTIONS(693), - [aux_sym_comparison_operator_token26] = ACTIONS(693), - [aux_sym_comparison_operator_token27] = ACTIONS(693), - [aux_sym_comparison_operator_token28] = ACTIONS(695), - [aux_sym_comparison_operator_token29] = ACTIONS(693), - [aux_sym_comparison_operator_token30] = ACTIONS(693), - [aux_sym_comparison_operator_token31] = ACTIONS(693), - [aux_sym_comparison_operator_token32] = ACTIONS(693), - [aux_sym_comparison_operator_token33] = ACTIONS(693), - [aux_sym_comparison_operator_token34] = ACTIONS(695), - [aux_sym_comparison_operator_token35] = ACTIONS(693), - [aux_sym_comparison_operator_token36] = ACTIONS(693), - [aux_sym_comparison_operator_token37] = ACTIONS(693), - [aux_sym_comparison_operator_token38] = ACTIONS(693), - [aux_sym_comparison_operator_token39] = ACTIONS(693), - [aux_sym_comparison_operator_token40] = ACTIONS(693), - [aux_sym_comparison_operator_token41] = ACTIONS(693), - [aux_sym_comparison_operator_token42] = ACTIONS(693), - [aux_sym_comparison_operator_token43] = ACTIONS(693), - [aux_sym_comparison_operator_token44] = ACTIONS(693), - [aux_sym_comparison_operator_token45] = ACTIONS(693), - [aux_sym_comparison_operator_token46] = ACTIONS(693), - [aux_sym_comparison_operator_token47] = ACTIONS(693), - [aux_sym_comparison_operator_token48] = ACTIONS(693), - [aux_sym_comparison_operator_token49] = ACTIONS(693), - [aux_sym_comparison_operator_token50] = ACTIONS(693), - [aux_sym_format_operator_token1] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(695), - [aux_sym_logical_expression_token1] = ACTIONS(693), - [aux_sym_logical_expression_token2] = ACTIONS(693), - [aux_sym_logical_expression_token3] = ACTIONS(693), - [aux_sym_bitwise_expression_token1] = ACTIONS(693), - [aux_sym_bitwise_expression_token2] = ACTIONS(693), - [aux_sym_bitwise_expression_token3] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_DOT2] = ACTIONS(695), - [anon_sym_COLON_COLON] = ACTIONS(693), - [anon_sym_RBRACK] = ACTIONS(693), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(707), + [anon_sym_STAR_EQ] = ACTIONS(707), + [anon_sym_SLASH_EQ] = ACTIONS(707), + [anon_sym_PERCENT_EQ] = ACTIONS(707), + [anon_sym_DASH_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_2_GT] = ACTIONS(709), + [anon_sym_2_GT_GT] = ACTIONS(707), + [anon_sym_3_GT] = ACTIONS(709), + [anon_sym_3_GT_GT] = ACTIONS(707), + [anon_sym_4_GT] = ACTIONS(709), + [anon_sym_4_GT_GT] = ACTIONS(707), + [anon_sym_5_GT] = ACTIONS(709), + [anon_sym_5_GT_GT] = ACTIONS(707), + [anon_sym_6_GT] = ACTIONS(709), + [anon_sym_6_GT_GT] = ACTIONS(707), + [anon_sym_STAR_GT] = ACTIONS(709), + [anon_sym_STAR_GT_GT] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_STAR_GT_AMP1] = ACTIONS(707), + [anon_sym_2_GT_AMP1] = ACTIONS(707), + [anon_sym_3_GT_AMP1] = ACTIONS(707), + [anon_sym_4_GT_AMP1] = ACTIONS(707), + [anon_sym_5_GT_AMP1] = ACTIONS(707), + [anon_sym_6_GT_AMP1] = ACTIONS(707), + [anon_sym_STAR_GT_AMP2] = ACTIONS(707), + [anon_sym_1_GT_AMP2] = ACTIONS(707), + [anon_sym_3_GT_AMP2] = ACTIONS(707), + [anon_sym_4_GT_AMP2] = ACTIONS(707), + [anon_sym_5_GT_AMP2] = ACTIONS(707), + [anon_sym_6_GT_AMP2] = ACTIONS(707), + [aux_sym_comparison_operator_token1] = ACTIONS(707), + [aux_sym_comparison_operator_token2] = ACTIONS(707), + [aux_sym_comparison_operator_token3] = ACTIONS(707), + [aux_sym_comparison_operator_token4] = ACTIONS(707), + [aux_sym_comparison_operator_token5] = ACTIONS(707), + [aux_sym_comparison_operator_token6] = ACTIONS(707), + [aux_sym_comparison_operator_token7] = ACTIONS(707), + [aux_sym_comparison_operator_token8] = ACTIONS(707), + [aux_sym_comparison_operator_token9] = ACTIONS(707), + [aux_sym_comparison_operator_token10] = ACTIONS(707), + [aux_sym_comparison_operator_token11] = ACTIONS(707), + [aux_sym_comparison_operator_token12] = ACTIONS(707), + [aux_sym_comparison_operator_token13] = ACTIONS(707), + [aux_sym_comparison_operator_token14] = ACTIONS(707), + [aux_sym_comparison_operator_token15] = ACTIONS(707), + [aux_sym_comparison_operator_token16] = ACTIONS(707), + [aux_sym_comparison_operator_token17] = ACTIONS(707), + [aux_sym_comparison_operator_token18] = ACTIONS(707), + [aux_sym_comparison_operator_token19] = ACTIONS(707), + [aux_sym_comparison_operator_token20] = ACTIONS(707), + [aux_sym_comparison_operator_token21] = ACTIONS(707), + [aux_sym_comparison_operator_token22] = ACTIONS(707), + [aux_sym_comparison_operator_token23] = ACTIONS(707), + [aux_sym_comparison_operator_token24] = ACTIONS(707), + [aux_sym_comparison_operator_token25] = ACTIONS(707), + [aux_sym_comparison_operator_token26] = ACTIONS(707), + [aux_sym_comparison_operator_token27] = ACTIONS(707), + [aux_sym_comparison_operator_token28] = ACTIONS(709), + [aux_sym_comparison_operator_token29] = ACTIONS(707), + [aux_sym_comparison_operator_token30] = ACTIONS(707), + [aux_sym_comparison_operator_token31] = ACTIONS(707), + [aux_sym_comparison_operator_token32] = ACTIONS(707), + [aux_sym_comparison_operator_token33] = ACTIONS(707), + [aux_sym_comparison_operator_token34] = ACTIONS(709), + [aux_sym_comparison_operator_token35] = ACTIONS(707), + [aux_sym_comparison_operator_token36] = ACTIONS(707), + [aux_sym_comparison_operator_token37] = ACTIONS(707), + [aux_sym_comparison_operator_token38] = ACTIONS(707), + [aux_sym_comparison_operator_token39] = ACTIONS(707), + [aux_sym_comparison_operator_token40] = ACTIONS(707), + [aux_sym_comparison_operator_token41] = ACTIONS(707), + [aux_sym_comparison_operator_token42] = ACTIONS(707), + [aux_sym_comparison_operator_token43] = ACTIONS(707), + [aux_sym_comparison_operator_token44] = ACTIONS(707), + [aux_sym_comparison_operator_token45] = ACTIONS(707), + [aux_sym_comparison_operator_token46] = ACTIONS(707), + [aux_sym_comparison_operator_token47] = ACTIONS(707), + [aux_sym_comparison_operator_token48] = ACTIONS(707), + [aux_sym_comparison_operator_token49] = ACTIONS(707), + [aux_sym_comparison_operator_token50] = ACTIONS(707), + [aux_sym_format_operator_token1] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(709), + [aux_sym_logical_expression_token1] = ACTIONS(707), + [aux_sym_logical_expression_token2] = ACTIONS(707), + [aux_sym_logical_expression_token3] = ACTIONS(707), + [aux_sym_bitwise_expression_token1] = ACTIONS(707), + [aux_sym_bitwise_expression_token2] = ACTIONS(707), + [aux_sym_bitwise_expression_token3] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_DOT2] = ACTIONS(709), + [anon_sym_COLON_COLON] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(707), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(707), }, [113] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_PLUS_EQ] = ACTIONS(697), - [anon_sym_STAR_EQ] = ACTIONS(697), - [anon_sym_SLASH_EQ] = ACTIONS(697), - [anon_sym_PERCENT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_2_GT] = ACTIONS(699), - [anon_sym_2_GT_GT] = ACTIONS(697), - [anon_sym_3_GT] = ACTIONS(699), - [anon_sym_3_GT_GT] = ACTIONS(697), - [anon_sym_4_GT] = ACTIONS(699), - [anon_sym_4_GT_GT] = ACTIONS(697), - [anon_sym_5_GT] = ACTIONS(699), - [anon_sym_5_GT_GT] = ACTIONS(697), - [anon_sym_6_GT] = ACTIONS(699), - [anon_sym_6_GT_GT] = ACTIONS(697), - [anon_sym_STAR_GT] = ACTIONS(699), - [anon_sym_STAR_GT_GT] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_STAR_GT_AMP1] = ACTIONS(697), - [anon_sym_2_GT_AMP1] = ACTIONS(697), - [anon_sym_3_GT_AMP1] = ACTIONS(697), - [anon_sym_4_GT_AMP1] = ACTIONS(697), - [anon_sym_5_GT_AMP1] = ACTIONS(697), - [anon_sym_6_GT_AMP1] = ACTIONS(697), - [anon_sym_STAR_GT_AMP2] = ACTIONS(697), - [anon_sym_1_GT_AMP2] = ACTIONS(697), - [anon_sym_3_GT_AMP2] = ACTIONS(697), - [anon_sym_4_GT_AMP2] = ACTIONS(697), - [anon_sym_5_GT_AMP2] = ACTIONS(697), - [anon_sym_6_GT_AMP2] = ACTIONS(697), - [aux_sym_comparison_operator_token1] = ACTIONS(697), - [aux_sym_comparison_operator_token2] = ACTIONS(697), - [aux_sym_comparison_operator_token3] = ACTIONS(697), - [aux_sym_comparison_operator_token4] = ACTIONS(697), - [aux_sym_comparison_operator_token5] = ACTIONS(697), - [aux_sym_comparison_operator_token6] = ACTIONS(697), - [aux_sym_comparison_operator_token7] = ACTIONS(697), - [aux_sym_comparison_operator_token8] = ACTIONS(697), - [aux_sym_comparison_operator_token9] = ACTIONS(697), - [aux_sym_comparison_operator_token10] = ACTIONS(697), - [aux_sym_comparison_operator_token11] = ACTIONS(697), - [aux_sym_comparison_operator_token12] = ACTIONS(697), - [aux_sym_comparison_operator_token13] = ACTIONS(697), - [aux_sym_comparison_operator_token14] = ACTIONS(697), - [aux_sym_comparison_operator_token15] = ACTIONS(697), - [aux_sym_comparison_operator_token16] = ACTIONS(697), - [aux_sym_comparison_operator_token17] = ACTIONS(697), - [aux_sym_comparison_operator_token18] = ACTIONS(697), - [aux_sym_comparison_operator_token19] = ACTIONS(697), - [aux_sym_comparison_operator_token20] = ACTIONS(697), - [aux_sym_comparison_operator_token21] = ACTIONS(697), - [aux_sym_comparison_operator_token22] = ACTIONS(697), - [aux_sym_comparison_operator_token23] = ACTIONS(697), - [aux_sym_comparison_operator_token24] = ACTIONS(697), - [aux_sym_comparison_operator_token25] = ACTIONS(697), - [aux_sym_comparison_operator_token26] = ACTIONS(697), - [aux_sym_comparison_operator_token27] = ACTIONS(697), - [aux_sym_comparison_operator_token28] = ACTIONS(699), - [aux_sym_comparison_operator_token29] = ACTIONS(697), - [aux_sym_comparison_operator_token30] = ACTIONS(697), - [aux_sym_comparison_operator_token31] = ACTIONS(697), - [aux_sym_comparison_operator_token32] = ACTIONS(697), - [aux_sym_comparison_operator_token33] = ACTIONS(697), - [aux_sym_comparison_operator_token34] = ACTIONS(699), - [aux_sym_comparison_operator_token35] = ACTIONS(697), - [aux_sym_comparison_operator_token36] = ACTIONS(697), - [aux_sym_comparison_operator_token37] = ACTIONS(697), - [aux_sym_comparison_operator_token38] = ACTIONS(697), - [aux_sym_comparison_operator_token39] = ACTIONS(697), - [aux_sym_comparison_operator_token40] = ACTIONS(697), - [aux_sym_comparison_operator_token41] = ACTIONS(697), - [aux_sym_comparison_operator_token42] = ACTIONS(697), - [aux_sym_comparison_operator_token43] = ACTIONS(697), - [aux_sym_comparison_operator_token44] = ACTIONS(697), - [aux_sym_comparison_operator_token45] = ACTIONS(697), - [aux_sym_comparison_operator_token46] = ACTIONS(697), - [aux_sym_comparison_operator_token47] = ACTIONS(697), - [aux_sym_comparison_operator_token48] = ACTIONS(697), - [aux_sym_comparison_operator_token49] = ACTIONS(697), - [aux_sym_comparison_operator_token50] = ACTIONS(697), - [aux_sym_format_operator_token1] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(699), - [aux_sym_logical_expression_token1] = ACTIONS(697), - [aux_sym_logical_expression_token2] = ACTIONS(697), - [aux_sym_logical_expression_token3] = ACTIONS(697), - [aux_sym_bitwise_expression_token1] = ACTIONS(697), - [aux_sym_bitwise_expression_token2] = ACTIONS(697), - [aux_sym_bitwise_expression_token3] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_DOT2] = ACTIONS(699), - [anon_sym_COLON_COLON] = ACTIONS(697), - [anon_sym_RBRACK] = ACTIONS(697), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_BANG_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_2_GT] = ACTIONS(713), + [anon_sym_2_GT_GT] = ACTIONS(711), + [anon_sym_3_GT] = ACTIONS(713), + [anon_sym_3_GT_GT] = ACTIONS(711), + [anon_sym_4_GT] = ACTIONS(713), + [anon_sym_4_GT_GT] = ACTIONS(711), + [anon_sym_5_GT] = ACTIONS(713), + [anon_sym_5_GT_GT] = ACTIONS(711), + [anon_sym_6_GT] = ACTIONS(713), + [anon_sym_6_GT_GT] = ACTIONS(711), + [anon_sym_STAR_GT] = ACTIONS(713), + [anon_sym_STAR_GT_GT] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_STAR_GT_AMP1] = ACTIONS(711), + [anon_sym_2_GT_AMP1] = ACTIONS(711), + [anon_sym_3_GT_AMP1] = ACTIONS(711), + [anon_sym_4_GT_AMP1] = ACTIONS(711), + [anon_sym_5_GT_AMP1] = ACTIONS(711), + [anon_sym_6_GT_AMP1] = ACTIONS(711), + [anon_sym_STAR_GT_AMP2] = ACTIONS(711), + [anon_sym_1_GT_AMP2] = ACTIONS(711), + [anon_sym_3_GT_AMP2] = ACTIONS(711), + [anon_sym_4_GT_AMP2] = ACTIONS(711), + [anon_sym_5_GT_AMP2] = ACTIONS(711), + [anon_sym_6_GT_AMP2] = ACTIONS(711), + [aux_sym_comparison_operator_token1] = ACTIONS(711), + [aux_sym_comparison_operator_token2] = ACTIONS(711), + [aux_sym_comparison_operator_token3] = ACTIONS(711), + [aux_sym_comparison_operator_token4] = ACTIONS(711), + [aux_sym_comparison_operator_token5] = ACTIONS(711), + [aux_sym_comparison_operator_token6] = ACTIONS(711), + [aux_sym_comparison_operator_token7] = ACTIONS(711), + [aux_sym_comparison_operator_token8] = ACTIONS(711), + [aux_sym_comparison_operator_token9] = ACTIONS(711), + [aux_sym_comparison_operator_token10] = ACTIONS(711), + [aux_sym_comparison_operator_token11] = ACTIONS(711), + [aux_sym_comparison_operator_token12] = ACTIONS(711), + [aux_sym_comparison_operator_token13] = ACTIONS(711), + [aux_sym_comparison_operator_token14] = ACTIONS(711), + [aux_sym_comparison_operator_token15] = ACTIONS(711), + [aux_sym_comparison_operator_token16] = ACTIONS(711), + [aux_sym_comparison_operator_token17] = ACTIONS(711), + [aux_sym_comparison_operator_token18] = ACTIONS(711), + [aux_sym_comparison_operator_token19] = ACTIONS(711), + [aux_sym_comparison_operator_token20] = ACTIONS(711), + [aux_sym_comparison_operator_token21] = ACTIONS(711), + [aux_sym_comparison_operator_token22] = ACTIONS(711), + [aux_sym_comparison_operator_token23] = ACTIONS(711), + [aux_sym_comparison_operator_token24] = ACTIONS(711), + [aux_sym_comparison_operator_token25] = ACTIONS(711), + [aux_sym_comparison_operator_token26] = ACTIONS(711), + [aux_sym_comparison_operator_token27] = ACTIONS(711), + [aux_sym_comparison_operator_token28] = ACTIONS(713), + [aux_sym_comparison_operator_token29] = ACTIONS(711), + [aux_sym_comparison_operator_token30] = ACTIONS(711), + [aux_sym_comparison_operator_token31] = ACTIONS(711), + [aux_sym_comparison_operator_token32] = ACTIONS(711), + [aux_sym_comparison_operator_token33] = ACTIONS(711), + [aux_sym_comparison_operator_token34] = ACTIONS(713), + [aux_sym_comparison_operator_token35] = ACTIONS(711), + [aux_sym_comparison_operator_token36] = ACTIONS(711), + [aux_sym_comparison_operator_token37] = ACTIONS(711), + [aux_sym_comparison_operator_token38] = ACTIONS(711), + [aux_sym_comparison_operator_token39] = ACTIONS(711), + [aux_sym_comparison_operator_token40] = ACTIONS(711), + [aux_sym_comparison_operator_token41] = ACTIONS(711), + [aux_sym_comparison_operator_token42] = ACTIONS(711), + [aux_sym_comparison_operator_token43] = ACTIONS(711), + [aux_sym_comparison_operator_token44] = ACTIONS(711), + [aux_sym_comparison_operator_token45] = ACTIONS(711), + [aux_sym_comparison_operator_token46] = ACTIONS(711), + [aux_sym_comparison_operator_token47] = ACTIONS(711), + [aux_sym_comparison_operator_token48] = ACTIONS(711), + [aux_sym_comparison_operator_token49] = ACTIONS(711), + [aux_sym_comparison_operator_token50] = ACTIONS(711), + [aux_sym_format_operator_token1] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(713), + [aux_sym_logical_expression_token1] = ACTIONS(711), + [aux_sym_logical_expression_token2] = ACTIONS(711), + [aux_sym_logical_expression_token3] = ACTIONS(711), + [aux_sym_bitwise_expression_token1] = ACTIONS(711), + [aux_sym_bitwise_expression_token2] = ACTIONS(711), + [aux_sym_bitwise_expression_token3] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DOT2] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(711), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(711), }, [114] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_PLUS_EQ] = ACTIONS(701), - [anon_sym_STAR_EQ] = ACTIONS(701), - [anon_sym_SLASH_EQ] = ACTIONS(701), - [anon_sym_PERCENT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_2_GT] = ACTIONS(703), - [anon_sym_2_GT_GT] = ACTIONS(701), - [anon_sym_3_GT] = ACTIONS(703), - [anon_sym_3_GT_GT] = ACTIONS(701), - [anon_sym_4_GT] = ACTIONS(703), - [anon_sym_4_GT_GT] = ACTIONS(701), - [anon_sym_5_GT] = ACTIONS(703), - [anon_sym_5_GT_GT] = ACTIONS(701), - [anon_sym_6_GT] = ACTIONS(703), - [anon_sym_6_GT_GT] = ACTIONS(701), - [anon_sym_STAR_GT] = ACTIONS(703), - [anon_sym_STAR_GT_GT] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_STAR_GT_AMP1] = ACTIONS(701), - [anon_sym_2_GT_AMP1] = ACTIONS(701), - [anon_sym_3_GT_AMP1] = ACTIONS(701), - [anon_sym_4_GT_AMP1] = ACTIONS(701), - [anon_sym_5_GT_AMP1] = ACTIONS(701), - [anon_sym_6_GT_AMP1] = ACTIONS(701), - [anon_sym_STAR_GT_AMP2] = ACTIONS(701), - [anon_sym_1_GT_AMP2] = ACTIONS(701), - [anon_sym_3_GT_AMP2] = ACTIONS(701), - [anon_sym_4_GT_AMP2] = ACTIONS(701), - [anon_sym_5_GT_AMP2] = ACTIONS(701), - [anon_sym_6_GT_AMP2] = ACTIONS(701), - [aux_sym_comparison_operator_token1] = ACTIONS(701), - [aux_sym_comparison_operator_token2] = ACTIONS(701), - [aux_sym_comparison_operator_token3] = ACTIONS(701), - [aux_sym_comparison_operator_token4] = ACTIONS(701), - [aux_sym_comparison_operator_token5] = ACTIONS(701), - [aux_sym_comparison_operator_token6] = ACTIONS(701), - [aux_sym_comparison_operator_token7] = ACTIONS(701), - [aux_sym_comparison_operator_token8] = ACTIONS(701), - [aux_sym_comparison_operator_token9] = ACTIONS(701), - [aux_sym_comparison_operator_token10] = ACTIONS(701), - [aux_sym_comparison_operator_token11] = ACTIONS(701), - [aux_sym_comparison_operator_token12] = ACTIONS(701), - [aux_sym_comparison_operator_token13] = ACTIONS(701), - [aux_sym_comparison_operator_token14] = ACTIONS(701), - [aux_sym_comparison_operator_token15] = ACTIONS(701), - [aux_sym_comparison_operator_token16] = ACTIONS(701), - [aux_sym_comparison_operator_token17] = ACTIONS(701), - [aux_sym_comparison_operator_token18] = ACTIONS(701), - [aux_sym_comparison_operator_token19] = ACTIONS(701), - [aux_sym_comparison_operator_token20] = ACTIONS(701), - [aux_sym_comparison_operator_token21] = ACTIONS(701), - [aux_sym_comparison_operator_token22] = ACTIONS(701), - [aux_sym_comparison_operator_token23] = ACTIONS(701), - [aux_sym_comparison_operator_token24] = ACTIONS(701), - [aux_sym_comparison_operator_token25] = ACTIONS(701), - [aux_sym_comparison_operator_token26] = ACTIONS(701), - [aux_sym_comparison_operator_token27] = ACTIONS(701), - [aux_sym_comparison_operator_token28] = ACTIONS(703), - [aux_sym_comparison_operator_token29] = ACTIONS(701), - [aux_sym_comparison_operator_token30] = ACTIONS(701), - [aux_sym_comparison_operator_token31] = ACTIONS(701), - [aux_sym_comparison_operator_token32] = ACTIONS(701), - [aux_sym_comparison_operator_token33] = ACTIONS(701), - [aux_sym_comparison_operator_token34] = ACTIONS(703), - [aux_sym_comparison_operator_token35] = ACTIONS(701), - [aux_sym_comparison_operator_token36] = ACTIONS(701), - [aux_sym_comparison_operator_token37] = ACTIONS(701), - [aux_sym_comparison_operator_token38] = ACTIONS(701), - [aux_sym_comparison_operator_token39] = ACTIONS(701), - [aux_sym_comparison_operator_token40] = ACTIONS(701), - [aux_sym_comparison_operator_token41] = ACTIONS(701), - [aux_sym_comparison_operator_token42] = ACTIONS(701), - [aux_sym_comparison_operator_token43] = ACTIONS(701), - [aux_sym_comparison_operator_token44] = ACTIONS(701), - [aux_sym_comparison_operator_token45] = ACTIONS(701), - [aux_sym_comparison_operator_token46] = ACTIONS(701), - [aux_sym_comparison_operator_token47] = ACTIONS(701), - [aux_sym_comparison_operator_token48] = ACTIONS(701), - [aux_sym_comparison_operator_token49] = ACTIONS(701), - [aux_sym_comparison_operator_token50] = ACTIONS(701), - [aux_sym_format_operator_token1] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PERCENT] = ACTIONS(703), - [aux_sym_logical_expression_token1] = ACTIONS(701), - [aux_sym_logical_expression_token2] = ACTIONS(701), - [aux_sym_logical_expression_token3] = ACTIONS(701), - [aux_sym_bitwise_expression_token1] = ACTIONS(701), - [aux_sym_bitwise_expression_token2] = ACTIONS(701), - [aux_sym_bitwise_expression_token3] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(701), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DOT2] = ACTIONS(703), - [anon_sym_COLON_COLON] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(701), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_2_GT] = ACTIONS(717), + [anon_sym_2_GT_GT] = ACTIONS(715), + [anon_sym_3_GT] = ACTIONS(717), + [anon_sym_3_GT_GT] = ACTIONS(715), + [anon_sym_4_GT] = ACTIONS(717), + [anon_sym_4_GT_GT] = ACTIONS(715), + [anon_sym_5_GT] = ACTIONS(717), + [anon_sym_5_GT_GT] = ACTIONS(715), + [anon_sym_6_GT] = ACTIONS(717), + [anon_sym_6_GT_GT] = ACTIONS(715), + [anon_sym_STAR_GT] = ACTIONS(717), + [anon_sym_STAR_GT_GT] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_STAR_GT_AMP1] = ACTIONS(715), + [anon_sym_2_GT_AMP1] = ACTIONS(715), + [anon_sym_3_GT_AMP1] = ACTIONS(715), + [anon_sym_4_GT_AMP1] = ACTIONS(715), + [anon_sym_5_GT_AMP1] = ACTIONS(715), + [anon_sym_6_GT_AMP1] = ACTIONS(715), + [anon_sym_STAR_GT_AMP2] = ACTIONS(715), + [anon_sym_1_GT_AMP2] = ACTIONS(715), + [anon_sym_3_GT_AMP2] = ACTIONS(715), + [anon_sym_4_GT_AMP2] = ACTIONS(715), + [anon_sym_5_GT_AMP2] = ACTIONS(715), + [anon_sym_6_GT_AMP2] = ACTIONS(715), + [aux_sym_comparison_operator_token1] = ACTIONS(715), + [aux_sym_comparison_operator_token2] = ACTIONS(715), + [aux_sym_comparison_operator_token3] = ACTIONS(715), + [aux_sym_comparison_operator_token4] = ACTIONS(715), + [aux_sym_comparison_operator_token5] = ACTIONS(715), + [aux_sym_comparison_operator_token6] = ACTIONS(715), + [aux_sym_comparison_operator_token7] = ACTIONS(715), + [aux_sym_comparison_operator_token8] = ACTIONS(715), + [aux_sym_comparison_operator_token9] = ACTIONS(715), + [aux_sym_comparison_operator_token10] = ACTIONS(715), + [aux_sym_comparison_operator_token11] = ACTIONS(715), + [aux_sym_comparison_operator_token12] = ACTIONS(715), + [aux_sym_comparison_operator_token13] = ACTIONS(715), + [aux_sym_comparison_operator_token14] = ACTIONS(715), + [aux_sym_comparison_operator_token15] = ACTIONS(715), + [aux_sym_comparison_operator_token16] = ACTIONS(715), + [aux_sym_comparison_operator_token17] = ACTIONS(715), + [aux_sym_comparison_operator_token18] = ACTIONS(715), + [aux_sym_comparison_operator_token19] = ACTIONS(715), + [aux_sym_comparison_operator_token20] = ACTIONS(715), + [aux_sym_comparison_operator_token21] = ACTIONS(715), + [aux_sym_comparison_operator_token22] = ACTIONS(715), + [aux_sym_comparison_operator_token23] = ACTIONS(715), + [aux_sym_comparison_operator_token24] = ACTIONS(715), + [aux_sym_comparison_operator_token25] = ACTIONS(715), + [aux_sym_comparison_operator_token26] = ACTIONS(715), + [aux_sym_comparison_operator_token27] = ACTIONS(715), + [aux_sym_comparison_operator_token28] = ACTIONS(717), + [aux_sym_comparison_operator_token29] = ACTIONS(715), + [aux_sym_comparison_operator_token30] = ACTIONS(715), + [aux_sym_comparison_operator_token31] = ACTIONS(715), + [aux_sym_comparison_operator_token32] = ACTIONS(715), + [aux_sym_comparison_operator_token33] = ACTIONS(715), + [aux_sym_comparison_operator_token34] = ACTIONS(717), + [aux_sym_comparison_operator_token35] = ACTIONS(715), + [aux_sym_comparison_operator_token36] = ACTIONS(715), + [aux_sym_comparison_operator_token37] = ACTIONS(715), + [aux_sym_comparison_operator_token38] = ACTIONS(715), + [aux_sym_comparison_operator_token39] = ACTIONS(715), + [aux_sym_comparison_operator_token40] = ACTIONS(715), + [aux_sym_comparison_operator_token41] = ACTIONS(715), + [aux_sym_comparison_operator_token42] = ACTIONS(715), + [aux_sym_comparison_operator_token43] = ACTIONS(715), + [aux_sym_comparison_operator_token44] = ACTIONS(715), + [aux_sym_comparison_operator_token45] = ACTIONS(715), + [aux_sym_comparison_operator_token46] = ACTIONS(715), + [aux_sym_comparison_operator_token47] = ACTIONS(715), + [aux_sym_comparison_operator_token48] = ACTIONS(715), + [aux_sym_comparison_operator_token49] = ACTIONS(715), + [aux_sym_comparison_operator_token50] = ACTIONS(715), + [aux_sym_format_operator_token1] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(717), + [aux_sym_logical_expression_token1] = ACTIONS(715), + [aux_sym_logical_expression_token2] = ACTIONS(715), + [aux_sym_logical_expression_token3] = ACTIONS(715), + [aux_sym_bitwise_expression_token1] = ACTIONS(715), + [aux_sym_bitwise_expression_token2] = ACTIONS(715), + [aux_sym_bitwise_expression_token3] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_PLUS_PLUS] = ACTIONS(715), + [anon_sym_DASH_DASH] = ACTIONS(715), + [anon_sym_DOT2] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(715), + [anon_sym_RBRACK] = ACTIONS(715), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(715), }, [115] = { + [sym_argument_list] = STATE(122), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_PLUS_EQ] = ACTIONS(705), - [anon_sym_STAR_EQ] = ACTIONS(705), - [anon_sym_SLASH_EQ] = ACTIONS(705), - [anon_sym_PERCENT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_2_GT] = ACTIONS(707), - [anon_sym_2_GT_GT] = ACTIONS(705), - [anon_sym_3_GT] = ACTIONS(707), - [anon_sym_3_GT_GT] = ACTIONS(705), - [anon_sym_4_GT] = ACTIONS(707), - [anon_sym_4_GT_GT] = ACTIONS(705), - [anon_sym_5_GT] = ACTIONS(707), - [anon_sym_5_GT_GT] = ACTIONS(705), - [anon_sym_6_GT] = ACTIONS(707), - [anon_sym_6_GT_GT] = ACTIONS(705), - [anon_sym_STAR_GT] = ACTIONS(707), - [anon_sym_STAR_GT_GT] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_STAR_GT_AMP1] = ACTIONS(705), - [anon_sym_2_GT_AMP1] = ACTIONS(705), - [anon_sym_3_GT_AMP1] = ACTIONS(705), - [anon_sym_4_GT_AMP1] = ACTIONS(705), - [anon_sym_5_GT_AMP1] = ACTIONS(705), - [anon_sym_6_GT_AMP1] = ACTIONS(705), - [anon_sym_STAR_GT_AMP2] = ACTIONS(705), - [anon_sym_1_GT_AMP2] = ACTIONS(705), - [anon_sym_3_GT_AMP2] = ACTIONS(705), - [anon_sym_4_GT_AMP2] = ACTIONS(705), - [anon_sym_5_GT_AMP2] = ACTIONS(705), - [anon_sym_6_GT_AMP2] = ACTIONS(705), - [aux_sym_comparison_operator_token1] = ACTIONS(705), - [aux_sym_comparison_operator_token2] = ACTIONS(705), - [aux_sym_comparison_operator_token3] = ACTIONS(705), - [aux_sym_comparison_operator_token4] = ACTIONS(705), - [aux_sym_comparison_operator_token5] = ACTIONS(705), - [aux_sym_comparison_operator_token6] = ACTIONS(705), - [aux_sym_comparison_operator_token7] = ACTIONS(705), - [aux_sym_comparison_operator_token8] = ACTIONS(705), - [aux_sym_comparison_operator_token9] = ACTIONS(705), - [aux_sym_comparison_operator_token10] = ACTIONS(705), - [aux_sym_comparison_operator_token11] = ACTIONS(705), - [aux_sym_comparison_operator_token12] = ACTIONS(705), - [aux_sym_comparison_operator_token13] = ACTIONS(705), - [aux_sym_comparison_operator_token14] = ACTIONS(705), - [aux_sym_comparison_operator_token15] = ACTIONS(705), - [aux_sym_comparison_operator_token16] = ACTIONS(705), - [aux_sym_comparison_operator_token17] = ACTIONS(705), - [aux_sym_comparison_operator_token18] = ACTIONS(705), - [aux_sym_comparison_operator_token19] = ACTIONS(705), - [aux_sym_comparison_operator_token20] = ACTIONS(705), - [aux_sym_comparison_operator_token21] = ACTIONS(705), - [aux_sym_comparison_operator_token22] = ACTIONS(705), - [aux_sym_comparison_operator_token23] = ACTIONS(705), - [aux_sym_comparison_operator_token24] = ACTIONS(705), - [aux_sym_comparison_operator_token25] = ACTIONS(705), - [aux_sym_comparison_operator_token26] = ACTIONS(705), - [aux_sym_comparison_operator_token27] = ACTIONS(705), - [aux_sym_comparison_operator_token28] = ACTIONS(707), - [aux_sym_comparison_operator_token29] = ACTIONS(705), - [aux_sym_comparison_operator_token30] = ACTIONS(705), - [aux_sym_comparison_operator_token31] = ACTIONS(705), - [aux_sym_comparison_operator_token32] = ACTIONS(705), - [aux_sym_comparison_operator_token33] = ACTIONS(705), - [aux_sym_comparison_operator_token34] = ACTIONS(707), - [aux_sym_comparison_operator_token35] = ACTIONS(705), - [aux_sym_comparison_operator_token36] = ACTIONS(705), - [aux_sym_comparison_operator_token37] = ACTIONS(705), - [aux_sym_comparison_operator_token38] = ACTIONS(705), - [aux_sym_comparison_operator_token39] = ACTIONS(705), - [aux_sym_comparison_operator_token40] = ACTIONS(705), - [aux_sym_comparison_operator_token41] = ACTIONS(705), - [aux_sym_comparison_operator_token42] = ACTIONS(705), - [aux_sym_comparison_operator_token43] = ACTIONS(705), - [aux_sym_comparison_operator_token44] = ACTIONS(705), - [aux_sym_comparison_operator_token45] = ACTIONS(705), - [aux_sym_comparison_operator_token46] = ACTIONS(705), - [aux_sym_comparison_operator_token47] = ACTIONS(705), - [aux_sym_comparison_operator_token48] = ACTIONS(705), - [aux_sym_comparison_operator_token49] = ACTIONS(705), - [aux_sym_comparison_operator_token50] = ACTIONS(705), - [aux_sym_format_operator_token1] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(707), - [aux_sym_logical_expression_token1] = ACTIONS(705), - [aux_sym_logical_expression_token2] = ACTIONS(705), - [aux_sym_logical_expression_token3] = ACTIONS(705), - [aux_sym_bitwise_expression_token1] = ACTIONS(705), - [aux_sym_bitwise_expression_token2] = ACTIONS(705), - [aux_sym_bitwise_expression_token3] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_DOT_DOT] = ACTIONS(705), - [anon_sym_PLUS_PLUS] = ACTIONS(705), - [anon_sym_DASH_DASH] = ACTIONS(705), - [anon_sym_DOT2] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(705), - [anon_sym_RBRACK] = ACTIONS(705), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_2_GT] = ACTIONS(593), + [anon_sym_2_GT_GT] = ACTIONS(591), + [anon_sym_3_GT] = ACTIONS(593), + [anon_sym_3_GT_GT] = ACTIONS(591), + [anon_sym_4_GT] = ACTIONS(593), + [anon_sym_4_GT_GT] = ACTIONS(591), + [anon_sym_5_GT] = ACTIONS(593), + [anon_sym_5_GT_GT] = ACTIONS(591), + [anon_sym_6_GT] = ACTIONS(593), + [anon_sym_6_GT_GT] = ACTIONS(591), + [anon_sym_STAR_GT] = ACTIONS(593), + [anon_sym_STAR_GT_GT] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_STAR_GT_AMP1] = ACTIONS(591), + [anon_sym_2_GT_AMP1] = ACTIONS(591), + [anon_sym_3_GT_AMP1] = ACTIONS(591), + [anon_sym_4_GT_AMP1] = ACTIONS(591), + [anon_sym_5_GT_AMP1] = ACTIONS(591), + [anon_sym_6_GT_AMP1] = ACTIONS(591), + [anon_sym_STAR_GT_AMP2] = ACTIONS(591), + [anon_sym_1_GT_AMP2] = ACTIONS(591), + [anon_sym_3_GT_AMP2] = ACTIONS(591), + [anon_sym_4_GT_AMP2] = ACTIONS(591), + [anon_sym_5_GT_AMP2] = ACTIONS(591), + [anon_sym_6_GT_AMP2] = ACTIONS(591), + [aux_sym_comparison_operator_token1] = ACTIONS(591), + [aux_sym_comparison_operator_token2] = ACTIONS(591), + [aux_sym_comparison_operator_token3] = ACTIONS(591), + [aux_sym_comparison_operator_token4] = ACTIONS(591), + [aux_sym_comparison_operator_token5] = ACTIONS(591), + [aux_sym_comparison_operator_token6] = ACTIONS(591), + [aux_sym_comparison_operator_token7] = ACTIONS(591), + [aux_sym_comparison_operator_token8] = ACTIONS(591), + [aux_sym_comparison_operator_token9] = ACTIONS(591), + [aux_sym_comparison_operator_token10] = ACTIONS(591), + [aux_sym_comparison_operator_token11] = ACTIONS(591), + [aux_sym_comparison_operator_token12] = ACTIONS(591), + [aux_sym_comparison_operator_token13] = ACTIONS(591), + [aux_sym_comparison_operator_token14] = ACTIONS(591), + [aux_sym_comparison_operator_token15] = ACTIONS(591), + [aux_sym_comparison_operator_token16] = ACTIONS(591), + [aux_sym_comparison_operator_token17] = ACTIONS(591), + [aux_sym_comparison_operator_token18] = ACTIONS(591), + [aux_sym_comparison_operator_token19] = ACTIONS(591), + [aux_sym_comparison_operator_token20] = ACTIONS(591), + [aux_sym_comparison_operator_token21] = ACTIONS(591), + [aux_sym_comparison_operator_token22] = ACTIONS(591), + [aux_sym_comparison_operator_token23] = ACTIONS(591), + [aux_sym_comparison_operator_token24] = ACTIONS(591), + [aux_sym_comparison_operator_token25] = ACTIONS(591), + [aux_sym_comparison_operator_token26] = ACTIONS(591), + [aux_sym_comparison_operator_token27] = ACTIONS(591), + [aux_sym_comparison_operator_token28] = ACTIONS(593), + [aux_sym_comparison_operator_token29] = ACTIONS(591), + [aux_sym_comparison_operator_token30] = ACTIONS(591), + [aux_sym_comparison_operator_token31] = ACTIONS(591), + [aux_sym_comparison_operator_token32] = ACTIONS(591), + [aux_sym_comparison_operator_token33] = ACTIONS(591), + [aux_sym_comparison_operator_token34] = ACTIONS(593), + [aux_sym_comparison_operator_token35] = ACTIONS(591), + [aux_sym_comparison_operator_token36] = ACTIONS(591), + [aux_sym_comparison_operator_token37] = ACTIONS(591), + [aux_sym_comparison_operator_token38] = ACTIONS(591), + [aux_sym_comparison_operator_token39] = ACTIONS(591), + [aux_sym_comparison_operator_token40] = ACTIONS(591), + [aux_sym_comparison_operator_token41] = ACTIONS(591), + [aux_sym_comparison_operator_token42] = ACTIONS(591), + [aux_sym_comparison_operator_token43] = ACTIONS(591), + [aux_sym_comparison_operator_token44] = ACTIONS(591), + [aux_sym_comparison_operator_token45] = ACTIONS(591), + [aux_sym_comparison_operator_token46] = ACTIONS(591), + [aux_sym_comparison_operator_token47] = ACTIONS(591), + [aux_sym_comparison_operator_token48] = ACTIONS(591), + [aux_sym_comparison_operator_token49] = ACTIONS(591), + [aux_sym_comparison_operator_token50] = ACTIONS(591), + [aux_sym_format_operator_token1] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_PERCENT] = ACTIONS(593), + [aux_sym_logical_expression_token1] = ACTIONS(591), + [aux_sym_logical_expression_token2] = ACTIONS(591), + [aux_sym_logical_expression_token3] = ACTIONS(591), + [aux_sym_bitwise_expression_token1] = ACTIONS(591), + [aux_sym_bitwise_expression_token2] = ACTIONS(591), + [aux_sym_bitwise_expression_token3] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_BSLASH] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_DOT2] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(591), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(591), + [sym__statement_terminator] = ACTIONS(591), }, [116] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_2_GT] = ACTIONS(711), - [anon_sym_2_GT_GT] = ACTIONS(709), - [anon_sym_3_GT] = ACTIONS(711), - [anon_sym_3_GT_GT] = ACTIONS(709), - [anon_sym_4_GT] = ACTIONS(711), - [anon_sym_4_GT_GT] = ACTIONS(709), - [anon_sym_5_GT] = ACTIONS(711), - [anon_sym_5_GT_GT] = ACTIONS(709), - [anon_sym_6_GT] = ACTIONS(711), - [anon_sym_6_GT_GT] = ACTIONS(709), - [anon_sym_STAR_GT] = ACTIONS(711), - [anon_sym_STAR_GT_GT] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_STAR_GT_AMP1] = ACTIONS(709), - [anon_sym_2_GT_AMP1] = ACTIONS(709), - [anon_sym_3_GT_AMP1] = ACTIONS(709), - [anon_sym_4_GT_AMP1] = ACTIONS(709), - [anon_sym_5_GT_AMP1] = ACTIONS(709), - [anon_sym_6_GT_AMP1] = ACTIONS(709), - [anon_sym_STAR_GT_AMP2] = ACTIONS(709), - [anon_sym_1_GT_AMP2] = ACTIONS(709), - [anon_sym_3_GT_AMP2] = ACTIONS(709), - [anon_sym_4_GT_AMP2] = ACTIONS(709), - [anon_sym_5_GT_AMP2] = ACTIONS(709), - [anon_sym_6_GT_AMP2] = ACTIONS(709), - [aux_sym_comparison_operator_token1] = ACTIONS(709), - [aux_sym_comparison_operator_token2] = ACTIONS(709), - [aux_sym_comparison_operator_token3] = ACTIONS(709), - [aux_sym_comparison_operator_token4] = ACTIONS(709), - [aux_sym_comparison_operator_token5] = ACTIONS(709), - [aux_sym_comparison_operator_token6] = ACTIONS(709), - [aux_sym_comparison_operator_token7] = ACTIONS(709), - [aux_sym_comparison_operator_token8] = ACTIONS(709), - [aux_sym_comparison_operator_token9] = ACTIONS(709), - [aux_sym_comparison_operator_token10] = ACTIONS(709), - [aux_sym_comparison_operator_token11] = ACTIONS(709), - [aux_sym_comparison_operator_token12] = ACTIONS(709), - [aux_sym_comparison_operator_token13] = ACTIONS(709), - [aux_sym_comparison_operator_token14] = ACTIONS(709), - [aux_sym_comparison_operator_token15] = ACTIONS(709), - [aux_sym_comparison_operator_token16] = ACTIONS(709), - [aux_sym_comparison_operator_token17] = ACTIONS(709), - [aux_sym_comparison_operator_token18] = ACTIONS(709), - [aux_sym_comparison_operator_token19] = ACTIONS(709), - [aux_sym_comparison_operator_token20] = ACTIONS(709), - [aux_sym_comparison_operator_token21] = ACTIONS(709), - [aux_sym_comparison_operator_token22] = ACTIONS(709), - [aux_sym_comparison_operator_token23] = ACTIONS(709), - [aux_sym_comparison_operator_token24] = ACTIONS(709), - [aux_sym_comparison_operator_token25] = ACTIONS(709), - [aux_sym_comparison_operator_token26] = ACTIONS(709), - [aux_sym_comparison_operator_token27] = ACTIONS(709), - [aux_sym_comparison_operator_token28] = ACTIONS(711), - [aux_sym_comparison_operator_token29] = ACTIONS(709), - [aux_sym_comparison_operator_token30] = ACTIONS(709), - [aux_sym_comparison_operator_token31] = ACTIONS(709), - [aux_sym_comparison_operator_token32] = ACTIONS(709), - [aux_sym_comparison_operator_token33] = ACTIONS(709), - [aux_sym_comparison_operator_token34] = ACTIONS(711), - [aux_sym_comparison_operator_token35] = ACTIONS(709), - [aux_sym_comparison_operator_token36] = ACTIONS(709), - [aux_sym_comparison_operator_token37] = ACTIONS(709), - [aux_sym_comparison_operator_token38] = ACTIONS(709), - [aux_sym_comparison_operator_token39] = ACTIONS(709), - [aux_sym_comparison_operator_token40] = ACTIONS(709), - [aux_sym_comparison_operator_token41] = ACTIONS(709), - [aux_sym_comparison_operator_token42] = ACTIONS(709), - [aux_sym_comparison_operator_token43] = ACTIONS(709), - [aux_sym_comparison_operator_token44] = ACTIONS(709), - [aux_sym_comparison_operator_token45] = ACTIONS(709), - [aux_sym_comparison_operator_token46] = ACTIONS(709), - [aux_sym_comparison_operator_token47] = ACTIONS(709), - [aux_sym_comparison_operator_token48] = ACTIONS(709), - [aux_sym_comparison_operator_token49] = ACTIONS(709), - [aux_sym_comparison_operator_token50] = ACTIONS(709), - [aux_sym_format_operator_token1] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_COMMA] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(711), - [aux_sym_logical_expression_token1] = ACTIONS(709), - [aux_sym_logical_expression_token2] = ACTIONS(709), - [aux_sym_logical_expression_token3] = ACTIONS(709), - [aux_sym_bitwise_expression_token1] = ACTIONS(709), - [aux_sym_bitwise_expression_token2] = ACTIONS(709), - [aux_sym_bitwise_expression_token3] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(709), - [anon_sym_DASH_DASH] = ACTIONS(709), - [anon_sym_DOT2] = ACTIONS(711), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym_RBRACK] = ACTIONS(709), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(595), + [anon_sym_2_GT] = ACTIONS(597), + [anon_sym_2_GT_GT] = ACTIONS(595), + [anon_sym_3_GT] = ACTIONS(597), + [anon_sym_3_GT_GT] = ACTIONS(595), + [anon_sym_4_GT] = ACTIONS(597), + [anon_sym_4_GT_GT] = ACTIONS(595), + [anon_sym_5_GT] = ACTIONS(597), + [anon_sym_5_GT_GT] = ACTIONS(595), + [anon_sym_6_GT] = ACTIONS(597), + [anon_sym_6_GT_GT] = ACTIONS(595), + [anon_sym_STAR_GT] = ACTIONS(597), + [anon_sym_STAR_GT_GT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_STAR_GT_AMP1] = ACTIONS(595), + [anon_sym_2_GT_AMP1] = ACTIONS(595), + [anon_sym_3_GT_AMP1] = ACTIONS(595), + [anon_sym_4_GT_AMP1] = ACTIONS(595), + [anon_sym_5_GT_AMP1] = ACTIONS(595), + [anon_sym_6_GT_AMP1] = ACTIONS(595), + [anon_sym_STAR_GT_AMP2] = ACTIONS(595), + [anon_sym_1_GT_AMP2] = ACTIONS(595), + [anon_sym_3_GT_AMP2] = ACTIONS(595), + [anon_sym_4_GT_AMP2] = ACTIONS(595), + [anon_sym_5_GT_AMP2] = ACTIONS(595), + [anon_sym_6_GT_AMP2] = ACTIONS(595), + [aux_sym_comparison_operator_token1] = ACTIONS(595), + [aux_sym_comparison_operator_token2] = ACTIONS(595), + [aux_sym_comparison_operator_token3] = ACTIONS(595), + [aux_sym_comparison_operator_token4] = ACTIONS(595), + [aux_sym_comparison_operator_token5] = ACTIONS(595), + [aux_sym_comparison_operator_token6] = ACTIONS(595), + [aux_sym_comparison_operator_token7] = ACTIONS(595), + [aux_sym_comparison_operator_token8] = ACTIONS(595), + [aux_sym_comparison_operator_token9] = ACTIONS(595), + [aux_sym_comparison_operator_token10] = ACTIONS(595), + [aux_sym_comparison_operator_token11] = ACTIONS(595), + [aux_sym_comparison_operator_token12] = ACTIONS(595), + [aux_sym_comparison_operator_token13] = ACTIONS(595), + [aux_sym_comparison_operator_token14] = ACTIONS(595), + [aux_sym_comparison_operator_token15] = ACTIONS(595), + [aux_sym_comparison_operator_token16] = ACTIONS(595), + [aux_sym_comparison_operator_token17] = ACTIONS(595), + [aux_sym_comparison_operator_token18] = ACTIONS(595), + [aux_sym_comparison_operator_token19] = ACTIONS(595), + [aux_sym_comparison_operator_token20] = ACTIONS(595), + [aux_sym_comparison_operator_token21] = ACTIONS(595), + [aux_sym_comparison_operator_token22] = ACTIONS(595), + [aux_sym_comparison_operator_token23] = ACTIONS(595), + [aux_sym_comparison_operator_token24] = ACTIONS(595), + [aux_sym_comparison_operator_token25] = ACTIONS(595), + [aux_sym_comparison_operator_token26] = ACTIONS(595), + [aux_sym_comparison_operator_token27] = ACTIONS(595), + [aux_sym_comparison_operator_token28] = ACTIONS(597), + [aux_sym_comparison_operator_token29] = ACTIONS(595), + [aux_sym_comparison_operator_token30] = ACTIONS(595), + [aux_sym_comparison_operator_token31] = ACTIONS(595), + [aux_sym_comparison_operator_token32] = ACTIONS(595), + [aux_sym_comparison_operator_token33] = ACTIONS(595), + [aux_sym_comparison_operator_token34] = ACTIONS(597), + [aux_sym_comparison_operator_token35] = ACTIONS(595), + [aux_sym_comparison_operator_token36] = ACTIONS(595), + [aux_sym_comparison_operator_token37] = ACTIONS(595), + [aux_sym_comparison_operator_token38] = ACTIONS(595), + [aux_sym_comparison_operator_token39] = ACTIONS(595), + [aux_sym_comparison_operator_token40] = ACTIONS(595), + [aux_sym_comparison_operator_token41] = ACTIONS(595), + [aux_sym_comparison_operator_token42] = ACTIONS(595), + [aux_sym_comparison_operator_token43] = ACTIONS(595), + [aux_sym_comparison_operator_token44] = ACTIONS(595), + [aux_sym_comparison_operator_token45] = ACTIONS(595), + [aux_sym_comparison_operator_token46] = ACTIONS(595), + [aux_sym_comparison_operator_token47] = ACTIONS(595), + [aux_sym_comparison_operator_token48] = ACTIONS(595), + [aux_sym_comparison_operator_token49] = ACTIONS(595), + [aux_sym_comparison_operator_token50] = ACTIONS(595), + [aux_sym_format_operator_token1] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(597), + [aux_sym_logical_expression_token1] = ACTIONS(595), + [aux_sym_logical_expression_token2] = ACTIONS(595), + [aux_sym_logical_expression_token3] = ACTIONS(595), + [aux_sym_bitwise_expression_token1] = ACTIONS(595), + [aux_sym_bitwise_expression_token2] = ACTIONS(595), + [aux_sym_bitwise_expression_token3] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_BSLASH] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DOT2] = ACTIONS(597), + [anon_sym_COLON_COLON] = ACTIONS(595), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(595), + [sym__statement_terminator] = ACTIONS(595), }, [117] = { + [sym_argument_list] = STATE(122), [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_BANG_EQ] = ACTIONS(713), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_2_GT] = ACTIONS(715), - [anon_sym_2_GT_GT] = ACTIONS(713), - [anon_sym_3_GT] = ACTIONS(715), - [anon_sym_3_GT_GT] = ACTIONS(713), - [anon_sym_4_GT] = ACTIONS(715), - [anon_sym_4_GT_GT] = ACTIONS(713), - [anon_sym_5_GT] = ACTIONS(715), - [anon_sym_5_GT_GT] = ACTIONS(713), - [anon_sym_6_GT] = ACTIONS(715), - [anon_sym_6_GT_GT] = ACTIONS(713), - [anon_sym_STAR_GT] = ACTIONS(715), - [anon_sym_STAR_GT_GT] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_STAR_GT_AMP1] = ACTIONS(713), - [anon_sym_2_GT_AMP1] = ACTIONS(713), - [anon_sym_3_GT_AMP1] = ACTIONS(713), - [anon_sym_4_GT_AMP1] = ACTIONS(713), - [anon_sym_5_GT_AMP1] = ACTIONS(713), - [anon_sym_6_GT_AMP1] = ACTIONS(713), - [anon_sym_STAR_GT_AMP2] = ACTIONS(713), - [anon_sym_1_GT_AMP2] = ACTIONS(713), - [anon_sym_3_GT_AMP2] = ACTIONS(713), - [anon_sym_4_GT_AMP2] = ACTIONS(713), - [anon_sym_5_GT_AMP2] = ACTIONS(713), - [anon_sym_6_GT_AMP2] = ACTIONS(713), - [aux_sym_comparison_operator_token1] = ACTIONS(713), - [aux_sym_comparison_operator_token2] = ACTIONS(713), - [aux_sym_comparison_operator_token3] = ACTIONS(713), - [aux_sym_comparison_operator_token4] = ACTIONS(713), - [aux_sym_comparison_operator_token5] = ACTIONS(713), - [aux_sym_comparison_operator_token6] = ACTIONS(713), - [aux_sym_comparison_operator_token7] = ACTIONS(713), - [aux_sym_comparison_operator_token8] = ACTIONS(713), - [aux_sym_comparison_operator_token9] = ACTIONS(713), - [aux_sym_comparison_operator_token10] = ACTIONS(713), - [aux_sym_comparison_operator_token11] = ACTIONS(713), - [aux_sym_comparison_operator_token12] = ACTIONS(713), - [aux_sym_comparison_operator_token13] = ACTIONS(713), - [aux_sym_comparison_operator_token14] = ACTIONS(713), - [aux_sym_comparison_operator_token15] = ACTIONS(713), - [aux_sym_comparison_operator_token16] = ACTIONS(713), - [aux_sym_comparison_operator_token17] = ACTIONS(713), - [aux_sym_comparison_operator_token18] = ACTIONS(713), - [aux_sym_comparison_operator_token19] = ACTIONS(713), - [aux_sym_comparison_operator_token20] = ACTIONS(713), - [aux_sym_comparison_operator_token21] = ACTIONS(713), - [aux_sym_comparison_operator_token22] = ACTIONS(713), - [aux_sym_comparison_operator_token23] = ACTIONS(713), - [aux_sym_comparison_operator_token24] = ACTIONS(713), - [aux_sym_comparison_operator_token25] = ACTIONS(713), - [aux_sym_comparison_operator_token26] = ACTIONS(713), - [aux_sym_comparison_operator_token27] = ACTIONS(713), - [aux_sym_comparison_operator_token28] = ACTIONS(715), - [aux_sym_comparison_operator_token29] = ACTIONS(713), - [aux_sym_comparison_operator_token30] = ACTIONS(713), - [aux_sym_comparison_operator_token31] = ACTIONS(713), - [aux_sym_comparison_operator_token32] = ACTIONS(713), - [aux_sym_comparison_operator_token33] = ACTIONS(713), - [aux_sym_comparison_operator_token34] = ACTIONS(715), - [aux_sym_comparison_operator_token35] = ACTIONS(713), - [aux_sym_comparison_operator_token36] = ACTIONS(713), - [aux_sym_comparison_operator_token37] = ACTIONS(713), - [aux_sym_comparison_operator_token38] = ACTIONS(713), - [aux_sym_comparison_operator_token39] = ACTIONS(713), - [aux_sym_comparison_operator_token40] = ACTIONS(713), - [aux_sym_comparison_operator_token41] = ACTIONS(713), - [aux_sym_comparison_operator_token42] = ACTIONS(713), - [aux_sym_comparison_operator_token43] = ACTIONS(713), - [aux_sym_comparison_operator_token44] = ACTIONS(713), - [aux_sym_comparison_operator_token45] = ACTIONS(713), - [aux_sym_comparison_operator_token46] = ACTIONS(713), - [aux_sym_comparison_operator_token47] = ACTIONS(713), - [aux_sym_comparison_operator_token48] = ACTIONS(713), - [aux_sym_comparison_operator_token49] = ACTIONS(713), - [aux_sym_comparison_operator_token50] = ACTIONS(713), - [aux_sym_format_operator_token1] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(715), - [aux_sym_logical_expression_token1] = ACTIONS(713), - [aux_sym_logical_expression_token2] = ACTIONS(713), - [aux_sym_logical_expression_token3] = ACTIONS(713), - [aux_sym_bitwise_expression_token1] = ACTIONS(713), - [aux_sym_bitwise_expression_token2] = ACTIONS(713), - [aux_sym_bitwise_expression_token3] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(715), - [anon_sym_DASH] = ACTIONS(715), - [anon_sym_SLASH] = ACTIONS(715), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT2] = ACTIONS(715), - [anon_sym_COLON_COLON] = ACTIONS(713), - [anon_sym_RBRACK] = ACTIONS(713), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_2_GT] = ACTIONS(593), + [anon_sym_2_GT_GT] = ACTIONS(591), + [anon_sym_3_GT] = ACTIONS(593), + [anon_sym_3_GT_GT] = ACTIONS(591), + [anon_sym_4_GT] = ACTIONS(593), + [anon_sym_4_GT_GT] = ACTIONS(591), + [anon_sym_5_GT] = ACTIONS(593), + [anon_sym_5_GT_GT] = ACTIONS(591), + [anon_sym_6_GT] = ACTIONS(593), + [anon_sym_6_GT_GT] = ACTIONS(591), + [anon_sym_STAR_GT] = ACTIONS(593), + [anon_sym_STAR_GT_GT] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_STAR_GT_AMP1] = ACTIONS(591), + [anon_sym_2_GT_AMP1] = ACTIONS(591), + [anon_sym_3_GT_AMP1] = ACTIONS(591), + [anon_sym_4_GT_AMP1] = ACTIONS(591), + [anon_sym_5_GT_AMP1] = ACTIONS(591), + [anon_sym_6_GT_AMP1] = ACTIONS(591), + [anon_sym_STAR_GT_AMP2] = ACTIONS(591), + [anon_sym_1_GT_AMP2] = ACTIONS(591), + [anon_sym_3_GT_AMP2] = ACTIONS(591), + [anon_sym_4_GT_AMP2] = ACTIONS(591), + [anon_sym_5_GT_AMP2] = ACTIONS(591), + [anon_sym_6_GT_AMP2] = ACTIONS(591), + [aux_sym_comparison_operator_token1] = ACTIONS(591), + [aux_sym_comparison_operator_token2] = ACTIONS(591), + [aux_sym_comparison_operator_token3] = ACTIONS(591), + [aux_sym_comparison_operator_token4] = ACTIONS(591), + [aux_sym_comparison_operator_token5] = ACTIONS(591), + [aux_sym_comparison_operator_token6] = ACTIONS(591), + [aux_sym_comparison_operator_token7] = ACTIONS(591), + [aux_sym_comparison_operator_token8] = ACTIONS(591), + [aux_sym_comparison_operator_token9] = ACTIONS(591), + [aux_sym_comparison_operator_token10] = ACTIONS(591), + [aux_sym_comparison_operator_token11] = ACTIONS(591), + [aux_sym_comparison_operator_token12] = ACTIONS(591), + [aux_sym_comparison_operator_token13] = ACTIONS(591), + [aux_sym_comparison_operator_token14] = ACTIONS(591), + [aux_sym_comparison_operator_token15] = ACTIONS(591), + [aux_sym_comparison_operator_token16] = ACTIONS(591), + [aux_sym_comparison_operator_token17] = ACTIONS(591), + [aux_sym_comparison_operator_token18] = ACTIONS(591), + [aux_sym_comparison_operator_token19] = ACTIONS(591), + [aux_sym_comparison_operator_token20] = ACTIONS(591), + [aux_sym_comparison_operator_token21] = ACTIONS(591), + [aux_sym_comparison_operator_token22] = ACTIONS(591), + [aux_sym_comparison_operator_token23] = ACTIONS(591), + [aux_sym_comparison_operator_token24] = ACTIONS(591), + [aux_sym_comparison_operator_token25] = ACTIONS(591), + [aux_sym_comparison_operator_token26] = ACTIONS(591), + [aux_sym_comparison_operator_token27] = ACTIONS(591), + [aux_sym_comparison_operator_token28] = ACTIONS(593), + [aux_sym_comparison_operator_token29] = ACTIONS(591), + [aux_sym_comparison_operator_token30] = ACTIONS(591), + [aux_sym_comparison_operator_token31] = ACTIONS(591), + [aux_sym_comparison_operator_token32] = ACTIONS(591), + [aux_sym_comparison_operator_token33] = ACTIONS(591), + [aux_sym_comparison_operator_token34] = ACTIONS(593), + [aux_sym_comparison_operator_token35] = ACTIONS(591), + [aux_sym_comparison_operator_token36] = ACTIONS(591), + [aux_sym_comparison_operator_token37] = ACTIONS(591), + [aux_sym_comparison_operator_token38] = ACTIONS(591), + [aux_sym_comparison_operator_token39] = ACTIONS(591), + [aux_sym_comparison_operator_token40] = ACTIONS(591), + [aux_sym_comparison_operator_token41] = ACTIONS(591), + [aux_sym_comparison_operator_token42] = ACTIONS(591), + [aux_sym_comparison_operator_token43] = ACTIONS(591), + [aux_sym_comparison_operator_token44] = ACTIONS(591), + [aux_sym_comparison_operator_token45] = ACTIONS(591), + [aux_sym_comparison_operator_token46] = ACTIONS(591), + [aux_sym_comparison_operator_token47] = ACTIONS(591), + [aux_sym_comparison_operator_token48] = ACTIONS(591), + [aux_sym_comparison_operator_token49] = ACTIONS(591), + [aux_sym_comparison_operator_token50] = ACTIONS(591), + [aux_sym_format_operator_token1] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_PERCENT] = ACTIONS(593), + [aux_sym_logical_expression_token1] = ACTIONS(591), + [aux_sym_logical_expression_token2] = ACTIONS(591), + [aux_sym_logical_expression_token3] = ACTIONS(591), + [aux_sym_bitwise_expression_token1] = ACTIONS(591), + [aux_sym_bitwise_expression_token2] = ACTIONS(591), + [aux_sym_bitwise_expression_token3] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_BSLASH] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_DOT_DOT] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_DOT2] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(591), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(591), + [sym__statement_terminator] = ACTIONS(591), }, [118] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_BANG_EQ] = ACTIONS(717), - [anon_sym_PLUS_EQ] = ACTIONS(717), - [anon_sym_STAR_EQ] = ACTIONS(717), - [anon_sym_SLASH_EQ] = ACTIONS(717), - [anon_sym_PERCENT_EQ] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_2_GT] = ACTIONS(719), - [anon_sym_2_GT_GT] = ACTIONS(717), - [anon_sym_3_GT] = ACTIONS(719), - [anon_sym_3_GT_GT] = ACTIONS(717), - [anon_sym_4_GT] = ACTIONS(719), - [anon_sym_4_GT_GT] = ACTIONS(717), - [anon_sym_5_GT] = ACTIONS(719), - [anon_sym_5_GT_GT] = ACTIONS(717), - [anon_sym_6_GT] = ACTIONS(719), - [anon_sym_6_GT_GT] = ACTIONS(717), - [anon_sym_STAR_GT] = ACTIONS(719), - [anon_sym_STAR_GT_GT] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_STAR_GT_AMP1] = ACTIONS(717), - [anon_sym_2_GT_AMP1] = ACTIONS(717), - [anon_sym_3_GT_AMP1] = ACTIONS(717), - [anon_sym_4_GT_AMP1] = ACTIONS(717), - [anon_sym_5_GT_AMP1] = ACTIONS(717), - [anon_sym_6_GT_AMP1] = ACTIONS(717), - [anon_sym_STAR_GT_AMP2] = ACTIONS(717), - [anon_sym_1_GT_AMP2] = ACTIONS(717), - [anon_sym_3_GT_AMP2] = ACTIONS(717), - [anon_sym_4_GT_AMP2] = ACTIONS(717), - [anon_sym_5_GT_AMP2] = ACTIONS(717), - [anon_sym_6_GT_AMP2] = ACTIONS(717), - [aux_sym_comparison_operator_token1] = ACTIONS(717), - [aux_sym_comparison_operator_token2] = ACTIONS(717), - [aux_sym_comparison_operator_token3] = ACTIONS(717), - [aux_sym_comparison_operator_token4] = ACTIONS(717), - [aux_sym_comparison_operator_token5] = ACTIONS(717), - [aux_sym_comparison_operator_token6] = ACTIONS(717), - [aux_sym_comparison_operator_token7] = ACTIONS(717), - [aux_sym_comparison_operator_token8] = ACTIONS(717), - [aux_sym_comparison_operator_token9] = ACTIONS(717), - [aux_sym_comparison_operator_token10] = ACTIONS(717), - [aux_sym_comparison_operator_token11] = ACTIONS(717), - [aux_sym_comparison_operator_token12] = ACTIONS(717), - [aux_sym_comparison_operator_token13] = ACTIONS(717), - [aux_sym_comparison_operator_token14] = ACTIONS(717), - [aux_sym_comparison_operator_token15] = ACTIONS(717), - [aux_sym_comparison_operator_token16] = ACTIONS(717), - [aux_sym_comparison_operator_token17] = ACTIONS(717), - [aux_sym_comparison_operator_token18] = ACTIONS(717), - [aux_sym_comparison_operator_token19] = ACTIONS(717), - [aux_sym_comparison_operator_token20] = ACTIONS(717), - [aux_sym_comparison_operator_token21] = ACTIONS(717), - [aux_sym_comparison_operator_token22] = ACTIONS(717), - [aux_sym_comparison_operator_token23] = ACTIONS(717), - [aux_sym_comparison_operator_token24] = ACTIONS(717), - [aux_sym_comparison_operator_token25] = ACTIONS(717), - [aux_sym_comparison_operator_token26] = ACTIONS(717), - [aux_sym_comparison_operator_token27] = ACTIONS(717), - [aux_sym_comparison_operator_token28] = ACTIONS(719), - [aux_sym_comparison_operator_token29] = ACTIONS(717), - [aux_sym_comparison_operator_token30] = ACTIONS(717), - [aux_sym_comparison_operator_token31] = ACTIONS(717), - [aux_sym_comparison_operator_token32] = ACTIONS(717), - [aux_sym_comparison_operator_token33] = ACTIONS(717), - [aux_sym_comparison_operator_token34] = ACTIONS(719), - [aux_sym_comparison_operator_token35] = ACTIONS(717), - [aux_sym_comparison_operator_token36] = ACTIONS(717), - [aux_sym_comparison_operator_token37] = ACTIONS(717), - [aux_sym_comparison_operator_token38] = ACTIONS(717), - [aux_sym_comparison_operator_token39] = ACTIONS(717), - [aux_sym_comparison_operator_token40] = ACTIONS(717), - [aux_sym_comparison_operator_token41] = ACTIONS(717), - [aux_sym_comparison_operator_token42] = ACTIONS(717), - [aux_sym_comparison_operator_token43] = ACTIONS(717), - [aux_sym_comparison_operator_token44] = ACTIONS(717), - [aux_sym_comparison_operator_token45] = ACTIONS(717), - [aux_sym_comparison_operator_token46] = ACTIONS(717), - [aux_sym_comparison_operator_token47] = ACTIONS(717), - [aux_sym_comparison_operator_token48] = ACTIONS(717), - [aux_sym_comparison_operator_token49] = ACTIONS(717), - [aux_sym_comparison_operator_token50] = ACTIONS(717), - [aux_sym_format_operator_token1] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_COMMA] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_PERCENT] = ACTIONS(719), - [aux_sym_logical_expression_token1] = ACTIONS(717), - [aux_sym_logical_expression_token2] = ACTIONS(717), - [aux_sym_logical_expression_token3] = ACTIONS(717), - [aux_sym_bitwise_expression_token1] = ACTIONS(717), - [aux_sym_bitwise_expression_token2] = ACTIONS(717), - [aux_sym_bitwise_expression_token3] = ACTIONS(717), - [anon_sym_PLUS] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [anon_sym_SLASH] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(717), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_DOT_DOT] = ACTIONS(717), - [anon_sym_PLUS_PLUS] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DOT2] = ACTIONS(719), - [anon_sym_COLON_COLON] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(717), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(601), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_2_GT] = ACTIONS(603), + [anon_sym_2_GT_GT] = ACTIONS(601), + [anon_sym_3_GT] = ACTIONS(603), + [anon_sym_3_GT_GT] = ACTIONS(601), + [anon_sym_4_GT] = ACTIONS(603), + [anon_sym_4_GT_GT] = ACTIONS(601), + [anon_sym_5_GT] = ACTIONS(603), + [anon_sym_5_GT_GT] = ACTIONS(601), + [anon_sym_6_GT] = ACTIONS(603), + [anon_sym_6_GT_GT] = ACTIONS(601), + [anon_sym_STAR_GT] = ACTIONS(603), + [anon_sym_STAR_GT_GT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_STAR_GT_AMP1] = ACTIONS(601), + [anon_sym_2_GT_AMP1] = ACTIONS(601), + [anon_sym_3_GT_AMP1] = ACTIONS(601), + [anon_sym_4_GT_AMP1] = ACTIONS(601), + [anon_sym_5_GT_AMP1] = ACTIONS(601), + [anon_sym_6_GT_AMP1] = ACTIONS(601), + [anon_sym_STAR_GT_AMP2] = ACTIONS(601), + [anon_sym_1_GT_AMP2] = ACTIONS(601), + [anon_sym_3_GT_AMP2] = ACTIONS(601), + [anon_sym_4_GT_AMP2] = ACTIONS(601), + [anon_sym_5_GT_AMP2] = ACTIONS(601), + [anon_sym_6_GT_AMP2] = ACTIONS(601), + [aux_sym_comparison_operator_token1] = ACTIONS(601), + [aux_sym_comparison_operator_token2] = ACTIONS(601), + [aux_sym_comparison_operator_token3] = ACTIONS(601), + [aux_sym_comparison_operator_token4] = ACTIONS(601), + [aux_sym_comparison_operator_token5] = ACTIONS(601), + [aux_sym_comparison_operator_token6] = ACTIONS(601), + [aux_sym_comparison_operator_token7] = ACTIONS(601), + [aux_sym_comparison_operator_token8] = ACTIONS(601), + [aux_sym_comparison_operator_token9] = ACTIONS(601), + [aux_sym_comparison_operator_token10] = ACTIONS(601), + [aux_sym_comparison_operator_token11] = ACTIONS(601), + [aux_sym_comparison_operator_token12] = ACTIONS(601), + [aux_sym_comparison_operator_token13] = ACTIONS(601), + [aux_sym_comparison_operator_token14] = ACTIONS(601), + [aux_sym_comparison_operator_token15] = ACTIONS(601), + [aux_sym_comparison_operator_token16] = ACTIONS(601), + [aux_sym_comparison_operator_token17] = ACTIONS(601), + [aux_sym_comparison_operator_token18] = ACTIONS(601), + [aux_sym_comparison_operator_token19] = ACTIONS(601), + [aux_sym_comparison_operator_token20] = ACTIONS(601), + [aux_sym_comparison_operator_token21] = ACTIONS(601), + [aux_sym_comparison_operator_token22] = ACTIONS(601), + [aux_sym_comparison_operator_token23] = ACTIONS(601), + [aux_sym_comparison_operator_token24] = ACTIONS(601), + [aux_sym_comparison_operator_token25] = ACTIONS(601), + [aux_sym_comparison_operator_token26] = ACTIONS(601), + [aux_sym_comparison_operator_token27] = ACTIONS(601), + [aux_sym_comparison_operator_token28] = ACTIONS(603), + [aux_sym_comparison_operator_token29] = ACTIONS(601), + [aux_sym_comparison_operator_token30] = ACTIONS(601), + [aux_sym_comparison_operator_token31] = ACTIONS(601), + [aux_sym_comparison_operator_token32] = ACTIONS(601), + [aux_sym_comparison_operator_token33] = ACTIONS(601), + [aux_sym_comparison_operator_token34] = ACTIONS(603), + [aux_sym_comparison_operator_token35] = ACTIONS(601), + [aux_sym_comparison_operator_token36] = ACTIONS(601), + [aux_sym_comparison_operator_token37] = ACTIONS(601), + [aux_sym_comparison_operator_token38] = ACTIONS(601), + [aux_sym_comparison_operator_token39] = ACTIONS(601), + [aux_sym_comparison_operator_token40] = ACTIONS(601), + [aux_sym_comparison_operator_token41] = ACTIONS(601), + [aux_sym_comparison_operator_token42] = ACTIONS(601), + [aux_sym_comparison_operator_token43] = ACTIONS(601), + [aux_sym_comparison_operator_token44] = ACTIONS(601), + [aux_sym_comparison_operator_token45] = ACTIONS(601), + [aux_sym_comparison_operator_token46] = ACTIONS(601), + [aux_sym_comparison_operator_token47] = ACTIONS(601), + [aux_sym_comparison_operator_token48] = ACTIONS(601), + [aux_sym_comparison_operator_token49] = ACTIONS(601), + [aux_sym_comparison_operator_token50] = ACTIONS(601), + [aux_sym_format_operator_token1] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(603), + [aux_sym_logical_expression_token1] = ACTIONS(601), + [aux_sym_logical_expression_token2] = ACTIONS(601), + [aux_sym_logical_expression_token3] = ACTIONS(601), + [aux_sym_bitwise_expression_token1] = ACTIONS(601), + [aux_sym_bitwise_expression_token2] = ACTIONS(601), + [aux_sym_bitwise_expression_token3] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_SLASH] = ACTIONS(603), + [anon_sym_BSLASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(603), + [anon_sym_DOT_DOT] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_DOT2] = ACTIONS(603), + [anon_sym_COLON_COLON] = ACTIONS(601), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(601), + [sym__statement_terminator] = ACTIONS(601), }, [119] = { [sym_comment] = ACTIONS(81), @@ -41432,6 +42379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(721), [anon_sym_SLASH_EQ] = ACTIONS(721), [anon_sym_PERCENT_EQ] = ACTIONS(721), + [anon_sym_DASH_EQ] = ACTIONS(721), [anon_sym_GT] = ACTIONS(723), [anon_sym_GT_GT] = ACTIONS(721), [anon_sym_2_GT] = ACTIONS(723), @@ -41543,6 +42491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(725), [anon_sym_SLASH_EQ] = ACTIONS(725), [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), [anon_sym_GT] = ACTIONS(727), [anon_sym_GT_GT] = ACTIONS(725), [anon_sym_2_GT] = ACTIONS(727), @@ -41654,6 +42603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(729), [anon_sym_SLASH_EQ] = ACTIONS(729), [anon_sym_PERCENT_EQ] = ACTIONS(729), + [anon_sym_DASH_EQ] = ACTIONS(729), [anon_sym_GT] = ACTIONS(731), [anon_sym_GT_GT] = ACTIONS(729), [anon_sym_2_GT] = ACTIONS(731), @@ -41757,776 +42707,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(729), }, [122] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(647), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(649), - [anon_sym_GT_GT] = ACTIONS(647), - [anon_sym_2_GT] = ACTIONS(649), - [anon_sym_2_GT_GT] = ACTIONS(647), - [anon_sym_3_GT] = ACTIONS(649), - [anon_sym_3_GT_GT] = ACTIONS(647), - [anon_sym_4_GT] = ACTIONS(649), - [anon_sym_4_GT_GT] = ACTIONS(647), - [anon_sym_5_GT] = ACTIONS(649), - [anon_sym_5_GT_GT] = ACTIONS(647), - [anon_sym_6_GT] = ACTIONS(649), - [anon_sym_6_GT_GT] = ACTIONS(647), - [anon_sym_STAR_GT] = ACTIONS(649), - [anon_sym_STAR_GT_GT] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(649), - [anon_sym_STAR_GT_AMP1] = ACTIONS(647), - [anon_sym_2_GT_AMP1] = ACTIONS(647), - [anon_sym_3_GT_AMP1] = ACTIONS(647), - [anon_sym_4_GT_AMP1] = ACTIONS(647), - [anon_sym_5_GT_AMP1] = ACTIONS(647), - [anon_sym_6_GT_AMP1] = ACTIONS(647), - [anon_sym_STAR_GT_AMP2] = ACTIONS(647), - [anon_sym_1_GT_AMP2] = ACTIONS(647), - [anon_sym_3_GT_AMP2] = ACTIONS(647), - [anon_sym_4_GT_AMP2] = ACTIONS(647), - [anon_sym_5_GT_AMP2] = ACTIONS(647), - [anon_sym_6_GT_AMP2] = ACTIONS(647), - [aux_sym_comparison_operator_token1] = ACTIONS(647), - [aux_sym_comparison_operator_token2] = ACTIONS(647), - [aux_sym_comparison_operator_token3] = ACTIONS(647), - [aux_sym_comparison_operator_token4] = ACTIONS(647), - [aux_sym_comparison_operator_token5] = ACTIONS(647), - [aux_sym_comparison_operator_token6] = ACTIONS(647), - [aux_sym_comparison_operator_token7] = ACTIONS(647), - [aux_sym_comparison_operator_token8] = ACTIONS(647), - [aux_sym_comparison_operator_token9] = ACTIONS(647), - [aux_sym_comparison_operator_token10] = ACTIONS(647), - [aux_sym_comparison_operator_token11] = ACTIONS(647), - [aux_sym_comparison_operator_token12] = ACTIONS(647), - [aux_sym_comparison_operator_token13] = ACTIONS(647), - [aux_sym_comparison_operator_token14] = ACTIONS(647), - [aux_sym_comparison_operator_token15] = ACTIONS(647), - [aux_sym_comparison_operator_token16] = ACTIONS(647), - [aux_sym_comparison_operator_token17] = ACTIONS(647), - [aux_sym_comparison_operator_token18] = ACTIONS(647), - [aux_sym_comparison_operator_token19] = ACTIONS(647), - [aux_sym_comparison_operator_token20] = ACTIONS(647), - [aux_sym_comparison_operator_token21] = ACTIONS(647), - [aux_sym_comparison_operator_token22] = ACTIONS(647), - [aux_sym_comparison_operator_token23] = ACTIONS(647), - [aux_sym_comparison_operator_token24] = ACTIONS(647), - [aux_sym_comparison_operator_token25] = ACTIONS(647), - [aux_sym_comparison_operator_token26] = ACTIONS(647), - [aux_sym_comparison_operator_token27] = ACTIONS(647), - [aux_sym_comparison_operator_token28] = ACTIONS(649), - [aux_sym_comparison_operator_token29] = ACTIONS(647), - [aux_sym_comparison_operator_token30] = ACTIONS(647), - [aux_sym_comparison_operator_token31] = ACTIONS(647), - [aux_sym_comparison_operator_token32] = ACTIONS(647), - [aux_sym_comparison_operator_token33] = ACTIONS(647), - [aux_sym_comparison_operator_token34] = ACTIONS(649), - [aux_sym_comparison_operator_token35] = ACTIONS(647), - [aux_sym_comparison_operator_token36] = ACTIONS(647), - [aux_sym_comparison_operator_token37] = ACTIONS(647), - [aux_sym_comparison_operator_token38] = ACTIONS(647), - [aux_sym_comparison_operator_token39] = ACTIONS(647), - [aux_sym_comparison_operator_token40] = ACTIONS(647), - [aux_sym_comparison_operator_token41] = ACTIONS(647), - [aux_sym_comparison_operator_token42] = ACTIONS(647), - [aux_sym_comparison_operator_token43] = ACTIONS(647), - [aux_sym_comparison_operator_token44] = ACTIONS(647), - [aux_sym_comparison_operator_token45] = ACTIONS(647), - [aux_sym_comparison_operator_token46] = ACTIONS(647), - [aux_sym_comparison_operator_token47] = ACTIONS(647), - [aux_sym_comparison_operator_token48] = ACTIONS(647), - [aux_sym_comparison_operator_token49] = ACTIONS(647), - [aux_sym_comparison_operator_token50] = ACTIONS(647), - [aux_sym_format_operator_token1] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(649), - [aux_sym_logical_expression_token1] = ACTIONS(647), - [aux_sym_logical_expression_token2] = ACTIONS(647), - [aux_sym_logical_expression_token3] = ACTIONS(647), - [aux_sym_bitwise_expression_token1] = ACTIONS(647), - [aux_sym_bitwise_expression_token2] = ACTIONS(647), - [aux_sym_bitwise_expression_token3] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(649), - [anon_sym_SLASH] = ACTIONS(649), - [anon_sym_BSLASH] = ACTIONS(647), - [anon_sym_STAR] = ACTIONS(649), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [anon_sym_DOT2] = ACTIONS(649), - [anon_sym_COLON_COLON] = ACTIONS(647), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(647), - [sym__statement_terminator] = ACTIONS(647), - }, - [123] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_PLUS_EQ] = ACTIONS(655), - [anon_sym_STAR_EQ] = ACTIONS(655), - [anon_sym_SLASH_EQ] = ACTIONS(655), - [anon_sym_PERCENT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(655), - [anon_sym_2_GT] = ACTIONS(657), - [anon_sym_2_GT_GT] = ACTIONS(655), - [anon_sym_3_GT] = ACTIONS(657), - [anon_sym_3_GT_GT] = ACTIONS(655), - [anon_sym_4_GT] = ACTIONS(657), - [anon_sym_4_GT_GT] = ACTIONS(655), - [anon_sym_5_GT] = ACTIONS(657), - [anon_sym_5_GT_GT] = ACTIONS(655), - [anon_sym_6_GT] = ACTIONS(657), - [anon_sym_6_GT_GT] = ACTIONS(655), - [anon_sym_STAR_GT] = ACTIONS(657), - [anon_sym_STAR_GT_GT] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_STAR_GT_AMP1] = ACTIONS(655), - [anon_sym_2_GT_AMP1] = ACTIONS(655), - [anon_sym_3_GT_AMP1] = ACTIONS(655), - [anon_sym_4_GT_AMP1] = ACTIONS(655), - [anon_sym_5_GT_AMP1] = ACTIONS(655), - [anon_sym_6_GT_AMP1] = ACTIONS(655), - [anon_sym_STAR_GT_AMP2] = ACTIONS(655), - [anon_sym_1_GT_AMP2] = ACTIONS(655), - [anon_sym_3_GT_AMP2] = ACTIONS(655), - [anon_sym_4_GT_AMP2] = ACTIONS(655), - [anon_sym_5_GT_AMP2] = ACTIONS(655), - [anon_sym_6_GT_AMP2] = ACTIONS(655), - [aux_sym_comparison_operator_token1] = ACTIONS(655), - [aux_sym_comparison_operator_token2] = ACTIONS(655), - [aux_sym_comparison_operator_token3] = ACTIONS(655), - [aux_sym_comparison_operator_token4] = ACTIONS(655), - [aux_sym_comparison_operator_token5] = ACTIONS(655), - [aux_sym_comparison_operator_token6] = ACTIONS(655), - [aux_sym_comparison_operator_token7] = ACTIONS(655), - [aux_sym_comparison_operator_token8] = ACTIONS(655), - [aux_sym_comparison_operator_token9] = ACTIONS(655), - [aux_sym_comparison_operator_token10] = ACTIONS(655), - [aux_sym_comparison_operator_token11] = ACTIONS(655), - [aux_sym_comparison_operator_token12] = ACTIONS(655), - [aux_sym_comparison_operator_token13] = ACTIONS(655), - [aux_sym_comparison_operator_token14] = ACTIONS(655), - [aux_sym_comparison_operator_token15] = ACTIONS(655), - [aux_sym_comparison_operator_token16] = ACTIONS(655), - [aux_sym_comparison_operator_token17] = ACTIONS(655), - [aux_sym_comparison_operator_token18] = ACTIONS(655), - [aux_sym_comparison_operator_token19] = ACTIONS(655), - [aux_sym_comparison_operator_token20] = ACTIONS(655), - [aux_sym_comparison_operator_token21] = ACTIONS(655), - [aux_sym_comparison_operator_token22] = ACTIONS(655), - [aux_sym_comparison_operator_token23] = ACTIONS(655), - [aux_sym_comparison_operator_token24] = ACTIONS(655), - [aux_sym_comparison_operator_token25] = ACTIONS(655), - [aux_sym_comparison_operator_token26] = ACTIONS(655), - [aux_sym_comparison_operator_token27] = ACTIONS(655), - [aux_sym_comparison_operator_token28] = ACTIONS(657), - [aux_sym_comparison_operator_token29] = ACTIONS(655), - [aux_sym_comparison_operator_token30] = ACTIONS(655), - [aux_sym_comparison_operator_token31] = ACTIONS(655), - [aux_sym_comparison_operator_token32] = ACTIONS(655), - [aux_sym_comparison_operator_token33] = ACTIONS(655), - [aux_sym_comparison_operator_token34] = ACTIONS(657), - [aux_sym_comparison_operator_token35] = ACTIONS(655), - [aux_sym_comparison_operator_token36] = ACTIONS(655), - [aux_sym_comparison_operator_token37] = ACTIONS(655), - [aux_sym_comparison_operator_token38] = ACTIONS(655), - [aux_sym_comparison_operator_token39] = ACTIONS(655), - [aux_sym_comparison_operator_token40] = ACTIONS(655), - [aux_sym_comparison_operator_token41] = ACTIONS(655), - [aux_sym_comparison_operator_token42] = ACTIONS(655), - [aux_sym_comparison_operator_token43] = ACTIONS(655), - [aux_sym_comparison_operator_token44] = ACTIONS(655), - [aux_sym_comparison_operator_token45] = ACTIONS(655), - [aux_sym_comparison_operator_token46] = ACTIONS(655), - [aux_sym_comparison_operator_token47] = ACTIONS(655), - [aux_sym_comparison_operator_token48] = ACTIONS(655), - [aux_sym_comparison_operator_token49] = ACTIONS(655), - [aux_sym_comparison_operator_token50] = ACTIONS(655), - [aux_sym_format_operator_token1] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PERCENT] = ACTIONS(657), - [aux_sym_logical_expression_token1] = ACTIONS(655), - [aux_sym_logical_expression_token2] = ACTIONS(655), - [aux_sym_logical_expression_token3] = ACTIONS(655), - [aux_sym_bitwise_expression_token1] = ACTIONS(655), - [aux_sym_bitwise_expression_token2] = ACTIONS(655), - [aux_sym_bitwise_expression_token3] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(655), - [anon_sym_PLUS_PLUS] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(655), - [anon_sym_DOT2] = ACTIONS(657), - [anon_sym_COLON_COLON] = ACTIONS(655), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(655), - [sym__statement_terminator] = ACTIONS(655), - }, - [124] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(659), - [anon_sym_2_GT] = ACTIONS(661), - [anon_sym_2_GT_GT] = ACTIONS(659), - [anon_sym_3_GT] = ACTIONS(661), - [anon_sym_3_GT_GT] = ACTIONS(659), - [anon_sym_4_GT] = ACTIONS(661), - [anon_sym_4_GT_GT] = ACTIONS(659), - [anon_sym_5_GT] = ACTIONS(661), - [anon_sym_5_GT_GT] = ACTIONS(659), - [anon_sym_6_GT] = ACTIONS(661), - [anon_sym_6_GT_GT] = ACTIONS(659), - [anon_sym_STAR_GT] = ACTIONS(661), - [anon_sym_STAR_GT_GT] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_STAR_GT_AMP1] = ACTIONS(659), - [anon_sym_2_GT_AMP1] = ACTIONS(659), - [anon_sym_3_GT_AMP1] = ACTIONS(659), - [anon_sym_4_GT_AMP1] = ACTIONS(659), - [anon_sym_5_GT_AMP1] = ACTIONS(659), - [anon_sym_6_GT_AMP1] = ACTIONS(659), - [anon_sym_STAR_GT_AMP2] = ACTIONS(659), - [anon_sym_1_GT_AMP2] = ACTIONS(659), - [anon_sym_3_GT_AMP2] = ACTIONS(659), - [anon_sym_4_GT_AMP2] = ACTIONS(659), - [anon_sym_5_GT_AMP2] = ACTIONS(659), - [anon_sym_6_GT_AMP2] = ACTIONS(659), - [aux_sym_comparison_operator_token1] = ACTIONS(659), - [aux_sym_comparison_operator_token2] = ACTIONS(659), - [aux_sym_comparison_operator_token3] = ACTIONS(659), - [aux_sym_comparison_operator_token4] = ACTIONS(659), - [aux_sym_comparison_operator_token5] = ACTIONS(659), - [aux_sym_comparison_operator_token6] = ACTIONS(659), - [aux_sym_comparison_operator_token7] = ACTIONS(659), - [aux_sym_comparison_operator_token8] = ACTIONS(659), - [aux_sym_comparison_operator_token9] = ACTIONS(659), - [aux_sym_comparison_operator_token10] = ACTIONS(659), - [aux_sym_comparison_operator_token11] = ACTIONS(659), - [aux_sym_comparison_operator_token12] = ACTIONS(659), - [aux_sym_comparison_operator_token13] = ACTIONS(659), - [aux_sym_comparison_operator_token14] = ACTIONS(659), - [aux_sym_comparison_operator_token15] = ACTIONS(659), - [aux_sym_comparison_operator_token16] = ACTIONS(659), - [aux_sym_comparison_operator_token17] = ACTIONS(659), - [aux_sym_comparison_operator_token18] = ACTIONS(659), - [aux_sym_comparison_operator_token19] = ACTIONS(659), - [aux_sym_comparison_operator_token20] = ACTIONS(659), - [aux_sym_comparison_operator_token21] = ACTIONS(659), - [aux_sym_comparison_operator_token22] = ACTIONS(659), - [aux_sym_comparison_operator_token23] = ACTIONS(659), - [aux_sym_comparison_operator_token24] = ACTIONS(659), - [aux_sym_comparison_operator_token25] = ACTIONS(659), - [aux_sym_comparison_operator_token26] = ACTIONS(659), - [aux_sym_comparison_operator_token27] = ACTIONS(659), - [aux_sym_comparison_operator_token28] = ACTIONS(661), - [aux_sym_comparison_operator_token29] = ACTIONS(659), - [aux_sym_comparison_operator_token30] = ACTIONS(659), - [aux_sym_comparison_operator_token31] = ACTIONS(659), - [aux_sym_comparison_operator_token32] = ACTIONS(659), - [aux_sym_comparison_operator_token33] = ACTIONS(659), - [aux_sym_comparison_operator_token34] = ACTIONS(661), - [aux_sym_comparison_operator_token35] = ACTIONS(659), - [aux_sym_comparison_operator_token36] = ACTIONS(659), - [aux_sym_comparison_operator_token37] = ACTIONS(659), - [aux_sym_comparison_operator_token38] = ACTIONS(659), - [aux_sym_comparison_operator_token39] = ACTIONS(659), - [aux_sym_comparison_operator_token40] = ACTIONS(659), - [aux_sym_comparison_operator_token41] = ACTIONS(659), - [aux_sym_comparison_operator_token42] = ACTIONS(659), - [aux_sym_comparison_operator_token43] = ACTIONS(659), - [aux_sym_comparison_operator_token44] = ACTIONS(659), - [aux_sym_comparison_operator_token45] = ACTIONS(659), - [aux_sym_comparison_operator_token46] = ACTIONS(659), - [aux_sym_comparison_operator_token47] = ACTIONS(659), - [aux_sym_comparison_operator_token48] = ACTIONS(659), - [aux_sym_comparison_operator_token49] = ACTIONS(659), - [aux_sym_comparison_operator_token50] = ACTIONS(659), - [aux_sym_format_operator_token1] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_PERCENT] = ACTIONS(661), - [aux_sym_logical_expression_token1] = ACTIONS(659), - [aux_sym_logical_expression_token2] = ACTIONS(659), - [aux_sym_logical_expression_token3] = ACTIONS(659), - [aux_sym_bitwise_expression_token1] = ACTIONS(659), - [aux_sym_bitwise_expression_token2] = ACTIONS(659), - [aux_sym_bitwise_expression_token3] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_DOT2] = ACTIONS(661), - [anon_sym_COLON_COLON] = ACTIONS(659), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(659), - [sym__statement_terminator] = ACTIONS(659), - }, - [125] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_2_GT] = ACTIONS(665), - [anon_sym_2_GT_GT] = ACTIONS(663), - [anon_sym_3_GT] = ACTIONS(665), - [anon_sym_3_GT_GT] = ACTIONS(663), - [anon_sym_4_GT] = ACTIONS(665), - [anon_sym_4_GT_GT] = ACTIONS(663), - [anon_sym_5_GT] = ACTIONS(665), - [anon_sym_5_GT_GT] = ACTIONS(663), - [anon_sym_6_GT] = ACTIONS(665), - [anon_sym_6_GT_GT] = ACTIONS(663), - [anon_sym_STAR_GT] = ACTIONS(665), - [anon_sym_STAR_GT_GT] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_STAR_GT_AMP1] = ACTIONS(663), - [anon_sym_2_GT_AMP1] = ACTIONS(663), - [anon_sym_3_GT_AMP1] = ACTIONS(663), - [anon_sym_4_GT_AMP1] = ACTIONS(663), - [anon_sym_5_GT_AMP1] = ACTIONS(663), - [anon_sym_6_GT_AMP1] = ACTIONS(663), - [anon_sym_STAR_GT_AMP2] = ACTIONS(663), - [anon_sym_1_GT_AMP2] = ACTIONS(663), - [anon_sym_3_GT_AMP2] = ACTIONS(663), - [anon_sym_4_GT_AMP2] = ACTIONS(663), - [anon_sym_5_GT_AMP2] = ACTIONS(663), - [anon_sym_6_GT_AMP2] = ACTIONS(663), - [aux_sym_comparison_operator_token1] = ACTIONS(663), - [aux_sym_comparison_operator_token2] = ACTIONS(663), - [aux_sym_comparison_operator_token3] = ACTIONS(663), - [aux_sym_comparison_operator_token4] = ACTIONS(663), - [aux_sym_comparison_operator_token5] = ACTIONS(663), - [aux_sym_comparison_operator_token6] = ACTIONS(663), - [aux_sym_comparison_operator_token7] = ACTIONS(663), - [aux_sym_comparison_operator_token8] = ACTIONS(663), - [aux_sym_comparison_operator_token9] = ACTIONS(663), - [aux_sym_comparison_operator_token10] = ACTIONS(663), - [aux_sym_comparison_operator_token11] = ACTIONS(663), - [aux_sym_comparison_operator_token12] = ACTIONS(663), - [aux_sym_comparison_operator_token13] = ACTIONS(663), - [aux_sym_comparison_operator_token14] = ACTIONS(663), - [aux_sym_comparison_operator_token15] = ACTIONS(663), - [aux_sym_comparison_operator_token16] = ACTIONS(663), - [aux_sym_comparison_operator_token17] = ACTIONS(663), - [aux_sym_comparison_operator_token18] = ACTIONS(663), - [aux_sym_comparison_operator_token19] = ACTIONS(663), - [aux_sym_comparison_operator_token20] = ACTIONS(663), - [aux_sym_comparison_operator_token21] = ACTIONS(663), - [aux_sym_comparison_operator_token22] = ACTIONS(663), - [aux_sym_comparison_operator_token23] = ACTIONS(663), - [aux_sym_comparison_operator_token24] = ACTIONS(663), - [aux_sym_comparison_operator_token25] = ACTIONS(663), - [aux_sym_comparison_operator_token26] = ACTIONS(663), - [aux_sym_comparison_operator_token27] = ACTIONS(663), - [aux_sym_comparison_operator_token28] = ACTIONS(665), - [aux_sym_comparison_operator_token29] = ACTIONS(663), - [aux_sym_comparison_operator_token30] = ACTIONS(663), - [aux_sym_comparison_operator_token31] = ACTIONS(663), - [aux_sym_comparison_operator_token32] = ACTIONS(663), - [aux_sym_comparison_operator_token33] = ACTIONS(663), - [aux_sym_comparison_operator_token34] = ACTIONS(665), - [aux_sym_comparison_operator_token35] = ACTIONS(663), - [aux_sym_comparison_operator_token36] = ACTIONS(663), - [aux_sym_comparison_operator_token37] = ACTIONS(663), - [aux_sym_comparison_operator_token38] = ACTIONS(663), - [aux_sym_comparison_operator_token39] = ACTIONS(663), - [aux_sym_comparison_operator_token40] = ACTIONS(663), - [aux_sym_comparison_operator_token41] = ACTIONS(663), - [aux_sym_comparison_operator_token42] = ACTIONS(663), - [aux_sym_comparison_operator_token43] = ACTIONS(663), - [aux_sym_comparison_operator_token44] = ACTIONS(663), - [aux_sym_comparison_operator_token45] = ACTIONS(663), - [aux_sym_comparison_operator_token46] = ACTIONS(663), - [aux_sym_comparison_operator_token47] = ACTIONS(663), - [aux_sym_comparison_operator_token48] = ACTIONS(663), - [aux_sym_comparison_operator_token49] = ACTIONS(663), - [aux_sym_comparison_operator_token50] = ACTIONS(663), - [aux_sym_format_operator_token1] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(665), - [aux_sym_logical_expression_token1] = ACTIONS(663), - [aux_sym_logical_expression_token2] = ACTIONS(663), - [aux_sym_logical_expression_token3] = ACTIONS(663), - [aux_sym_bitwise_expression_token1] = ACTIONS(663), - [aux_sym_bitwise_expression_token2] = ACTIONS(663), - [aux_sym_bitwise_expression_token3] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DOT2] = ACTIONS(665), - [anon_sym_COLON_COLON] = ACTIONS(663), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(663), - [sym__statement_terminator] = ACTIONS(663), - }, - [126] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_PLUS_EQ] = ACTIONS(729), - [anon_sym_STAR_EQ] = ACTIONS(729), - [anon_sym_SLASH_EQ] = ACTIONS(729), - [anon_sym_PERCENT_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_2_GT] = ACTIONS(731), - [anon_sym_2_GT_GT] = ACTIONS(729), - [anon_sym_3_GT] = ACTIONS(731), - [anon_sym_3_GT_GT] = ACTIONS(729), - [anon_sym_4_GT] = ACTIONS(731), - [anon_sym_4_GT_GT] = ACTIONS(729), - [anon_sym_5_GT] = ACTIONS(731), - [anon_sym_5_GT_GT] = ACTIONS(729), - [anon_sym_6_GT] = ACTIONS(731), - [anon_sym_6_GT_GT] = ACTIONS(729), - [anon_sym_STAR_GT] = ACTIONS(731), - [anon_sym_STAR_GT_GT] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_STAR_GT_AMP1] = ACTIONS(729), - [anon_sym_2_GT_AMP1] = ACTIONS(729), - [anon_sym_3_GT_AMP1] = ACTIONS(729), - [anon_sym_4_GT_AMP1] = ACTIONS(729), - [anon_sym_5_GT_AMP1] = ACTIONS(729), - [anon_sym_6_GT_AMP1] = ACTIONS(729), - [anon_sym_STAR_GT_AMP2] = ACTIONS(729), - [anon_sym_1_GT_AMP2] = ACTIONS(729), - [anon_sym_3_GT_AMP2] = ACTIONS(729), - [anon_sym_4_GT_AMP2] = ACTIONS(729), - [anon_sym_5_GT_AMP2] = ACTIONS(729), - [anon_sym_6_GT_AMP2] = ACTIONS(729), - [aux_sym_comparison_operator_token1] = ACTIONS(729), - [aux_sym_comparison_operator_token2] = ACTIONS(729), - [aux_sym_comparison_operator_token3] = ACTIONS(729), - [aux_sym_comparison_operator_token4] = ACTIONS(729), - [aux_sym_comparison_operator_token5] = ACTIONS(729), - [aux_sym_comparison_operator_token6] = ACTIONS(729), - [aux_sym_comparison_operator_token7] = ACTIONS(729), - [aux_sym_comparison_operator_token8] = ACTIONS(729), - [aux_sym_comparison_operator_token9] = ACTIONS(729), - [aux_sym_comparison_operator_token10] = ACTIONS(729), - [aux_sym_comparison_operator_token11] = ACTIONS(729), - [aux_sym_comparison_operator_token12] = ACTIONS(729), - [aux_sym_comparison_operator_token13] = ACTIONS(729), - [aux_sym_comparison_operator_token14] = ACTIONS(729), - [aux_sym_comparison_operator_token15] = ACTIONS(729), - [aux_sym_comparison_operator_token16] = ACTIONS(729), - [aux_sym_comparison_operator_token17] = ACTIONS(729), - [aux_sym_comparison_operator_token18] = ACTIONS(729), - [aux_sym_comparison_operator_token19] = ACTIONS(729), - [aux_sym_comparison_operator_token20] = ACTIONS(729), - [aux_sym_comparison_operator_token21] = ACTIONS(729), - [aux_sym_comparison_operator_token22] = ACTIONS(729), - [aux_sym_comparison_operator_token23] = ACTIONS(729), - [aux_sym_comparison_operator_token24] = ACTIONS(729), - [aux_sym_comparison_operator_token25] = ACTIONS(729), - [aux_sym_comparison_operator_token26] = ACTIONS(729), - [aux_sym_comparison_operator_token27] = ACTIONS(729), - [aux_sym_comparison_operator_token28] = ACTIONS(731), - [aux_sym_comparison_operator_token29] = ACTIONS(729), - [aux_sym_comparison_operator_token30] = ACTIONS(729), - [aux_sym_comparison_operator_token31] = ACTIONS(729), - [aux_sym_comparison_operator_token32] = ACTIONS(729), - [aux_sym_comparison_operator_token33] = ACTIONS(729), - [aux_sym_comparison_operator_token34] = ACTIONS(731), - [aux_sym_comparison_operator_token35] = ACTIONS(729), - [aux_sym_comparison_operator_token36] = ACTIONS(729), - [aux_sym_comparison_operator_token37] = ACTIONS(729), - [aux_sym_comparison_operator_token38] = ACTIONS(729), - [aux_sym_comparison_operator_token39] = ACTIONS(729), - [aux_sym_comparison_operator_token40] = ACTIONS(729), - [aux_sym_comparison_operator_token41] = ACTIONS(729), - [aux_sym_comparison_operator_token42] = ACTIONS(729), - [aux_sym_comparison_operator_token43] = ACTIONS(729), - [aux_sym_comparison_operator_token44] = ACTIONS(729), - [aux_sym_comparison_operator_token45] = ACTIONS(729), - [aux_sym_comparison_operator_token46] = ACTIONS(729), - [aux_sym_comparison_operator_token47] = ACTIONS(729), - [aux_sym_comparison_operator_token48] = ACTIONS(729), - [aux_sym_comparison_operator_token49] = ACTIONS(729), - [aux_sym_comparison_operator_token50] = ACTIONS(729), - [aux_sym_format_operator_token1] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(731), - [aux_sym_logical_expression_token1] = ACTIONS(729), - [aux_sym_logical_expression_token2] = ACTIONS(729), - [aux_sym_logical_expression_token3] = ACTIONS(729), - [aux_sym_bitwise_expression_token1] = ACTIONS(729), - [aux_sym_bitwise_expression_token2] = ACTIONS(729), - [aux_sym_bitwise_expression_token3] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_DOT2] = ACTIONS(731), - [anon_sym_COLON_COLON] = ACTIONS(729), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(729), - [sym__statement_terminator] = ACTIONS(729), - }, - [127] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(689), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_STAR_EQ] = ACTIONS(689), - [anon_sym_SLASH_EQ] = ACTIONS(689), - [anon_sym_PERCENT_EQ] = ACTIONS(689), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_2_GT] = ACTIONS(691), - [anon_sym_2_GT_GT] = ACTIONS(689), - [anon_sym_3_GT] = ACTIONS(691), - [anon_sym_3_GT_GT] = ACTIONS(689), - [anon_sym_4_GT] = ACTIONS(691), - [anon_sym_4_GT_GT] = ACTIONS(689), - [anon_sym_5_GT] = ACTIONS(691), - [anon_sym_5_GT_GT] = ACTIONS(689), - [anon_sym_6_GT] = ACTIONS(691), - [anon_sym_6_GT_GT] = ACTIONS(689), - [anon_sym_STAR_GT] = ACTIONS(691), - [anon_sym_STAR_GT_GT] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_STAR_GT_AMP1] = ACTIONS(689), - [anon_sym_2_GT_AMP1] = ACTIONS(689), - [anon_sym_3_GT_AMP1] = ACTIONS(689), - [anon_sym_4_GT_AMP1] = ACTIONS(689), - [anon_sym_5_GT_AMP1] = ACTIONS(689), - [anon_sym_6_GT_AMP1] = ACTIONS(689), - [anon_sym_STAR_GT_AMP2] = ACTIONS(689), - [anon_sym_1_GT_AMP2] = ACTIONS(689), - [anon_sym_3_GT_AMP2] = ACTIONS(689), - [anon_sym_4_GT_AMP2] = ACTIONS(689), - [anon_sym_5_GT_AMP2] = ACTIONS(689), - [anon_sym_6_GT_AMP2] = ACTIONS(689), - [aux_sym_comparison_operator_token1] = ACTIONS(689), - [aux_sym_comparison_operator_token2] = ACTIONS(689), - [aux_sym_comparison_operator_token3] = ACTIONS(689), - [aux_sym_comparison_operator_token4] = ACTIONS(689), - [aux_sym_comparison_operator_token5] = ACTIONS(689), - [aux_sym_comparison_operator_token6] = ACTIONS(689), - [aux_sym_comparison_operator_token7] = ACTIONS(689), - [aux_sym_comparison_operator_token8] = ACTIONS(689), - [aux_sym_comparison_operator_token9] = ACTIONS(689), - [aux_sym_comparison_operator_token10] = ACTIONS(689), - [aux_sym_comparison_operator_token11] = ACTIONS(689), - [aux_sym_comparison_operator_token12] = ACTIONS(689), - [aux_sym_comparison_operator_token13] = ACTIONS(689), - [aux_sym_comparison_operator_token14] = ACTIONS(689), - [aux_sym_comparison_operator_token15] = ACTIONS(689), - [aux_sym_comparison_operator_token16] = ACTIONS(689), - [aux_sym_comparison_operator_token17] = ACTIONS(689), - [aux_sym_comparison_operator_token18] = ACTIONS(689), - [aux_sym_comparison_operator_token19] = ACTIONS(689), - [aux_sym_comparison_operator_token20] = ACTIONS(689), - [aux_sym_comparison_operator_token21] = ACTIONS(689), - [aux_sym_comparison_operator_token22] = ACTIONS(689), - [aux_sym_comparison_operator_token23] = ACTIONS(689), - [aux_sym_comparison_operator_token24] = ACTIONS(689), - [aux_sym_comparison_operator_token25] = ACTIONS(689), - [aux_sym_comparison_operator_token26] = ACTIONS(689), - [aux_sym_comparison_operator_token27] = ACTIONS(689), - [aux_sym_comparison_operator_token28] = ACTIONS(691), - [aux_sym_comparison_operator_token29] = ACTIONS(689), - [aux_sym_comparison_operator_token30] = ACTIONS(689), - [aux_sym_comparison_operator_token31] = ACTIONS(689), - [aux_sym_comparison_operator_token32] = ACTIONS(689), - [aux_sym_comparison_operator_token33] = ACTIONS(689), - [aux_sym_comparison_operator_token34] = ACTIONS(691), - [aux_sym_comparison_operator_token35] = ACTIONS(689), - [aux_sym_comparison_operator_token36] = ACTIONS(689), - [aux_sym_comparison_operator_token37] = ACTIONS(689), - [aux_sym_comparison_operator_token38] = ACTIONS(689), - [aux_sym_comparison_operator_token39] = ACTIONS(689), - [aux_sym_comparison_operator_token40] = ACTIONS(689), - [aux_sym_comparison_operator_token41] = ACTIONS(689), - [aux_sym_comparison_operator_token42] = ACTIONS(689), - [aux_sym_comparison_operator_token43] = ACTIONS(689), - [aux_sym_comparison_operator_token44] = ACTIONS(689), - [aux_sym_comparison_operator_token45] = ACTIONS(689), - [aux_sym_comparison_operator_token46] = ACTIONS(689), - [aux_sym_comparison_operator_token47] = ACTIONS(689), - [aux_sym_comparison_operator_token48] = ACTIONS(689), - [aux_sym_comparison_operator_token49] = ACTIONS(689), - [aux_sym_comparison_operator_token50] = ACTIONS(689), - [aux_sym_format_operator_token1] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_PERCENT] = ACTIONS(691), - [aux_sym_logical_expression_token1] = ACTIONS(689), - [aux_sym_logical_expression_token2] = ACTIONS(689), - [aux_sym_logical_expression_token3] = ACTIONS(689), - [aux_sym_bitwise_expression_token1] = ACTIONS(689), - [aux_sym_bitwise_expression_token2] = ACTIONS(689), - [aux_sym_bitwise_expression_token3] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(689), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_DOT_DOT] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_DOT2] = ACTIONS(691), - [anon_sym_COLON_COLON] = ACTIONS(689), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(689), - [sym__statement_terminator] = ACTIONS(689), - }, - [128] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(671), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_2_GT] = ACTIONS(673), - [anon_sym_2_GT_GT] = ACTIONS(671), - [anon_sym_3_GT] = ACTIONS(673), - [anon_sym_3_GT_GT] = ACTIONS(671), - [anon_sym_4_GT] = ACTIONS(673), - [anon_sym_4_GT_GT] = ACTIONS(671), - [anon_sym_5_GT] = ACTIONS(673), - [anon_sym_5_GT_GT] = ACTIONS(671), - [anon_sym_6_GT] = ACTIONS(673), - [anon_sym_6_GT_GT] = ACTIONS(671), - [anon_sym_STAR_GT] = ACTIONS(673), - [anon_sym_STAR_GT_GT] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_STAR_GT_AMP1] = ACTIONS(671), - [anon_sym_2_GT_AMP1] = ACTIONS(671), - [anon_sym_3_GT_AMP1] = ACTIONS(671), - [anon_sym_4_GT_AMP1] = ACTIONS(671), - [anon_sym_5_GT_AMP1] = ACTIONS(671), - [anon_sym_6_GT_AMP1] = ACTIONS(671), - [anon_sym_STAR_GT_AMP2] = ACTIONS(671), - [anon_sym_1_GT_AMP2] = ACTIONS(671), - [anon_sym_3_GT_AMP2] = ACTIONS(671), - [anon_sym_4_GT_AMP2] = ACTIONS(671), - [anon_sym_5_GT_AMP2] = ACTIONS(671), - [anon_sym_6_GT_AMP2] = ACTIONS(671), - [aux_sym_comparison_operator_token1] = ACTIONS(671), - [aux_sym_comparison_operator_token2] = ACTIONS(671), - [aux_sym_comparison_operator_token3] = ACTIONS(671), - [aux_sym_comparison_operator_token4] = ACTIONS(671), - [aux_sym_comparison_operator_token5] = ACTIONS(671), - [aux_sym_comparison_operator_token6] = ACTIONS(671), - [aux_sym_comparison_operator_token7] = ACTIONS(671), - [aux_sym_comparison_operator_token8] = ACTIONS(671), - [aux_sym_comparison_operator_token9] = ACTIONS(671), - [aux_sym_comparison_operator_token10] = ACTIONS(671), - [aux_sym_comparison_operator_token11] = ACTIONS(671), - [aux_sym_comparison_operator_token12] = ACTIONS(671), - [aux_sym_comparison_operator_token13] = ACTIONS(671), - [aux_sym_comparison_operator_token14] = ACTIONS(671), - [aux_sym_comparison_operator_token15] = ACTIONS(671), - [aux_sym_comparison_operator_token16] = ACTIONS(671), - [aux_sym_comparison_operator_token17] = ACTIONS(671), - [aux_sym_comparison_operator_token18] = ACTIONS(671), - [aux_sym_comparison_operator_token19] = ACTIONS(671), - [aux_sym_comparison_operator_token20] = ACTIONS(671), - [aux_sym_comparison_operator_token21] = ACTIONS(671), - [aux_sym_comparison_operator_token22] = ACTIONS(671), - [aux_sym_comparison_operator_token23] = ACTIONS(671), - [aux_sym_comparison_operator_token24] = ACTIONS(671), - [aux_sym_comparison_operator_token25] = ACTIONS(671), - [aux_sym_comparison_operator_token26] = ACTIONS(671), - [aux_sym_comparison_operator_token27] = ACTIONS(671), - [aux_sym_comparison_operator_token28] = ACTIONS(673), - [aux_sym_comparison_operator_token29] = ACTIONS(671), - [aux_sym_comparison_operator_token30] = ACTIONS(671), - [aux_sym_comparison_operator_token31] = ACTIONS(671), - [aux_sym_comparison_operator_token32] = ACTIONS(671), - [aux_sym_comparison_operator_token33] = ACTIONS(671), - [aux_sym_comparison_operator_token34] = ACTIONS(673), - [aux_sym_comparison_operator_token35] = ACTIONS(671), - [aux_sym_comparison_operator_token36] = ACTIONS(671), - [aux_sym_comparison_operator_token37] = ACTIONS(671), - [aux_sym_comparison_operator_token38] = ACTIONS(671), - [aux_sym_comparison_operator_token39] = ACTIONS(671), - [aux_sym_comparison_operator_token40] = ACTIONS(671), - [aux_sym_comparison_operator_token41] = ACTIONS(671), - [aux_sym_comparison_operator_token42] = ACTIONS(671), - [aux_sym_comparison_operator_token43] = ACTIONS(671), - [aux_sym_comparison_operator_token44] = ACTIONS(671), - [aux_sym_comparison_operator_token45] = ACTIONS(671), - [aux_sym_comparison_operator_token46] = ACTIONS(671), - [aux_sym_comparison_operator_token47] = ACTIONS(671), - [aux_sym_comparison_operator_token48] = ACTIONS(671), - [aux_sym_comparison_operator_token49] = ACTIONS(671), - [aux_sym_comparison_operator_token50] = ACTIONS(671), - [aux_sym_format_operator_token1] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(673), - [aux_sym_logical_expression_token1] = ACTIONS(671), - [aux_sym_logical_expression_token2] = ACTIONS(671), - [aux_sym_logical_expression_token3] = ACTIONS(671), - [aux_sym_bitwise_expression_token1] = ACTIONS(671), - [aux_sym_bitwise_expression_token2] = ACTIONS(671), - [aux_sym_bitwise_expression_token3] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(671), - [anon_sym_PLUS_PLUS] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(671), - [anon_sym_DOT2] = ACTIONS(673), - [anon_sym_COLON_COLON] = ACTIONS(671), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(671), - [sym__statement_terminator] = ACTIONS(671), - }, - [129] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(679), [anon_sym_EQ] = ACTIONS(679), @@ -42535,6 +42715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(679), [anon_sym_SLASH_EQ] = ACTIONS(679), [anon_sym_PERCENT_EQ] = ACTIONS(679), + [anon_sym_DASH_EQ] = ACTIONS(679), [anon_sym_GT] = ACTIONS(681), [anon_sym_GT_GT] = ACTIONS(679), [anon_sym_2_GT] = ACTIONS(681), @@ -42636,1655 +42817,2447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_invokation_foreach_expression_token1] = ACTIONS(679), [sym__statement_terminator] = ACTIONS(679), }, + [123] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_BANG_EQ] = ACTIONS(691), + [anon_sym_PLUS_EQ] = ACTIONS(691), + [anon_sym_STAR_EQ] = ACTIONS(691), + [anon_sym_SLASH_EQ] = ACTIONS(691), + [anon_sym_PERCENT_EQ] = ACTIONS(691), + [anon_sym_DASH_EQ] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_2_GT] = ACTIONS(693), + [anon_sym_2_GT_GT] = ACTIONS(691), + [anon_sym_3_GT] = ACTIONS(693), + [anon_sym_3_GT_GT] = ACTIONS(691), + [anon_sym_4_GT] = ACTIONS(693), + [anon_sym_4_GT_GT] = ACTIONS(691), + [anon_sym_5_GT] = ACTIONS(693), + [anon_sym_5_GT_GT] = ACTIONS(691), + [anon_sym_6_GT] = ACTIONS(693), + [anon_sym_6_GT_GT] = ACTIONS(691), + [anon_sym_STAR_GT] = ACTIONS(693), + [anon_sym_STAR_GT_GT] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_STAR_GT_AMP1] = ACTIONS(691), + [anon_sym_2_GT_AMP1] = ACTIONS(691), + [anon_sym_3_GT_AMP1] = ACTIONS(691), + [anon_sym_4_GT_AMP1] = ACTIONS(691), + [anon_sym_5_GT_AMP1] = ACTIONS(691), + [anon_sym_6_GT_AMP1] = ACTIONS(691), + [anon_sym_STAR_GT_AMP2] = ACTIONS(691), + [anon_sym_1_GT_AMP2] = ACTIONS(691), + [anon_sym_3_GT_AMP2] = ACTIONS(691), + [anon_sym_4_GT_AMP2] = ACTIONS(691), + [anon_sym_5_GT_AMP2] = ACTIONS(691), + [anon_sym_6_GT_AMP2] = ACTIONS(691), + [aux_sym_comparison_operator_token1] = ACTIONS(691), + [aux_sym_comparison_operator_token2] = ACTIONS(691), + [aux_sym_comparison_operator_token3] = ACTIONS(691), + [aux_sym_comparison_operator_token4] = ACTIONS(691), + [aux_sym_comparison_operator_token5] = ACTIONS(691), + [aux_sym_comparison_operator_token6] = ACTIONS(691), + [aux_sym_comparison_operator_token7] = ACTIONS(691), + [aux_sym_comparison_operator_token8] = ACTIONS(691), + [aux_sym_comparison_operator_token9] = ACTIONS(691), + [aux_sym_comparison_operator_token10] = ACTIONS(691), + [aux_sym_comparison_operator_token11] = ACTIONS(691), + [aux_sym_comparison_operator_token12] = ACTIONS(691), + [aux_sym_comparison_operator_token13] = ACTIONS(691), + [aux_sym_comparison_operator_token14] = ACTIONS(691), + [aux_sym_comparison_operator_token15] = ACTIONS(691), + [aux_sym_comparison_operator_token16] = ACTIONS(691), + [aux_sym_comparison_operator_token17] = ACTIONS(691), + [aux_sym_comparison_operator_token18] = ACTIONS(691), + [aux_sym_comparison_operator_token19] = ACTIONS(691), + [aux_sym_comparison_operator_token20] = ACTIONS(691), + [aux_sym_comparison_operator_token21] = ACTIONS(691), + [aux_sym_comparison_operator_token22] = ACTIONS(691), + [aux_sym_comparison_operator_token23] = ACTIONS(691), + [aux_sym_comparison_operator_token24] = ACTIONS(691), + [aux_sym_comparison_operator_token25] = ACTIONS(691), + [aux_sym_comparison_operator_token26] = ACTIONS(691), + [aux_sym_comparison_operator_token27] = ACTIONS(691), + [aux_sym_comparison_operator_token28] = ACTIONS(693), + [aux_sym_comparison_operator_token29] = ACTIONS(691), + [aux_sym_comparison_operator_token30] = ACTIONS(691), + [aux_sym_comparison_operator_token31] = ACTIONS(691), + [aux_sym_comparison_operator_token32] = ACTIONS(691), + [aux_sym_comparison_operator_token33] = ACTIONS(691), + [aux_sym_comparison_operator_token34] = ACTIONS(693), + [aux_sym_comparison_operator_token35] = ACTIONS(691), + [aux_sym_comparison_operator_token36] = ACTIONS(691), + [aux_sym_comparison_operator_token37] = ACTIONS(691), + [aux_sym_comparison_operator_token38] = ACTIONS(691), + [aux_sym_comparison_operator_token39] = ACTIONS(691), + [aux_sym_comparison_operator_token40] = ACTIONS(691), + [aux_sym_comparison_operator_token41] = ACTIONS(691), + [aux_sym_comparison_operator_token42] = ACTIONS(691), + [aux_sym_comparison_operator_token43] = ACTIONS(691), + [aux_sym_comparison_operator_token44] = ACTIONS(691), + [aux_sym_comparison_operator_token45] = ACTIONS(691), + [aux_sym_comparison_operator_token46] = ACTIONS(691), + [aux_sym_comparison_operator_token47] = ACTIONS(691), + [aux_sym_comparison_operator_token48] = ACTIONS(691), + [aux_sym_comparison_operator_token49] = ACTIONS(691), + [aux_sym_comparison_operator_token50] = ACTIONS(691), + [aux_sym_format_operator_token1] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(691), + [anon_sym_PERCENT] = ACTIONS(693), + [aux_sym_logical_expression_token1] = ACTIONS(691), + [aux_sym_logical_expression_token2] = ACTIONS(691), + [aux_sym_logical_expression_token3] = ACTIONS(691), + [aux_sym_bitwise_expression_token1] = ACTIONS(691), + [aux_sym_bitwise_expression_token2] = ACTIONS(691), + [aux_sym_bitwise_expression_token3] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_SLASH] = ACTIONS(693), + [anon_sym_BSLASH] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DOT2] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(691), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(691), + [sym__statement_terminator] = ACTIONS(691), + }, + [124] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(609), + [anon_sym_2_GT] = ACTIONS(611), + [anon_sym_2_GT_GT] = ACTIONS(609), + [anon_sym_3_GT] = ACTIONS(611), + [anon_sym_3_GT_GT] = ACTIONS(609), + [anon_sym_4_GT] = ACTIONS(611), + [anon_sym_4_GT_GT] = ACTIONS(609), + [anon_sym_5_GT] = ACTIONS(611), + [anon_sym_5_GT_GT] = ACTIONS(609), + [anon_sym_6_GT] = ACTIONS(611), + [anon_sym_6_GT_GT] = ACTIONS(609), + [anon_sym_STAR_GT] = ACTIONS(611), + [anon_sym_STAR_GT_GT] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_STAR_GT_AMP1] = ACTIONS(609), + [anon_sym_2_GT_AMP1] = ACTIONS(609), + [anon_sym_3_GT_AMP1] = ACTIONS(609), + [anon_sym_4_GT_AMP1] = ACTIONS(609), + [anon_sym_5_GT_AMP1] = ACTIONS(609), + [anon_sym_6_GT_AMP1] = ACTIONS(609), + [anon_sym_STAR_GT_AMP2] = ACTIONS(609), + [anon_sym_1_GT_AMP2] = ACTIONS(609), + [anon_sym_3_GT_AMP2] = ACTIONS(609), + [anon_sym_4_GT_AMP2] = ACTIONS(609), + [anon_sym_5_GT_AMP2] = ACTIONS(609), + [anon_sym_6_GT_AMP2] = ACTIONS(609), + [aux_sym_comparison_operator_token1] = ACTIONS(609), + [aux_sym_comparison_operator_token2] = ACTIONS(609), + [aux_sym_comparison_operator_token3] = ACTIONS(609), + [aux_sym_comparison_operator_token4] = ACTIONS(609), + [aux_sym_comparison_operator_token5] = ACTIONS(609), + [aux_sym_comparison_operator_token6] = ACTIONS(609), + [aux_sym_comparison_operator_token7] = ACTIONS(609), + [aux_sym_comparison_operator_token8] = ACTIONS(609), + [aux_sym_comparison_operator_token9] = ACTIONS(609), + [aux_sym_comparison_operator_token10] = ACTIONS(609), + [aux_sym_comparison_operator_token11] = ACTIONS(609), + [aux_sym_comparison_operator_token12] = ACTIONS(609), + [aux_sym_comparison_operator_token13] = ACTIONS(609), + [aux_sym_comparison_operator_token14] = ACTIONS(609), + [aux_sym_comparison_operator_token15] = ACTIONS(609), + [aux_sym_comparison_operator_token16] = ACTIONS(609), + [aux_sym_comparison_operator_token17] = ACTIONS(609), + [aux_sym_comparison_operator_token18] = ACTIONS(609), + [aux_sym_comparison_operator_token19] = ACTIONS(609), + [aux_sym_comparison_operator_token20] = ACTIONS(609), + [aux_sym_comparison_operator_token21] = ACTIONS(609), + [aux_sym_comparison_operator_token22] = ACTIONS(609), + [aux_sym_comparison_operator_token23] = ACTIONS(609), + [aux_sym_comparison_operator_token24] = ACTIONS(609), + [aux_sym_comparison_operator_token25] = ACTIONS(609), + [aux_sym_comparison_operator_token26] = ACTIONS(609), + [aux_sym_comparison_operator_token27] = ACTIONS(609), + [aux_sym_comparison_operator_token28] = ACTIONS(611), + [aux_sym_comparison_operator_token29] = ACTIONS(609), + [aux_sym_comparison_operator_token30] = ACTIONS(609), + [aux_sym_comparison_operator_token31] = ACTIONS(609), + [aux_sym_comparison_operator_token32] = ACTIONS(609), + [aux_sym_comparison_operator_token33] = ACTIONS(609), + [aux_sym_comparison_operator_token34] = ACTIONS(611), + [aux_sym_comparison_operator_token35] = ACTIONS(609), + [aux_sym_comparison_operator_token36] = ACTIONS(609), + [aux_sym_comparison_operator_token37] = ACTIONS(609), + [aux_sym_comparison_operator_token38] = ACTIONS(609), + [aux_sym_comparison_operator_token39] = ACTIONS(609), + [aux_sym_comparison_operator_token40] = ACTIONS(609), + [aux_sym_comparison_operator_token41] = ACTIONS(609), + [aux_sym_comparison_operator_token42] = ACTIONS(609), + [aux_sym_comparison_operator_token43] = ACTIONS(609), + [aux_sym_comparison_operator_token44] = ACTIONS(609), + [aux_sym_comparison_operator_token45] = ACTIONS(609), + [aux_sym_comparison_operator_token46] = ACTIONS(609), + [aux_sym_comparison_operator_token47] = ACTIONS(609), + [aux_sym_comparison_operator_token48] = ACTIONS(609), + [aux_sym_comparison_operator_token49] = ACTIONS(609), + [aux_sym_comparison_operator_token50] = ACTIONS(609), + [aux_sym_format_operator_token1] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(611), + [aux_sym_logical_expression_token1] = ACTIONS(609), + [aux_sym_logical_expression_token2] = ACTIONS(609), + [aux_sym_logical_expression_token3] = ACTIONS(609), + [aux_sym_bitwise_expression_token1] = ACTIONS(609), + [aux_sym_bitwise_expression_token2] = ACTIONS(609), + [aux_sym_bitwise_expression_token3] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_BSLASH] = ACTIONS(609), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_DOT_DOT] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(609), + [anon_sym_DASH_DASH] = ACTIONS(609), + [anon_sym_DOT2] = ACTIONS(611), + [anon_sym_COLON_COLON] = ACTIONS(609), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(609), + [sym__statement_terminator] = ACTIONS(609), + }, + [125] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [anon_sym_PLUS_EQ] = ACTIONS(699), + [anon_sym_STAR_EQ] = ACTIONS(699), + [anon_sym_SLASH_EQ] = ACTIONS(699), + [anon_sym_PERCENT_EQ] = ACTIONS(699), + [anon_sym_DASH_EQ] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_2_GT] = ACTIONS(701), + [anon_sym_2_GT_GT] = ACTIONS(699), + [anon_sym_3_GT] = ACTIONS(701), + [anon_sym_3_GT_GT] = ACTIONS(699), + [anon_sym_4_GT] = ACTIONS(701), + [anon_sym_4_GT_GT] = ACTIONS(699), + [anon_sym_5_GT] = ACTIONS(701), + [anon_sym_5_GT_GT] = ACTIONS(699), + [anon_sym_6_GT] = ACTIONS(701), + [anon_sym_6_GT_GT] = ACTIONS(699), + [anon_sym_STAR_GT] = ACTIONS(701), + [anon_sym_STAR_GT_GT] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_STAR_GT_AMP1] = ACTIONS(699), + [anon_sym_2_GT_AMP1] = ACTIONS(699), + [anon_sym_3_GT_AMP1] = ACTIONS(699), + [anon_sym_4_GT_AMP1] = ACTIONS(699), + [anon_sym_5_GT_AMP1] = ACTIONS(699), + [anon_sym_6_GT_AMP1] = ACTIONS(699), + [anon_sym_STAR_GT_AMP2] = ACTIONS(699), + [anon_sym_1_GT_AMP2] = ACTIONS(699), + [anon_sym_3_GT_AMP2] = ACTIONS(699), + [anon_sym_4_GT_AMP2] = ACTIONS(699), + [anon_sym_5_GT_AMP2] = ACTIONS(699), + [anon_sym_6_GT_AMP2] = ACTIONS(699), + [aux_sym_comparison_operator_token1] = ACTIONS(699), + [aux_sym_comparison_operator_token2] = ACTIONS(699), + [aux_sym_comparison_operator_token3] = ACTIONS(699), + [aux_sym_comparison_operator_token4] = ACTIONS(699), + [aux_sym_comparison_operator_token5] = ACTIONS(699), + [aux_sym_comparison_operator_token6] = ACTIONS(699), + [aux_sym_comparison_operator_token7] = ACTIONS(699), + [aux_sym_comparison_operator_token8] = ACTIONS(699), + [aux_sym_comparison_operator_token9] = ACTIONS(699), + [aux_sym_comparison_operator_token10] = ACTIONS(699), + [aux_sym_comparison_operator_token11] = ACTIONS(699), + [aux_sym_comparison_operator_token12] = ACTIONS(699), + [aux_sym_comparison_operator_token13] = ACTIONS(699), + [aux_sym_comparison_operator_token14] = ACTIONS(699), + [aux_sym_comparison_operator_token15] = ACTIONS(699), + [aux_sym_comparison_operator_token16] = ACTIONS(699), + [aux_sym_comparison_operator_token17] = ACTIONS(699), + [aux_sym_comparison_operator_token18] = ACTIONS(699), + [aux_sym_comparison_operator_token19] = ACTIONS(699), + [aux_sym_comparison_operator_token20] = ACTIONS(699), + [aux_sym_comparison_operator_token21] = ACTIONS(699), + [aux_sym_comparison_operator_token22] = ACTIONS(699), + [aux_sym_comparison_operator_token23] = ACTIONS(699), + [aux_sym_comparison_operator_token24] = ACTIONS(699), + [aux_sym_comparison_operator_token25] = ACTIONS(699), + [aux_sym_comparison_operator_token26] = ACTIONS(699), + [aux_sym_comparison_operator_token27] = ACTIONS(699), + [aux_sym_comparison_operator_token28] = ACTIONS(701), + [aux_sym_comparison_operator_token29] = ACTIONS(699), + [aux_sym_comparison_operator_token30] = ACTIONS(699), + [aux_sym_comparison_operator_token31] = ACTIONS(699), + [aux_sym_comparison_operator_token32] = ACTIONS(699), + [aux_sym_comparison_operator_token33] = ACTIONS(699), + [aux_sym_comparison_operator_token34] = ACTIONS(701), + [aux_sym_comparison_operator_token35] = ACTIONS(699), + [aux_sym_comparison_operator_token36] = ACTIONS(699), + [aux_sym_comparison_operator_token37] = ACTIONS(699), + [aux_sym_comparison_operator_token38] = ACTIONS(699), + [aux_sym_comparison_operator_token39] = ACTIONS(699), + [aux_sym_comparison_operator_token40] = ACTIONS(699), + [aux_sym_comparison_operator_token41] = ACTIONS(699), + [aux_sym_comparison_operator_token42] = ACTIONS(699), + [aux_sym_comparison_operator_token43] = ACTIONS(699), + [aux_sym_comparison_operator_token44] = ACTIONS(699), + [aux_sym_comparison_operator_token45] = ACTIONS(699), + [aux_sym_comparison_operator_token46] = ACTIONS(699), + [aux_sym_comparison_operator_token47] = ACTIONS(699), + [aux_sym_comparison_operator_token48] = ACTIONS(699), + [aux_sym_comparison_operator_token49] = ACTIONS(699), + [aux_sym_comparison_operator_token50] = ACTIONS(699), + [aux_sym_format_operator_token1] = ACTIONS(699), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_PERCENT] = ACTIONS(701), + [aux_sym_logical_expression_token1] = ACTIONS(699), + [aux_sym_logical_expression_token2] = ACTIONS(699), + [aux_sym_logical_expression_token3] = ACTIONS(699), + [aux_sym_bitwise_expression_token1] = ACTIONS(699), + [aux_sym_bitwise_expression_token2] = ACTIONS(699), + [aux_sym_bitwise_expression_token3] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_BSLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(699), + [anon_sym_PLUS_PLUS] = ACTIONS(699), + [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_DOT2] = ACTIONS(701), + [anon_sym_COLON_COLON] = ACTIONS(699), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(699), + [sym__statement_terminator] = ACTIONS(699), + }, + [126] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), + [anon_sym_STAR_EQ] = ACTIONS(703), + [anon_sym_SLASH_EQ] = ACTIONS(703), + [anon_sym_PERCENT_EQ] = ACTIONS(703), + [anon_sym_DASH_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(703), + [anon_sym_2_GT] = ACTIONS(705), + [anon_sym_2_GT_GT] = ACTIONS(703), + [anon_sym_3_GT] = ACTIONS(705), + [anon_sym_3_GT_GT] = ACTIONS(703), + [anon_sym_4_GT] = ACTIONS(705), + [anon_sym_4_GT_GT] = ACTIONS(703), + [anon_sym_5_GT] = ACTIONS(705), + [anon_sym_5_GT_GT] = ACTIONS(703), + [anon_sym_6_GT] = ACTIONS(705), + [anon_sym_6_GT_GT] = ACTIONS(703), + [anon_sym_STAR_GT] = ACTIONS(705), + [anon_sym_STAR_GT_GT] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_STAR_GT_AMP1] = ACTIONS(703), + [anon_sym_2_GT_AMP1] = ACTIONS(703), + [anon_sym_3_GT_AMP1] = ACTIONS(703), + [anon_sym_4_GT_AMP1] = ACTIONS(703), + [anon_sym_5_GT_AMP1] = ACTIONS(703), + [anon_sym_6_GT_AMP1] = ACTIONS(703), + [anon_sym_STAR_GT_AMP2] = ACTIONS(703), + [anon_sym_1_GT_AMP2] = ACTIONS(703), + [anon_sym_3_GT_AMP2] = ACTIONS(703), + [anon_sym_4_GT_AMP2] = ACTIONS(703), + [anon_sym_5_GT_AMP2] = ACTIONS(703), + [anon_sym_6_GT_AMP2] = ACTIONS(703), + [aux_sym_comparison_operator_token1] = ACTIONS(703), + [aux_sym_comparison_operator_token2] = ACTIONS(703), + [aux_sym_comparison_operator_token3] = ACTIONS(703), + [aux_sym_comparison_operator_token4] = ACTIONS(703), + [aux_sym_comparison_operator_token5] = ACTIONS(703), + [aux_sym_comparison_operator_token6] = ACTIONS(703), + [aux_sym_comparison_operator_token7] = ACTIONS(703), + [aux_sym_comparison_operator_token8] = ACTIONS(703), + [aux_sym_comparison_operator_token9] = ACTIONS(703), + [aux_sym_comparison_operator_token10] = ACTIONS(703), + [aux_sym_comparison_operator_token11] = ACTIONS(703), + [aux_sym_comparison_operator_token12] = ACTIONS(703), + [aux_sym_comparison_operator_token13] = ACTIONS(703), + [aux_sym_comparison_operator_token14] = ACTIONS(703), + [aux_sym_comparison_operator_token15] = ACTIONS(703), + [aux_sym_comparison_operator_token16] = ACTIONS(703), + [aux_sym_comparison_operator_token17] = ACTIONS(703), + [aux_sym_comparison_operator_token18] = ACTIONS(703), + [aux_sym_comparison_operator_token19] = ACTIONS(703), + [aux_sym_comparison_operator_token20] = ACTIONS(703), + [aux_sym_comparison_operator_token21] = ACTIONS(703), + [aux_sym_comparison_operator_token22] = ACTIONS(703), + [aux_sym_comparison_operator_token23] = ACTIONS(703), + [aux_sym_comparison_operator_token24] = ACTIONS(703), + [aux_sym_comparison_operator_token25] = ACTIONS(703), + [aux_sym_comparison_operator_token26] = ACTIONS(703), + [aux_sym_comparison_operator_token27] = ACTIONS(703), + [aux_sym_comparison_operator_token28] = ACTIONS(705), + [aux_sym_comparison_operator_token29] = ACTIONS(703), + [aux_sym_comparison_operator_token30] = ACTIONS(703), + [aux_sym_comparison_operator_token31] = ACTIONS(703), + [aux_sym_comparison_operator_token32] = ACTIONS(703), + [aux_sym_comparison_operator_token33] = ACTIONS(703), + [aux_sym_comparison_operator_token34] = ACTIONS(705), + [aux_sym_comparison_operator_token35] = ACTIONS(703), + [aux_sym_comparison_operator_token36] = ACTIONS(703), + [aux_sym_comparison_operator_token37] = ACTIONS(703), + [aux_sym_comparison_operator_token38] = ACTIONS(703), + [aux_sym_comparison_operator_token39] = ACTIONS(703), + [aux_sym_comparison_operator_token40] = ACTIONS(703), + [aux_sym_comparison_operator_token41] = ACTIONS(703), + [aux_sym_comparison_operator_token42] = ACTIONS(703), + [aux_sym_comparison_operator_token43] = ACTIONS(703), + [aux_sym_comparison_operator_token44] = ACTIONS(703), + [aux_sym_comparison_operator_token45] = ACTIONS(703), + [aux_sym_comparison_operator_token46] = ACTIONS(703), + [aux_sym_comparison_operator_token47] = ACTIONS(703), + [aux_sym_comparison_operator_token48] = ACTIONS(703), + [aux_sym_comparison_operator_token49] = ACTIONS(703), + [aux_sym_comparison_operator_token50] = ACTIONS(703), + [aux_sym_format_operator_token1] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(705), + [aux_sym_logical_expression_token1] = ACTIONS(703), + [aux_sym_logical_expression_token2] = ACTIONS(703), + [aux_sym_logical_expression_token3] = ACTIONS(703), + [aux_sym_bitwise_expression_token1] = ACTIONS(703), + [aux_sym_bitwise_expression_token2] = ACTIONS(703), + [aux_sym_bitwise_expression_token3] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_DOT2] = ACTIONS(705), + [anon_sym_COLON_COLON] = ACTIONS(703), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(703), + [sym__statement_terminator] = ACTIONS(703), + }, + [127] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(707), + [anon_sym_STAR_EQ] = ACTIONS(707), + [anon_sym_SLASH_EQ] = ACTIONS(707), + [anon_sym_PERCENT_EQ] = ACTIONS(707), + [anon_sym_DASH_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_2_GT] = ACTIONS(709), + [anon_sym_2_GT_GT] = ACTIONS(707), + [anon_sym_3_GT] = ACTIONS(709), + [anon_sym_3_GT_GT] = ACTIONS(707), + [anon_sym_4_GT] = ACTIONS(709), + [anon_sym_4_GT_GT] = ACTIONS(707), + [anon_sym_5_GT] = ACTIONS(709), + [anon_sym_5_GT_GT] = ACTIONS(707), + [anon_sym_6_GT] = ACTIONS(709), + [anon_sym_6_GT_GT] = ACTIONS(707), + [anon_sym_STAR_GT] = ACTIONS(709), + [anon_sym_STAR_GT_GT] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_STAR_GT_AMP1] = ACTIONS(707), + [anon_sym_2_GT_AMP1] = ACTIONS(707), + [anon_sym_3_GT_AMP1] = ACTIONS(707), + [anon_sym_4_GT_AMP1] = ACTIONS(707), + [anon_sym_5_GT_AMP1] = ACTIONS(707), + [anon_sym_6_GT_AMP1] = ACTIONS(707), + [anon_sym_STAR_GT_AMP2] = ACTIONS(707), + [anon_sym_1_GT_AMP2] = ACTIONS(707), + [anon_sym_3_GT_AMP2] = ACTIONS(707), + [anon_sym_4_GT_AMP2] = ACTIONS(707), + [anon_sym_5_GT_AMP2] = ACTIONS(707), + [anon_sym_6_GT_AMP2] = ACTIONS(707), + [aux_sym_comparison_operator_token1] = ACTIONS(707), + [aux_sym_comparison_operator_token2] = ACTIONS(707), + [aux_sym_comparison_operator_token3] = ACTIONS(707), + [aux_sym_comparison_operator_token4] = ACTIONS(707), + [aux_sym_comparison_operator_token5] = ACTIONS(707), + [aux_sym_comparison_operator_token6] = ACTIONS(707), + [aux_sym_comparison_operator_token7] = ACTIONS(707), + [aux_sym_comparison_operator_token8] = ACTIONS(707), + [aux_sym_comparison_operator_token9] = ACTIONS(707), + [aux_sym_comparison_operator_token10] = ACTIONS(707), + [aux_sym_comparison_operator_token11] = ACTIONS(707), + [aux_sym_comparison_operator_token12] = ACTIONS(707), + [aux_sym_comparison_operator_token13] = ACTIONS(707), + [aux_sym_comparison_operator_token14] = ACTIONS(707), + [aux_sym_comparison_operator_token15] = ACTIONS(707), + [aux_sym_comparison_operator_token16] = ACTIONS(707), + [aux_sym_comparison_operator_token17] = ACTIONS(707), + [aux_sym_comparison_operator_token18] = ACTIONS(707), + [aux_sym_comparison_operator_token19] = ACTIONS(707), + [aux_sym_comparison_operator_token20] = ACTIONS(707), + [aux_sym_comparison_operator_token21] = ACTIONS(707), + [aux_sym_comparison_operator_token22] = ACTIONS(707), + [aux_sym_comparison_operator_token23] = ACTIONS(707), + [aux_sym_comparison_operator_token24] = ACTIONS(707), + [aux_sym_comparison_operator_token25] = ACTIONS(707), + [aux_sym_comparison_operator_token26] = ACTIONS(707), + [aux_sym_comparison_operator_token27] = ACTIONS(707), + [aux_sym_comparison_operator_token28] = ACTIONS(709), + [aux_sym_comparison_operator_token29] = ACTIONS(707), + [aux_sym_comparison_operator_token30] = ACTIONS(707), + [aux_sym_comparison_operator_token31] = ACTIONS(707), + [aux_sym_comparison_operator_token32] = ACTIONS(707), + [aux_sym_comparison_operator_token33] = ACTIONS(707), + [aux_sym_comparison_operator_token34] = ACTIONS(709), + [aux_sym_comparison_operator_token35] = ACTIONS(707), + [aux_sym_comparison_operator_token36] = ACTIONS(707), + [aux_sym_comparison_operator_token37] = ACTIONS(707), + [aux_sym_comparison_operator_token38] = ACTIONS(707), + [aux_sym_comparison_operator_token39] = ACTIONS(707), + [aux_sym_comparison_operator_token40] = ACTIONS(707), + [aux_sym_comparison_operator_token41] = ACTIONS(707), + [aux_sym_comparison_operator_token42] = ACTIONS(707), + [aux_sym_comparison_operator_token43] = ACTIONS(707), + [aux_sym_comparison_operator_token44] = ACTIONS(707), + [aux_sym_comparison_operator_token45] = ACTIONS(707), + [aux_sym_comparison_operator_token46] = ACTIONS(707), + [aux_sym_comparison_operator_token47] = ACTIONS(707), + [aux_sym_comparison_operator_token48] = ACTIONS(707), + [aux_sym_comparison_operator_token49] = ACTIONS(707), + [aux_sym_comparison_operator_token50] = ACTIONS(707), + [aux_sym_format_operator_token1] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(709), + [aux_sym_logical_expression_token1] = ACTIONS(707), + [aux_sym_logical_expression_token2] = ACTIONS(707), + [aux_sym_logical_expression_token3] = ACTIONS(707), + [aux_sym_bitwise_expression_token1] = ACTIONS(707), + [aux_sym_bitwise_expression_token2] = ACTIONS(707), + [aux_sym_bitwise_expression_token3] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_DOT2] = ACTIONS(709), + [anon_sym_COLON_COLON] = ACTIONS(707), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(707), + [sym__statement_terminator] = ACTIONS(707), + }, + [128] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_BANG_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_2_GT] = ACTIONS(713), + [anon_sym_2_GT_GT] = ACTIONS(711), + [anon_sym_3_GT] = ACTIONS(713), + [anon_sym_3_GT_GT] = ACTIONS(711), + [anon_sym_4_GT] = ACTIONS(713), + [anon_sym_4_GT_GT] = ACTIONS(711), + [anon_sym_5_GT] = ACTIONS(713), + [anon_sym_5_GT_GT] = ACTIONS(711), + [anon_sym_6_GT] = ACTIONS(713), + [anon_sym_6_GT_GT] = ACTIONS(711), + [anon_sym_STAR_GT] = ACTIONS(713), + [anon_sym_STAR_GT_GT] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_STAR_GT_AMP1] = ACTIONS(711), + [anon_sym_2_GT_AMP1] = ACTIONS(711), + [anon_sym_3_GT_AMP1] = ACTIONS(711), + [anon_sym_4_GT_AMP1] = ACTIONS(711), + [anon_sym_5_GT_AMP1] = ACTIONS(711), + [anon_sym_6_GT_AMP1] = ACTIONS(711), + [anon_sym_STAR_GT_AMP2] = ACTIONS(711), + [anon_sym_1_GT_AMP2] = ACTIONS(711), + [anon_sym_3_GT_AMP2] = ACTIONS(711), + [anon_sym_4_GT_AMP2] = ACTIONS(711), + [anon_sym_5_GT_AMP2] = ACTIONS(711), + [anon_sym_6_GT_AMP2] = ACTIONS(711), + [aux_sym_comparison_operator_token1] = ACTIONS(711), + [aux_sym_comparison_operator_token2] = ACTIONS(711), + [aux_sym_comparison_operator_token3] = ACTIONS(711), + [aux_sym_comparison_operator_token4] = ACTIONS(711), + [aux_sym_comparison_operator_token5] = ACTIONS(711), + [aux_sym_comparison_operator_token6] = ACTIONS(711), + [aux_sym_comparison_operator_token7] = ACTIONS(711), + [aux_sym_comparison_operator_token8] = ACTIONS(711), + [aux_sym_comparison_operator_token9] = ACTIONS(711), + [aux_sym_comparison_operator_token10] = ACTIONS(711), + [aux_sym_comparison_operator_token11] = ACTIONS(711), + [aux_sym_comparison_operator_token12] = ACTIONS(711), + [aux_sym_comparison_operator_token13] = ACTIONS(711), + [aux_sym_comparison_operator_token14] = ACTIONS(711), + [aux_sym_comparison_operator_token15] = ACTIONS(711), + [aux_sym_comparison_operator_token16] = ACTIONS(711), + [aux_sym_comparison_operator_token17] = ACTIONS(711), + [aux_sym_comparison_operator_token18] = ACTIONS(711), + [aux_sym_comparison_operator_token19] = ACTIONS(711), + [aux_sym_comparison_operator_token20] = ACTIONS(711), + [aux_sym_comparison_operator_token21] = ACTIONS(711), + [aux_sym_comparison_operator_token22] = ACTIONS(711), + [aux_sym_comparison_operator_token23] = ACTIONS(711), + [aux_sym_comparison_operator_token24] = ACTIONS(711), + [aux_sym_comparison_operator_token25] = ACTIONS(711), + [aux_sym_comparison_operator_token26] = ACTIONS(711), + [aux_sym_comparison_operator_token27] = ACTIONS(711), + [aux_sym_comparison_operator_token28] = ACTIONS(713), + [aux_sym_comparison_operator_token29] = ACTIONS(711), + [aux_sym_comparison_operator_token30] = ACTIONS(711), + [aux_sym_comparison_operator_token31] = ACTIONS(711), + [aux_sym_comparison_operator_token32] = ACTIONS(711), + [aux_sym_comparison_operator_token33] = ACTIONS(711), + [aux_sym_comparison_operator_token34] = ACTIONS(713), + [aux_sym_comparison_operator_token35] = ACTIONS(711), + [aux_sym_comparison_operator_token36] = ACTIONS(711), + [aux_sym_comparison_operator_token37] = ACTIONS(711), + [aux_sym_comparison_operator_token38] = ACTIONS(711), + [aux_sym_comparison_operator_token39] = ACTIONS(711), + [aux_sym_comparison_operator_token40] = ACTIONS(711), + [aux_sym_comparison_operator_token41] = ACTIONS(711), + [aux_sym_comparison_operator_token42] = ACTIONS(711), + [aux_sym_comparison_operator_token43] = ACTIONS(711), + [aux_sym_comparison_operator_token44] = ACTIONS(711), + [aux_sym_comparison_operator_token45] = ACTIONS(711), + [aux_sym_comparison_operator_token46] = ACTIONS(711), + [aux_sym_comparison_operator_token47] = ACTIONS(711), + [aux_sym_comparison_operator_token48] = ACTIONS(711), + [aux_sym_comparison_operator_token49] = ACTIONS(711), + [aux_sym_comparison_operator_token50] = ACTIONS(711), + [aux_sym_format_operator_token1] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(713), + [aux_sym_logical_expression_token1] = ACTIONS(711), + [aux_sym_logical_expression_token2] = ACTIONS(711), + [aux_sym_logical_expression_token3] = ACTIONS(711), + [aux_sym_bitwise_expression_token1] = ACTIONS(711), + [aux_sym_bitwise_expression_token2] = ACTIONS(711), + [aux_sym_bitwise_expression_token3] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DOT2] = ACTIONS(713), + [anon_sym_COLON_COLON] = ACTIONS(711), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(711), + [sym__statement_terminator] = ACTIONS(711), + }, + [129] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_2_GT] = ACTIONS(717), + [anon_sym_2_GT_GT] = ACTIONS(715), + [anon_sym_3_GT] = ACTIONS(717), + [anon_sym_3_GT_GT] = ACTIONS(715), + [anon_sym_4_GT] = ACTIONS(717), + [anon_sym_4_GT_GT] = ACTIONS(715), + [anon_sym_5_GT] = ACTIONS(717), + [anon_sym_5_GT_GT] = ACTIONS(715), + [anon_sym_6_GT] = ACTIONS(717), + [anon_sym_6_GT_GT] = ACTIONS(715), + [anon_sym_STAR_GT] = ACTIONS(717), + [anon_sym_STAR_GT_GT] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_STAR_GT_AMP1] = ACTIONS(715), + [anon_sym_2_GT_AMP1] = ACTIONS(715), + [anon_sym_3_GT_AMP1] = ACTIONS(715), + [anon_sym_4_GT_AMP1] = ACTIONS(715), + [anon_sym_5_GT_AMP1] = ACTIONS(715), + [anon_sym_6_GT_AMP1] = ACTIONS(715), + [anon_sym_STAR_GT_AMP2] = ACTIONS(715), + [anon_sym_1_GT_AMP2] = ACTIONS(715), + [anon_sym_3_GT_AMP2] = ACTIONS(715), + [anon_sym_4_GT_AMP2] = ACTIONS(715), + [anon_sym_5_GT_AMP2] = ACTIONS(715), + [anon_sym_6_GT_AMP2] = ACTIONS(715), + [aux_sym_comparison_operator_token1] = ACTIONS(715), + [aux_sym_comparison_operator_token2] = ACTIONS(715), + [aux_sym_comparison_operator_token3] = ACTIONS(715), + [aux_sym_comparison_operator_token4] = ACTIONS(715), + [aux_sym_comparison_operator_token5] = ACTIONS(715), + [aux_sym_comparison_operator_token6] = ACTIONS(715), + [aux_sym_comparison_operator_token7] = ACTIONS(715), + [aux_sym_comparison_operator_token8] = ACTIONS(715), + [aux_sym_comparison_operator_token9] = ACTIONS(715), + [aux_sym_comparison_operator_token10] = ACTIONS(715), + [aux_sym_comparison_operator_token11] = ACTIONS(715), + [aux_sym_comparison_operator_token12] = ACTIONS(715), + [aux_sym_comparison_operator_token13] = ACTIONS(715), + [aux_sym_comparison_operator_token14] = ACTIONS(715), + [aux_sym_comparison_operator_token15] = ACTIONS(715), + [aux_sym_comparison_operator_token16] = ACTIONS(715), + [aux_sym_comparison_operator_token17] = ACTIONS(715), + [aux_sym_comparison_operator_token18] = ACTIONS(715), + [aux_sym_comparison_operator_token19] = ACTIONS(715), + [aux_sym_comparison_operator_token20] = ACTIONS(715), + [aux_sym_comparison_operator_token21] = ACTIONS(715), + [aux_sym_comparison_operator_token22] = ACTIONS(715), + [aux_sym_comparison_operator_token23] = ACTIONS(715), + [aux_sym_comparison_operator_token24] = ACTIONS(715), + [aux_sym_comparison_operator_token25] = ACTIONS(715), + [aux_sym_comparison_operator_token26] = ACTIONS(715), + [aux_sym_comparison_operator_token27] = ACTIONS(715), + [aux_sym_comparison_operator_token28] = ACTIONS(717), + [aux_sym_comparison_operator_token29] = ACTIONS(715), + [aux_sym_comparison_operator_token30] = ACTIONS(715), + [aux_sym_comparison_operator_token31] = ACTIONS(715), + [aux_sym_comparison_operator_token32] = ACTIONS(715), + [aux_sym_comparison_operator_token33] = ACTIONS(715), + [aux_sym_comparison_operator_token34] = ACTIONS(717), + [aux_sym_comparison_operator_token35] = ACTIONS(715), + [aux_sym_comparison_operator_token36] = ACTIONS(715), + [aux_sym_comparison_operator_token37] = ACTIONS(715), + [aux_sym_comparison_operator_token38] = ACTIONS(715), + [aux_sym_comparison_operator_token39] = ACTIONS(715), + [aux_sym_comparison_operator_token40] = ACTIONS(715), + [aux_sym_comparison_operator_token41] = ACTIONS(715), + [aux_sym_comparison_operator_token42] = ACTIONS(715), + [aux_sym_comparison_operator_token43] = ACTIONS(715), + [aux_sym_comparison_operator_token44] = ACTIONS(715), + [aux_sym_comparison_operator_token45] = ACTIONS(715), + [aux_sym_comparison_operator_token46] = ACTIONS(715), + [aux_sym_comparison_operator_token47] = ACTIONS(715), + [aux_sym_comparison_operator_token48] = ACTIONS(715), + [aux_sym_comparison_operator_token49] = ACTIONS(715), + [aux_sym_comparison_operator_token50] = ACTIONS(715), + [aux_sym_format_operator_token1] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(717), + [aux_sym_logical_expression_token1] = ACTIONS(715), + [aux_sym_logical_expression_token2] = ACTIONS(715), + [aux_sym_logical_expression_token3] = ACTIONS(715), + [aux_sym_bitwise_expression_token1] = ACTIONS(715), + [aux_sym_bitwise_expression_token2] = ACTIONS(715), + [aux_sym_bitwise_expression_token3] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_PLUS_PLUS] = ACTIONS(715), + [anon_sym_DASH_DASH] = ACTIONS(715), + [anon_sym_DOT2] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(715), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(715), + [sym__statement_terminator] = ACTIONS(715), + }, [130] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_PLUS_EQ] = ACTIONS(683), - [anon_sym_STAR_EQ] = ACTIONS(683), - [anon_sym_SLASH_EQ] = ACTIONS(683), - [anon_sym_PERCENT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_2_GT] = ACTIONS(686), - [anon_sym_2_GT_GT] = ACTIONS(683), - [anon_sym_3_GT] = ACTIONS(686), - [anon_sym_3_GT_GT] = ACTIONS(683), - [anon_sym_4_GT] = ACTIONS(686), - [anon_sym_4_GT_GT] = ACTIONS(683), - [anon_sym_5_GT] = ACTIONS(686), - [anon_sym_5_GT_GT] = ACTIONS(683), - [anon_sym_6_GT] = ACTIONS(686), - [anon_sym_6_GT_GT] = ACTIONS(683), - [anon_sym_STAR_GT] = ACTIONS(686), - [anon_sym_STAR_GT_GT] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_STAR_GT_AMP1] = ACTIONS(683), - [anon_sym_2_GT_AMP1] = ACTIONS(683), - [anon_sym_3_GT_AMP1] = ACTIONS(683), - [anon_sym_4_GT_AMP1] = ACTIONS(683), - [anon_sym_5_GT_AMP1] = ACTIONS(683), - [anon_sym_6_GT_AMP1] = ACTIONS(683), - [anon_sym_STAR_GT_AMP2] = ACTIONS(683), - [anon_sym_1_GT_AMP2] = ACTIONS(683), - [anon_sym_3_GT_AMP2] = ACTIONS(683), - [anon_sym_4_GT_AMP2] = ACTIONS(683), - [anon_sym_5_GT_AMP2] = ACTIONS(683), - [anon_sym_6_GT_AMP2] = ACTIONS(683), - [aux_sym_comparison_operator_token1] = ACTIONS(683), - [aux_sym_comparison_operator_token2] = ACTIONS(683), - [aux_sym_comparison_operator_token3] = ACTIONS(683), - [aux_sym_comparison_operator_token4] = ACTIONS(683), - [aux_sym_comparison_operator_token5] = ACTIONS(683), - [aux_sym_comparison_operator_token6] = ACTIONS(683), - [aux_sym_comparison_operator_token7] = ACTIONS(683), - [aux_sym_comparison_operator_token8] = ACTIONS(683), - [aux_sym_comparison_operator_token9] = ACTIONS(683), - [aux_sym_comparison_operator_token10] = ACTIONS(683), - [aux_sym_comparison_operator_token11] = ACTIONS(683), - [aux_sym_comparison_operator_token12] = ACTIONS(683), - [aux_sym_comparison_operator_token13] = ACTIONS(683), - [aux_sym_comparison_operator_token14] = ACTIONS(683), - [aux_sym_comparison_operator_token15] = ACTIONS(683), - [aux_sym_comparison_operator_token16] = ACTIONS(683), - [aux_sym_comparison_operator_token17] = ACTIONS(683), - [aux_sym_comparison_operator_token18] = ACTIONS(683), - [aux_sym_comparison_operator_token19] = ACTIONS(683), - [aux_sym_comparison_operator_token20] = ACTIONS(683), - [aux_sym_comparison_operator_token21] = ACTIONS(683), - [aux_sym_comparison_operator_token22] = ACTIONS(683), - [aux_sym_comparison_operator_token23] = ACTIONS(683), - [aux_sym_comparison_operator_token24] = ACTIONS(683), - [aux_sym_comparison_operator_token25] = ACTIONS(683), - [aux_sym_comparison_operator_token26] = ACTIONS(683), - [aux_sym_comparison_operator_token27] = ACTIONS(683), - [aux_sym_comparison_operator_token28] = ACTIONS(686), - [aux_sym_comparison_operator_token29] = ACTIONS(683), - [aux_sym_comparison_operator_token30] = ACTIONS(683), - [aux_sym_comparison_operator_token31] = ACTIONS(683), - [aux_sym_comparison_operator_token32] = ACTIONS(683), - [aux_sym_comparison_operator_token33] = ACTIONS(683), - [aux_sym_comparison_operator_token34] = ACTIONS(686), - [aux_sym_comparison_operator_token35] = ACTIONS(683), - [aux_sym_comparison_operator_token36] = ACTIONS(683), - [aux_sym_comparison_operator_token37] = ACTIONS(683), - [aux_sym_comparison_operator_token38] = ACTIONS(683), - [aux_sym_comparison_operator_token39] = ACTIONS(683), - [aux_sym_comparison_operator_token40] = ACTIONS(683), - [aux_sym_comparison_operator_token41] = ACTIONS(683), - [aux_sym_comparison_operator_token42] = ACTIONS(683), - [aux_sym_comparison_operator_token43] = ACTIONS(683), - [aux_sym_comparison_operator_token44] = ACTIONS(683), - [aux_sym_comparison_operator_token45] = ACTIONS(683), - [aux_sym_comparison_operator_token46] = ACTIONS(683), - [aux_sym_comparison_operator_token47] = ACTIONS(683), - [aux_sym_comparison_operator_token48] = ACTIONS(683), - [aux_sym_comparison_operator_token49] = ACTIONS(683), - [aux_sym_comparison_operator_token50] = ACTIONS(683), - [aux_sym_format_operator_token1] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(686), - [aux_sym_logical_expression_token1] = ACTIONS(683), - [aux_sym_logical_expression_token2] = ACTIONS(683), - [aux_sym_logical_expression_token3] = ACTIONS(683), - [aux_sym_bitwise_expression_token1] = ACTIONS(683), - [aux_sym_bitwise_expression_token2] = ACTIONS(683), - [aux_sym_bitwise_expression_token3] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(683), - [anon_sym_PLUS_PLUS] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(683), - [anon_sym_DOT2] = ACTIONS(686), - [anon_sym_COLON_COLON] = ACTIONS(683), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(683), - [sym__statement_terminator] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_2_GT] = ACTIONS(623), + [anon_sym_2_GT_GT] = ACTIONS(621), + [anon_sym_3_GT] = ACTIONS(623), + [anon_sym_3_GT_GT] = ACTIONS(621), + [anon_sym_4_GT] = ACTIONS(623), + [anon_sym_4_GT_GT] = ACTIONS(621), + [anon_sym_5_GT] = ACTIONS(623), + [anon_sym_5_GT_GT] = ACTIONS(621), + [anon_sym_6_GT] = ACTIONS(623), + [anon_sym_6_GT_GT] = ACTIONS(621), + [anon_sym_STAR_GT] = ACTIONS(623), + [anon_sym_STAR_GT_GT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_STAR_GT_AMP1] = ACTIONS(621), + [anon_sym_2_GT_AMP1] = ACTIONS(621), + [anon_sym_3_GT_AMP1] = ACTIONS(621), + [anon_sym_4_GT_AMP1] = ACTIONS(621), + [anon_sym_5_GT_AMP1] = ACTIONS(621), + [anon_sym_6_GT_AMP1] = ACTIONS(621), + [anon_sym_STAR_GT_AMP2] = ACTIONS(621), + [anon_sym_1_GT_AMP2] = ACTIONS(621), + [anon_sym_3_GT_AMP2] = ACTIONS(621), + [anon_sym_4_GT_AMP2] = ACTIONS(621), + [anon_sym_5_GT_AMP2] = ACTIONS(621), + [anon_sym_6_GT_AMP2] = ACTIONS(621), + [aux_sym_comparison_operator_token1] = ACTIONS(621), + [aux_sym_comparison_operator_token2] = ACTIONS(621), + [aux_sym_comparison_operator_token3] = ACTIONS(621), + [aux_sym_comparison_operator_token4] = ACTIONS(621), + [aux_sym_comparison_operator_token5] = ACTIONS(621), + [aux_sym_comparison_operator_token6] = ACTIONS(621), + [aux_sym_comparison_operator_token7] = ACTIONS(621), + [aux_sym_comparison_operator_token8] = ACTIONS(621), + [aux_sym_comparison_operator_token9] = ACTIONS(621), + [aux_sym_comparison_operator_token10] = ACTIONS(621), + [aux_sym_comparison_operator_token11] = ACTIONS(621), + [aux_sym_comparison_operator_token12] = ACTIONS(621), + [aux_sym_comparison_operator_token13] = ACTIONS(621), + [aux_sym_comparison_operator_token14] = ACTIONS(621), + [aux_sym_comparison_operator_token15] = ACTIONS(621), + [aux_sym_comparison_operator_token16] = ACTIONS(621), + [aux_sym_comparison_operator_token17] = ACTIONS(621), + [aux_sym_comparison_operator_token18] = ACTIONS(621), + [aux_sym_comparison_operator_token19] = ACTIONS(621), + [aux_sym_comparison_operator_token20] = ACTIONS(621), + [aux_sym_comparison_operator_token21] = ACTIONS(621), + [aux_sym_comparison_operator_token22] = ACTIONS(621), + [aux_sym_comparison_operator_token23] = ACTIONS(621), + [aux_sym_comparison_operator_token24] = ACTIONS(621), + [aux_sym_comparison_operator_token25] = ACTIONS(621), + [aux_sym_comparison_operator_token26] = ACTIONS(621), + [aux_sym_comparison_operator_token27] = ACTIONS(621), + [aux_sym_comparison_operator_token28] = ACTIONS(623), + [aux_sym_comparison_operator_token29] = ACTIONS(621), + [aux_sym_comparison_operator_token30] = ACTIONS(621), + [aux_sym_comparison_operator_token31] = ACTIONS(621), + [aux_sym_comparison_operator_token32] = ACTIONS(621), + [aux_sym_comparison_operator_token33] = ACTIONS(621), + [aux_sym_comparison_operator_token34] = ACTIONS(623), + [aux_sym_comparison_operator_token35] = ACTIONS(621), + [aux_sym_comparison_operator_token36] = ACTIONS(621), + [aux_sym_comparison_operator_token37] = ACTIONS(621), + [aux_sym_comparison_operator_token38] = ACTIONS(621), + [aux_sym_comparison_operator_token39] = ACTIONS(621), + [aux_sym_comparison_operator_token40] = ACTIONS(621), + [aux_sym_comparison_operator_token41] = ACTIONS(621), + [aux_sym_comparison_operator_token42] = ACTIONS(621), + [aux_sym_comparison_operator_token43] = ACTIONS(621), + [aux_sym_comparison_operator_token44] = ACTIONS(621), + [aux_sym_comparison_operator_token45] = ACTIONS(621), + [aux_sym_comparison_operator_token46] = ACTIONS(621), + [aux_sym_comparison_operator_token47] = ACTIONS(621), + [aux_sym_comparison_operator_token48] = ACTIONS(621), + [aux_sym_comparison_operator_token49] = ACTIONS(621), + [aux_sym_comparison_operator_token50] = ACTIONS(621), + [aux_sym_format_operator_token1] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(623), + [aux_sym_logical_expression_token1] = ACTIONS(621), + [aux_sym_logical_expression_token2] = ACTIONS(621), + [aux_sym_logical_expression_token3] = ACTIONS(621), + [aux_sym_bitwise_expression_token1] = ACTIONS(621), + [aux_sym_bitwise_expression_token2] = ACTIONS(621), + [aux_sym_bitwise_expression_token3] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_BSLASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_DOT2] = ACTIONS(623), + [anon_sym_COLON_COLON] = ACTIONS(621), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(621), + [sym__statement_terminator] = ACTIONS(621), }, [131] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_EQ] = ACTIONS(721), - [anon_sym_BANG_EQ] = ACTIONS(721), - [anon_sym_PLUS_EQ] = ACTIONS(721), - [anon_sym_STAR_EQ] = ACTIONS(721), - [anon_sym_SLASH_EQ] = ACTIONS(721), - [anon_sym_PERCENT_EQ] = ACTIONS(721), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_GT_GT] = ACTIONS(721), - [anon_sym_2_GT] = ACTIONS(723), - [anon_sym_2_GT_GT] = ACTIONS(721), - [anon_sym_3_GT] = ACTIONS(723), - [anon_sym_3_GT_GT] = ACTIONS(721), - [anon_sym_4_GT] = ACTIONS(723), - [anon_sym_4_GT_GT] = ACTIONS(721), - [anon_sym_5_GT] = ACTIONS(723), - [anon_sym_5_GT_GT] = ACTIONS(721), - [anon_sym_6_GT] = ACTIONS(723), - [anon_sym_6_GT_GT] = ACTIONS(721), - [anon_sym_STAR_GT] = ACTIONS(723), - [anon_sym_STAR_GT_GT] = ACTIONS(721), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_STAR_GT_AMP1] = ACTIONS(721), - [anon_sym_2_GT_AMP1] = ACTIONS(721), - [anon_sym_3_GT_AMP1] = ACTIONS(721), - [anon_sym_4_GT_AMP1] = ACTIONS(721), - [anon_sym_5_GT_AMP1] = ACTIONS(721), - [anon_sym_6_GT_AMP1] = ACTIONS(721), - [anon_sym_STAR_GT_AMP2] = ACTIONS(721), - [anon_sym_1_GT_AMP2] = ACTIONS(721), - [anon_sym_3_GT_AMP2] = ACTIONS(721), - [anon_sym_4_GT_AMP2] = ACTIONS(721), - [anon_sym_5_GT_AMP2] = ACTIONS(721), - [anon_sym_6_GT_AMP2] = ACTIONS(721), - [aux_sym_comparison_operator_token1] = ACTIONS(721), - [aux_sym_comparison_operator_token2] = ACTIONS(721), - [aux_sym_comparison_operator_token3] = ACTIONS(721), - [aux_sym_comparison_operator_token4] = ACTIONS(721), - [aux_sym_comparison_operator_token5] = ACTIONS(721), - [aux_sym_comparison_operator_token6] = ACTIONS(721), - [aux_sym_comparison_operator_token7] = ACTIONS(721), - [aux_sym_comparison_operator_token8] = ACTIONS(721), - [aux_sym_comparison_operator_token9] = ACTIONS(721), - [aux_sym_comparison_operator_token10] = ACTIONS(721), - [aux_sym_comparison_operator_token11] = ACTIONS(721), - [aux_sym_comparison_operator_token12] = ACTIONS(721), - [aux_sym_comparison_operator_token13] = ACTIONS(721), - [aux_sym_comparison_operator_token14] = ACTIONS(721), - [aux_sym_comparison_operator_token15] = ACTIONS(721), - [aux_sym_comparison_operator_token16] = ACTIONS(721), - [aux_sym_comparison_operator_token17] = ACTIONS(721), - [aux_sym_comparison_operator_token18] = ACTIONS(721), - [aux_sym_comparison_operator_token19] = ACTIONS(721), - [aux_sym_comparison_operator_token20] = ACTIONS(721), - [aux_sym_comparison_operator_token21] = ACTIONS(721), - [aux_sym_comparison_operator_token22] = ACTIONS(721), - [aux_sym_comparison_operator_token23] = ACTIONS(721), - [aux_sym_comparison_operator_token24] = ACTIONS(721), - [aux_sym_comparison_operator_token25] = ACTIONS(721), - [aux_sym_comparison_operator_token26] = ACTIONS(721), - [aux_sym_comparison_operator_token27] = ACTIONS(721), - [aux_sym_comparison_operator_token28] = ACTIONS(723), - [aux_sym_comparison_operator_token29] = ACTIONS(721), - [aux_sym_comparison_operator_token30] = ACTIONS(721), - [aux_sym_comparison_operator_token31] = ACTIONS(721), - [aux_sym_comparison_operator_token32] = ACTIONS(721), - [aux_sym_comparison_operator_token33] = ACTIONS(721), - [aux_sym_comparison_operator_token34] = ACTIONS(723), - [aux_sym_comparison_operator_token35] = ACTIONS(721), - [aux_sym_comparison_operator_token36] = ACTIONS(721), - [aux_sym_comparison_operator_token37] = ACTIONS(721), - [aux_sym_comparison_operator_token38] = ACTIONS(721), - [aux_sym_comparison_operator_token39] = ACTIONS(721), - [aux_sym_comparison_operator_token40] = ACTIONS(721), - [aux_sym_comparison_operator_token41] = ACTIONS(721), - [aux_sym_comparison_operator_token42] = ACTIONS(721), - [aux_sym_comparison_operator_token43] = ACTIONS(721), - [aux_sym_comparison_operator_token44] = ACTIONS(721), - [aux_sym_comparison_operator_token45] = ACTIONS(721), - [aux_sym_comparison_operator_token46] = ACTIONS(721), - [aux_sym_comparison_operator_token47] = ACTIONS(721), - [aux_sym_comparison_operator_token48] = ACTIONS(721), - [aux_sym_comparison_operator_token49] = ACTIONS(721), - [aux_sym_comparison_operator_token50] = ACTIONS(721), - [aux_sym_format_operator_token1] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(721), - [anon_sym_COMMA] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(721), - [anon_sym_PERCENT] = ACTIONS(723), - [aux_sym_logical_expression_token1] = ACTIONS(721), - [aux_sym_logical_expression_token2] = ACTIONS(721), - [aux_sym_logical_expression_token3] = ACTIONS(721), - [aux_sym_bitwise_expression_token1] = ACTIONS(721), - [aux_sym_bitwise_expression_token2] = ACTIONS(721), - [aux_sym_bitwise_expression_token3] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_DOT2] = ACTIONS(723), - [anon_sym_COLON_COLON] = ACTIONS(721), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(721), - [sym__statement_terminator] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_PLUS_EQ] = ACTIONS(725), + [anon_sym_STAR_EQ] = ACTIONS(725), + [anon_sym_SLASH_EQ] = ACTIONS(725), + [anon_sym_PERCENT_EQ] = ACTIONS(725), + [anon_sym_DASH_EQ] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_2_GT] = ACTIONS(727), + [anon_sym_2_GT_GT] = ACTIONS(725), + [anon_sym_3_GT] = ACTIONS(727), + [anon_sym_3_GT_GT] = ACTIONS(725), + [anon_sym_4_GT] = ACTIONS(727), + [anon_sym_4_GT_GT] = ACTIONS(725), + [anon_sym_5_GT] = ACTIONS(727), + [anon_sym_5_GT_GT] = ACTIONS(725), + [anon_sym_6_GT] = ACTIONS(727), + [anon_sym_6_GT_GT] = ACTIONS(725), + [anon_sym_STAR_GT] = ACTIONS(727), + [anon_sym_STAR_GT_GT] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_STAR_GT_AMP1] = ACTIONS(725), + [anon_sym_2_GT_AMP1] = ACTIONS(725), + [anon_sym_3_GT_AMP1] = ACTIONS(725), + [anon_sym_4_GT_AMP1] = ACTIONS(725), + [anon_sym_5_GT_AMP1] = ACTIONS(725), + [anon_sym_6_GT_AMP1] = ACTIONS(725), + [anon_sym_STAR_GT_AMP2] = ACTIONS(725), + [anon_sym_1_GT_AMP2] = ACTIONS(725), + [anon_sym_3_GT_AMP2] = ACTIONS(725), + [anon_sym_4_GT_AMP2] = ACTIONS(725), + [anon_sym_5_GT_AMP2] = ACTIONS(725), + [anon_sym_6_GT_AMP2] = ACTIONS(725), + [aux_sym_comparison_operator_token1] = ACTIONS(725), + [aux_sym_comparison_operator_token2] = ACTIONS(725), + [aux_sym_comparison_operator_token3] = ACTIONS(725), + [aux_sym_comparison_operator_token4] = ACTIONS(725), + [aux_sym_comparison_operator_token5] = ACTIONS(725), + [aux_sym_comparison_operator_token6] = ACTIONS(725), + [aux_sym_comparison_operator_token7] = ACTIONS(725), + [aux_sym_comparison_operator_token8] = ACTIONS(725), + [aux_sym_comparison_operator_token9] = ACTIONS(725), + [aux_sym_comparison_operator_token10] = ACTIONS(725), + [aux_sym_comparison_operator_token11] = ACTIONS(725), + [aux_sym_comparison_operator_token12] = ACTIONS(725), + [aux_sym_comparison_operator_token13] = ACTIONS(725), + [aux_sym_comparison_operator_token14] = ACTIONS(725), + [aux_sym_comparison_operator_token15] = ACTIONS(725), + [aux_sym_comparison_operator_token16] = ACTIONS(725), + [aux_sym_comparison_operator_token17] = ACTIONS(725), + [aux_sym_comparison_operator_token18] = ACTIONS(725), + [aux_sym_comparison_operator_token19] = ACTIONS(725), + [aux_sym_comparison_operator_token20] = ACTIONS(725), + [aux_sym_comparison_operator_token21] = ACTIONS(725), + [aux_sym_comparison_operator_token22] = ACTIONS(725), + [aux_sym_comparison_operator_token23] = ACTIONS(725), + [aux_sym_comparison_operator_token24] = ACTIONS(725), + [aux_sym_comparison_operator_token25] = ACTIONS(725), + [aux_sym_comparison_operator_token26] = ACTIONS(725), + [aux_sym_comparison_operator_token27] = ACTIONS(725), + [aux_sym_comparison_operator_token28] = ACTIONS(727), + [aux_sym_comparison_operator_token29] = ACTIONS(725), + [aux_sym_comparison_operator_token30] = ACTIONS(725), + [aux_sym_comparison_operator_token31] = ACTIONS(725), + [aux_sym_comparison_operator_token32] = ACTIONS(725), + [aux_sym_comparison_operator_token33] = ACTIONS(725), + [aux_sym_comparison_operator_token34] = ACTIONS(727), + [aux_sym_comparison_operator_token35] = ACTIONS(725), + [aux_sym_comparison_operator_token36] = ACTIONS(725), + [aux_sym_comparison_operator_token37] = ACTIONS(725), + [aux_sym_comparison_operator_token38] = ACTIONS(725), + [aux_sym_comparison_operator_token39] = ACTIONS(725), + [aux_sym_comparison_operator_token40] = ACTIONS(725), + [aux_sym_comparison_operator_token41] = ACTIONS(725), + [aux_sym_comparison_operator_token42] = ACTIONS(725), + [aux_sym_comparison_operator_token43] = ACTIONS(725), + [aux_sym_comparison_operator_token44] = ACTIONS(725), + [aux_sym_comparison_operator_token45] = ACTIONS(725), + [aux_sym_comparison_operator_token46] = ACTIONS(725), + [aux_sym_comparison_operator_token47] = ACTIONS(725), + [aux_sym_comparison_operator_token48] = ACTIONS(725), + [aux_sym_comparison_operator_token49] = ACTIONS(725), + [aux_sym_comparison_operator_token50] = ACTIONS(725), + [aux_sym_format_operator_token1] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_PERCENT] = ACTIONS(727), + [aux_sym_logical_expression_token1] = ACTIONS(725), + [aux_sym_logical_expression_token2] = ACTIONS(725), + [aux_sym_logical_expression_token3] = ACTIONS(725), + [aux_sym_bitwise_expression_token1] = ACTIONS(725), + [aux_sym_bitwise_expression_token2] = ACTIONS(725), + [aux_sym_bitwise_expression_token3] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_BSLASH] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DOT2] = ACTIONS(727), + [anon_sym_COLON_COLON] = ACTIONS(725), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(725), + [sym__statement_terminator] = ACTIONS(725), }, [132] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_DOT2] = ACTIONS(653), - [anon_sym_COLON_COLON] = ACTIONS(651), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(651), - [sym__statement_terminator] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(695), + [anon_sym_DASH_DASH] = ACTIONS(695), + [anon_sym_DOT2] = ACTIONS(697), + [anon_sym_COLON_COLON] = ACTIONS(695), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(695), + [sym__statement_terminator] = ACTIONS(695), }, [133] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_2_GT] = ACTIONS(615), - [anon_sym_2_GT_GT] = ACTIONS(613), - [anon_sym_3_GT] = ACTIONS(615), - [anon_sym_3_GT_GT] = ACTIONS(613), - [anon_sym_4_GT] = ACTIONS(615), - [anon_sym_4_GT_GT] = ACTIONS(613), - [anon_sym_5_GT] = ACTIONS(615), - [anon_sym_5_GT_GT] = ACTIONS(613), - [anon_sym_6_GT] = ACTIONS(615), - [anon_sym_6_GT_GT] = ACTIONS(613), - [anon_sym_STAR_GT] = ACTIONS(615), - [anon_sym_STAR_GT_GT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_STAR_GT_AMP1] = ACTIONS(613), - [anon_sym_2_GT_AMP1] = ACTIONS(613), - [anon_sym_3_GT_AMP1] = ACTIONS(613), - [anon_sym_4_GT_AMP1] = ACTIONS(613), - [anon_sym_5_GT_AMP1] = ACTIONS(613), - [anon_sym_6_GT_AMP1] = ACTIONS(613), - [anon_sym_STAR_GT_AMP2] = ACTIONS(613), - [anon_sym_1_GT_AMP2] = ACTIONS(613), - [anon_sym_3_GT_AMP2] = ACTIONS(613), - [anon_sym_4_GT_AMP2] = ACTIONS(613), - [anon_sym_5_GT_AMP2] = ACTIONS(613), - [anon_sym_6_GT_AMP2] = ACTIONS(613), - [aux_sym_comparison_operator_token1] = ACTIONS(613), - [aux_sym_comparison_operator_token2] = ACTIONS(613), - [aux_sym_comparison_operator_token3] = ACTIONS(613), - [aux_sym_comparison_operator_token4] = ACTIONS(613), - [aux_sym_comparison_operator_token5] = ACTIONS(613), - [aux_sym_comparison_operator_token6] = ACTIONS(613), - [aux_sym_comparison_operator_token7] = ACTIONS(613), - [aux_sym_comparison_operator_token8] = ACTIONS(613), - [aux_sym_comparison_operator_token9] = ACTIONS(613), - [aux_sym_comparison_operator_token10] = ACTIONS(613), - [aux_sym_comparison_operator_token11] = ACTIONS(613), - [aux_sym_comparison_operator_token12] = ACTIONS(613), - [aux_sym_comparison_operator_token13] = ACTIONS(613), - [aux_sym_comparison_operator_token14] = ACTIONS(613), - [aux_sym_comparison_operator_token15] = ACTIONS(613), - [aux_sym_comparison_operator_token16] = ACTIONS(613), - [aux_sym_comparison_operator_token17] = ACTIONS(613), - [aux_sym_comparison_operator_token18] = ACTIONS(613), - [aux_sym_comparison_operator_token19] = ACTIONS(613), - [aux_sym_comparison_operator_token20] = ACTIONS(613), - [aux_sym_comparison_operator_token21] = ACTIONS(613), - [aux_sym_comparison_operator_token22] = ACTIONS(613), - [aux_sym_comparison_operator_token23] = ACTIONS(613), - [aux_sym_comparison_operator_token24] = ACTIONS(613), - [aux_sym_comparison_operator_token25] = ACTIONS(613), - [aux_sym_comparison_operator_token26] = ACTIONS(613), - [aux_sym_comparison_operator_token27] = ACTIONS(613), - [aux_sym_comparison_operator_token28] = ACTIONS(615), - [aux_sym_comparison_operator_token29] = ACTIONS(613), - [aux_sym_comparison_operator_token30] = ACTIONS(613), - [aux_sym_comparison_operator_token31] = ACTIONS(613), - [aux_sym_comparison_operator_token32] = ACTIONS(613), - [aux_sym_comparison_operator_token33] = ACTIONS(613), - [aux_sym_comparison_operator_token34] = ACTIONS(615), - [aux_sym_comparison_operator_token35] = ACTIONS(613), - [aux_sym_comparison_operator_token36] = ACTIONS(613), - [aux_sym_comparison_operator_token37] = ACTIONS(613), - [aux_sym_comparison_operator_token38] = ACTIONS(613), - [aux_sym_comparison_operator_token39] = ACTIONS(613), - [aux_sym_comparison_operator_token40] = ACTIONS(613), - [aux_sym_comparison_operator_token41] = ACTIONS(613), - [aux_sym_comparison_operator_token42] = ACTIONS(613), - [aux_sym_comparison_operator_token43] = ACTIONS(613), - [aux_sym_comparison_operator_token44] = ACTIONS(613), - [aux_sym_comparison_operator_token45] = ACTIONS(613), - [aux_sym_comparison_operator_token46] = ACTIONS(613), - [aux_sym_comparison_operator_token47] = ACTIONS(613), - [aux_sym_comparison_operator_token48] = ACTIONS(613), - [aux_sym_comparison_operator_token49] = ACTIONS(613), - [aux_sym_comparison_operator_token50] = ACTIONS(613), - [aux_sym_format_operator_token1] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(615), - [aux_sym_logical_expression_token1] = ACTIONS(613), - [aux_sym_logical_expression_token2] = ACTIONS(613), - [aux_sym_logical_expression_token3] = ACTIONS(613), - [aux_sym_bitwise_expression_token1] = ACTIONS(613), - [aux_sym_bitwise_expression_token2] = ACTIONS(613), - [aux_sym_bitwise_expression_token3] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_BSLASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_DOT_DOT] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_DOT2] = ACTIONS(615), - [anon_sym_COLON_COLON] = ACTIONS(613), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(613), - [sym__statement_terminator] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(629), + [anon_sym_2_GT] = ACTIONS(631), + [anon_sym_2_GT_GT] = ACTIONS(629), + [anon_sym_3_GT] = ACTIONS(631), + [anon_sym_3_GT_GT] = ACTIONS(629), + [anon_sym_4_GT] = ACTIONS(631), + [anon_sym_4_GT_GT] = ACTIONS(629), + [anon_sym_5_GT] = ACTIONS(631), + [anon_sym_5_GT_GT] = ACTIONS(629), + [anon_sym_6_GT] = ACTIONS(631), + [anon_sym_6_GT_GT] = ACTIONS(629), + [anon_sym_STAR_GT] = ACTIONS(631), + [anon_sym_STAR_GT_GT] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_STAR_GT_AMP1] = ACTIONS(629), + [anon_sym_2_GT_AMP1] = ACTIONS(629), + [anon_sym_3_GT_AMP1] = ACTIONS(629), + [anon_sym_4_GT_AMP1] = ACTIONS(629), + [anon_sym_5_GT_AMP1] = ACTIONS(629), + [anon_sym_6_GT_AMP1] = ACTIONS(629), + [anon_sym_STAR_GT_AMP2] = ACTIONS(629), + [anon_sym_1_GT_AMP2] = ACTIONS(629), + [anon_sym_3_GT_AMP2] = ACTIONS(629), + [anon_sym_4_GT_AMP2] = ACTIONS(629), + [anon_sym_5_GT_AMP2] = ACTIONS(629), + [anon_sym_6_GT_AMP2] = ACTIONS(629), + [aux_sym_comparison_operator_token1] = ACTIONS(629), + [aux_sym_comparison_operator_token2] = ACTIONS(629), + [aux_sym_comparison_operator_token3] = ACTIONS(629), + [aux_sym_comparison_operator_token4] = ACTIONS(629), + [aux_sym_comparison_operator_token5] = ACTIONS(629), + [aux_sym_comparison_operator_token6] = ACTIONS(629), + [aux_sym_comparison_operator_token7] = ACTIONS(629), + [aux_sym_comparison_operator_token8] = ACTIONS(629), + [aux_sym_comparison_operator_token9] = ACTIONS(629), + [aux_sym_comparison_operator_token10] = ACTIONS(629), + [aux_sym_comparison_operator_token11] = ACTIONS(629), + [aux_sym_comparison_operator_token12] = ACTIONS(629), + [aux_sym_comparison_operator_token13] = ACTIONS(629), + [aux_sym_comparison_operator_token14] = ACTIONS(629), + [aux_sym_comparison_operator_token15] = ACTIONS(629), + [aux_sym_comparison_operator_token16] = ACTIONS(629), + [aux_sym_comparison_operator_token17] = ACTIONS(629), + [aux_sym_comparison_operator_token18] = ACTIONS(629), + [aux_sym_comparison_operator_token19] = ACTIONS(629), + [aux_sym_comparison_operator_token20] = ACTIONS(629), + [aux_sym_comparison_operator_token21] = ACTIONS(629), + [aux_sym_comparison_operator_token22] = ACTIONS(629), + [aux_sym_comparison_operator_token23] = ACTIONS(629), + [aux_sym_comparison_operator_token24] = ACTIONS(629), + [aux_sym_comparison_operator_token25] = ACTIONS(629), + [aux_sym_comparison_operator_token26] = ACTIONS(629), + [aux_sym_comparison_operator_token27] = ACTIONS(629), + [aux_sym_comparison_operator_token28] = ACTIONS(631), + [aux_sym_comparison_operator_token29] = ACTIONS(629), + [aux_sym_comparison_operator_token30] = ACTIONS(629), + [aux_sym_comparison_operator_token31] = ACTIONS(629), + [aux_sym_comparison_operator_token32] = ACTIONS(629), + [aux_sym_comparison_operator_token33] = ACTIONS(629), + [aux_sym_comparison_operator_token34] = ACTIONS(631), + [aux_sym_comparison_operator_token35] = ACTIONS(629), + [aux_sym_comparison_operator_token36] = ACTIONS(629), + [aux_sym_comparison_operator_token37] = ACTIONS(629), + [aux_sym_comparison_operator_token38] = ACTIONS(629), + [aux_sym_comparison_operator_token39] = ACTIONS(629), + [aux_sym_comparison_operator_token40] = ACTIONS(629), + [aux_sym_comparison_operator_token41] = ACTIONS(629), + [aux_sym_comparison_operator_token42] = ACTIONS(629), + [aux_sym_comparison_operator_token43] = ACTIONS(629), + [aux_sym_comparison_operator_token44] = ACTIONS(629), + [aux_sym_comparison_operator_token45] = ACTIONS(629), + [aux_sym_comparison_operator_token46] = ACTIONS(629), + [aux_sym_comparison_operator_token47] = ACTIONS(629), + [aux_sym_comparison_operator_token48] = ACTIONS(629), + [aux_sym_comparison_operator_token49] = ACTIONS(629), + [aux_sym_comparison_operator_token50] = ACTIONS(629), + [aux_sym_format_operator_token1] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(629), + [anon_sym_PERCENT] = ACTIONS(631), + [aux_sym_logical_expression_token1] = ACTIONS(629), + [aux_sym_logical_expression_token2] = ACTIONS(629), + [aux_sym_logical_expression_token3] = ACTIONS(629), + [aux_sym_bitwise_expression_token1] = ACTIONS(629), + [aux_sym_bitwise_expression_token2] = ACTIONS(629), + [aux_sym_bitwise_expression_token3] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_DOT_DOT] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DOT2] = ACTIONS(631), + [anon_sym_COLON_COLON] = ACTIONS(629), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(629), + [sym__statement_terminator] = ACTIONS(629), }, [134] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_2_GT] = ACTIONS(619), - [anon_sym_2_GT_GT] = ACTIONS(617), - [anon_sym_3_GT] = ACTIONS(619), - [anon_sym_3_GT_GT] = ACTIONS(617), - [anon_sym_4_GT] = ACTIONS(619), - [anon_sym_4_GT_GT] = ACTIONS(617), - [anon_sym_5_GT] = ACTIONS(619), - [anon_sym_5_GT_GT] = ACTIONS(617), - [anon_sym_6_GT] = ACTIONS(619), - [anon_sym_6_GT_GT] = ACTIONS(617), - [anon_sym_STAR_GT] = ACTIONS(619), - [anon_sym_STAR_GT_GT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_STAR_GT_AMP1] = ACTIONS(617), - [anon_sym_2_GT_AMP1] = ACTIONS(617), - [anon_sym_3_GT_AMP1] = ACTIONS(617), - [anon_sym_4_GT_AMP1] = ACTIONS(617), - [anon_sym_5_GT_AMP1] = ACTIONS(617), - [anon_sym_6_GT_AMP1] = ACTIONS(617), - [anon_sym_STAR_GT_AMP2] = ACTIONS(617), - [anon_sym_1_GT_AMP2] = ACTIONS(617), - [anon_sym_3_GT_AMP2] = ACTIONS(617), - [anon_sym_4_GT_AMP2] = ACTIONS(617), - [anon_sym_5_GT_AMP2] = ACTIONS(617), - [anon_sym_6_GT_AMP2] = ACTIONS(617), - [aux_sym_comparison_operator_token1] = ACTIONS(617), - [aux_sym_comparison_operator_token2] = ACTIONS(617), - [aux_sym_comparison_operator_token3] = ACTIONS(617), - [aux_sym_comparison_operator_token4] = ACTIONS(617), - [aux_sym_comparison_operator_token5] = ACTIONS(617), - [aux_sym_comparison_operator_token6] = ACTIONS(617), - [aux_sym_comparison_operator_token7] = ACTIONS(617), - [aux_sym_comparison_operator_token8] = ACTIONS(617), - [aux_sym_comparison_operator_token9] = ACTIONS(617), - [aux_sym_comparison_operator_token10] = ACTIONS(617), - [aux_sym_comparison_operator_token11] = ACTIONS(617), - [aux_sym_comparison_operator_token12] = ACTIONS(617), - [aux_sym_comparison_operator_token13] = ACTIONS(617), - [aux_sym_comparison_operator_token14] = ACTIONS(617), - [aux_sym_comparison_operator_token15] = ACTIONS(617), - [aux_sym_comparison_operator_token16] = ACTIONS(617), - [aux_sym_comparison_operator_token17] = ACTIONS(617), - [aux_sym_comparison_operator_token18] = ACTIONS(617), - [aux_sym_comparison_operator_token19] = ACTIONS(617), - [aux_sym_comparison_operator_token20] = ACTIONS(617), - [aux_sym_comparison_operator_token21] = ACTIONS(617), - [aux_sym_comparison_operator_token22] = ACTIONS(617), - [aux_sym_comparison_operator_token23] = ACTIONS(617), - [aux_sym_comparison_operator_token24] = ACTIONS(617), - [aux_sym_comparison_operator_token25] = ACTIONS(617), - [aux_sym_comparison_operator_token26] = ACTIONS(617), - [aux_sym_comparison_operator_token27] = ACTIONS(617), - [aux_sym_comparison_operator_token28] = ACTIONS(619), - [aux_sym_comparison_operator_token29] = ACTIONS(617), - [aux_sym_comparison_operator_token30] = ACTIONS(617), - [aux_sym_comparison_operator_token31] = ACTIONS(617), - [aux_sym_comparison_operator_token32] = ACTIONS(617), - [aux_sym_comparison_operator_token33] = ACTIONS(617), - [aux_sym_comparison_operator_token34] = ACTIONS(619), - [aux_sym_comparison_operator_token35] = ACTIONS(617), - [aux_sym_comparison_operator_token36] = ACTIONS(617), - [aux_sym_comparison_operator_token37] = ACTIONS(617), - [aux_sym_comparison_operator_token38] = ACTIONS(617), - [aux_sym_comparison_operator_token39] = ACTIONS(617), - [aux_sym_comparison_operator_token40] = ACTIONS(617), - [aux_sym_comparison_operator_token41] = ACTIONS(617), - [aux_sym_comparison_operator_token42] = ACTIONS(617), - [aux_sym_comparison_operator_token43] = ACTIONS(617), - [aux_sym_comparison_operator_token44] = ACTIONS(617), - [aux_sym_comparison_operator_token45] = ACTIONS(617), - [aux_sym_comparison_operator_token46] = ACTIONS(617), - [aux_sym_comparison_operator_token47] = ACTIONS(617), - [aux_sym_comparison_operator_token48] = ACTIONS(617), - [aux_sym_comparison_operator_token49] = ACTIONS(617), - [aux_sym_comparison_operator_token50] = ACTIONS(617), - [aux_sym_format_operator_token1] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(619), - [aux_sym_logical_expression_token1] = ACTIONS(617), - [aux_sym_logical_expression_token2] = ACTIONS(617), - [aux_sym_logical_expression_token3] = ACTIONS(617), - [aux_sym_bitwise_expression_token1] = ACTIONS(617), - [aux_sym_bitwise_expression_token2] = ACTIONS(617), - [aux_sym_bitwise_expression_token3] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_BSLASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_DOT2] = ACTIONS(619), - [anon_sym_COLON_COLON] = ACTIONS(617), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(617), - [sym__statement_terminator] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_BANG_EQ] = ACTIONS(633), + [anon_sym_PLUS_EQ] = ACTIONS(633), + [anon_sym_STAR_EQ] = ACTIONS(633), + [anon_sym_SLASH_EQ] = ACTIONS(633), + [anon_sym_PERCENT_EQ] = ACTIONS(633), + [anon_sym_DASH_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_2_GT] = ACTIONS(635), + [anon_sym_2_GT_GT] = ACTIONS(633), + [anon_sym_3_GT] = ACTIONS(635), + [anon_sym_3_GT_GT] = ACTIONS(633), + [anon_sym_4_GT] = ACTIONS(635), + [anon_sym_4_GT_GT] = ACTIONS(633), + [anon_sym_5_GT] = ACTIONS(635), + [anon_sym_5_GT_GT] = ACTIONS(633), + [anon_sym_6_GT] = ACTIONS(635), + [anon_sym_6_GT_GT] = ACTIONS(633), + [anon_sym_STAR_GT] = ACTIONS(635), + [anon_sym_STAR_GT_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_STAR_GT_AMP1] = ACTIONS(633), + [anon_sym_2_GT_AMP1] = ACTIONS(633), + [anon_sym_3_GT_AMP1] = ACTIONS(633), + [anon_sym_4_GT_AMP1] = ACTIONS(633), + [anon_sym_5_GT_AMP1] = ACTIONS(633), + [anon_sym_6_GT_AMP1] = ACTIONS(633), + [anon_sym_STAR_GT_AMP2] = ACTIONS(633), + [anon_sym_1_GT_AMP2] = ACTIONS(633), + [anon_sym_3_GT_AMP2] = ACTIONS(633), + [anon_sym_4_GT_AMP2] = ACTIONS(633), + [anon_sym_5_GT_AMP2] = ACTIONS(633), + [anon_sym_6_GT_AMP2] = ACTIONS(633), + [aux_sym_comparison_operator_token1] = ACTIONS(633), + [aux_sym_comparison_operator_token2] = ACTIONS(633), + [aux_sym_comparison_operator_token3] = ACTIONS(633), + [aux_sym_comparison_operator_token4] = ACTIONS(633), + [aux_sym_comparison_operator_token5] = ACTIONS(633), + [aux_sym_comparison_operator_token6] = ACTIONS(633), + [aux_sym_comparison_operator_token7] = ACTIONS(633), + [aux_sym_comparison_operator_token8] = ACTIONS(633), + [aux_sym_comparison_operator_token9] = ACTIONS(633), + [aux_sym_comparison_operator_token10] = ACTIONS(633), + [aux_sym_comparison_operator_token11] = ACTIONS(633), + [aux_sym_comparison_operator_token12] = ACTIONS(633), + [aux_sym_comparison_operator_token13] = ACTIONS(633), + [aux_sym_comparison_operator_token14] = ACTIONS(633), + [aux_sym_comparison_operator_token15] = ACTIONS(633), + [aux_sym_comparison_operator_token16] = ACTIONS(633), + [aux_sym_comparison_operator_token17] = ACTIONS(633), + [aux_sym_comparison_operator_token18] = ACTIONS(633), + [aux_sym_comparison_operator_token19] = ACTIONS(633), + [aux_sym_comparison_operator_token20] = ACTIONS(633), + [aux_sym_comparison_operator_token21] = ACTIONS(633), + [aux_sym_comparison_operator_token22] = ACTIONS(633), + [aux_sym_comparison_operator_token23] = ACTIONS(633), + [aux_sym_comparison_operator_token24] = ACTIONS(633), + [aux_sym_comparison_operator_token25] = ACTIONS(633), + [aux_sym_comparison_operator_token26] = ACTIONS(633), + [aux_sym_comparison_operator_token27] = ACTIONS(633), + [aux_sym_comparison_operator_token28] = ACTIONS(635), + [aux_sym_comparison_operator_token29] = ACTIONS(633), + [aux_sym_comparison_operator_token30] = ACTIONS(633), + [aux_sym_comparison_operator_token31] = ACTIONS(633), + [aux_sym_comparison_operator_token32] = ACTIONS(633), + [aux_sym_comparison_operator_token33] = ACTIONS(633), + [aux_sym_comparison_operator_token34] = ACTIONS(635), + [aux_sym_comparison_operator_token35] = ACTIONS(633), + [aux_sym_comparison_operator_token36] = ACTIONS(633), + [aux_sym_comparison_operator_token37] = ACTIONS(633), + [aux_sym_comparison_operator_token38] = ACTIONS(633), + [aux_sym_comparison_operator_token39] = ACTIONS(633), + [aux_sym_comparison_operator_token40] = ACTIONS(633), + [aux_sym_comparison_operator_token41] = ACTIONS(633), + [aux_sym_comparison_operator_token42] = ACTIONS(633), + [aux_sym_comparison_operator_token43] = ACTIONS(633), + [aux_sym_comparison_operator_token44] = ACTIONS(633), + [aux_sym_comparison_operator_token45] = ACTIONS(633), + [aux_sym_comparison_operator_token46] = ACTIONS(633), + [aux_sym_comparison_operator_token47] = ACTIONS(633), + [aux_sym_comparison_operator_token48] = ACTIONS(633), + [aux_sym_comparison_operator_token49] = ACTIONS(633), + [aux_sym_comparison_operator_token50] = ACTIONS(633), + [aux_sym_format_operator_token1] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(635), + [aux_sym_logical_expression_token1] = ACTIONS(633), + [aux_sym_logical_expression_token2] = ACTIONS(633), + [aux_sym_logical_expression_token3] = ACTIONS(633), + [aux_sym_bitwise_expression_token1] = ACTIONS(633), + [aux_sym_bitwise_expression_token2] = ACTIONS(633), + [aux_sym_bitwise_expression_token3] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_BSLASH] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_DOT_DOT] = ACTIONS(633), + [anon_sym_PLUS_PLUS] = ACTIONS(633), + [anon_sym_DASH_DASH] = ACTIONS(633), + [anon_sym_DOT2] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(633), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(633), + [sym__statement_terminator] = ACTIONS(633), }, [135] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(643), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_2_GT] = ACTIONS(645), - [anon_sym_2_GT_GT] = ACTIONS(643), - [anon_sym_3_GT] = ACTIONS(645), - [anon_sym_3_GT_GT] = ACTIONS(643), - [anon_sym_4_GT] = ACTIONS(645), - [anon_sym_4_GT_GT] = ACTIONS(643), - [anon_sym_5_GT] = ACTIONS(645), - [anon_sym_5_GT_GT] = ACTIONS(643), - [anon_sym_6_GT] = ACTIONS(645), - [anon_sym_6_GT_GT] = ACTIONS(643), - [anon_sym_STAR_GT] = ACTIONS(645), - [anon_sym_STAR_GT_GT] = ACTIONS(643), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_STAR_GT_AMP1] = ACTIONS(643), - [anon_sym_2_GT_AMP1] = ACTIONS(643), - [anon_sym_3_GT_AMP1] = ACTIONS(643), - [anon_sym_4_GT_AMP1] = ACTIONS(643), - [anon_sym_5_GT_AMP1] = ACTIONS(643), - [anon_sym_6_GT_AMP1] = ACTIONS(643), - [anon_sym_STAR_GT_AMP2] = ACTIONS(643), - [anon_sym_1_GT_AMP2] = ACTIONS(643), - [anon_sym_3_GT_AMP2] = ACTIONS(643), - [anon_sym_4_GT_AMP2] = ACTIONS(643), - [anon_sym_5_GT_AMP2] = ACTIONS(643), - [anon_sym_6_GT_AMP2] = ACTIONS(643), - [aux_sym_comparison_operator_token1] = ACTIONS(643), - [aux_sym_comparison_operator_token2] = ACTIONS(643), - [aux_sym_comparison_operator_token3] = ACTIONS(643), - [aux_sym_comparison_operator_token4] = ACTIONS(643), - [aux_sym_comparison_operator_token5] = ACTIONS(643), - [aux_sym_comparison_operator_token6] = ACTIONS(643), - [aux_sym_comparison_operator_token7] = ACTIONS(643), - [aux_sym_comparison_operator_token8] = ACTIONS(643), - [aux_sym_comparison_operator_token9] = ACTIONS(643), - [aux_sym_comparison_operator_token10] = ACTIONS(643), - [aux_sym_comparison_operator_token11] = ACTIONS(643), - [aux_sym_comparison_operator_token12] = ACTIONS(643), - [aux_sym_comparison_operator_token13] = ACTIONS(643), - [aux_sym_comparison_operator_token14] = ACTIONS(643), - [aux_sym_comparison_operator_token15] = ACTIONS(643), - [aux_sym_comparison_operator_token16] = ACTIONS(643), - [aux_sym_comparison_operator_token17] = ACTIONS(643), - [aux_sym_comparison_operator_token18] = ACTIONS(643), - [aux_sym_comparison_operator_token19] = ACTIONS(643), - [aux_sym_comparison_operator_token20] = ACTIONS(643), - [aux_sym_comparison_operator_token21] = ACTIONS(643), - [aux_sym_comparison_operator_token22] = ACTIONS(643), - [aux_sym_comparison_operator_token23] = ACTIONS(643), - [aux_sym_comparison_operator_token24] = ACTIONS(643), - [aux_sym_comparison_operator_token25] = ACTIONS(643), - [aux_sym_comparison_operator_token26] = ACTIONS(643), - [aux_sym_comparison_operator_token27] = ACTIONS(643), - [aux_sym_comparison_operator_token28] = ACTIONS(645), - [aux_sym_comparison_operator_token29] = ACTIONS(643), - [aux_sym_comparison_operator_token30] = ACTIONS(643), - [aux_sym_comparison_operator_token31] = ACTIONS(643), - [aux_sym_comparison_operator_token32] = ACTIONS(643), - [aux_sym_comparison_operator_token33] = ACTIONS(643), - [aux_sym_comparison_operator_token34] = ACTIONS(645), - [aux_sym_comparison_operator_token35] = ACTIONS(643), - [aux_sym_comparison_operator_token36] = ACTIONS(643), - [aux_sym_comparison_operator_token37] = ACTIONS(643), - [aux_sym_comparison_operator_token38] = ACTIONS(643), - [aux_sym_comparison_operator_token39] = ACTIONS(643), - [aux_sym_comparison_operator_token40] = ACTIONS(643), - [aux_sym_comparison_operator_token41] = ACTIONS(643), - [aux_sym_comparison_operator_token42] = ACTIONS(643), - [aux_sym_comparison_operator_token43] = ACTIONS(643), - [aux_sym_comparison_operator_token44] = ACTIONS(643), - [aux_sym_comparison_operator_token45] = ACTIONS(643), - [aux_sym_comparison_operator_token46] = ACTIONS(643), - [aux_sym_comparison_operator_token47] = ACTIONS(643), - [aux_sym_comparison_operator_token48] = ACTIONS(643), - [aux_sym_comparison_operator_token49] = ACTIONS(643), - [aux_sym_comparison_operator_token50] = ACTIONS(643), - [aux_sym_format_operator_token1] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(643), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_PERCENT] = ACTIONS(645), - [aux_sym_logical_expression_token1] = ACTIONS(643), - [aux_sym_logical_expression_token2] = ACTIONS(643), - [aux_sym_logical_expression_token3] = ACTIONS(643), - [aux_sym_bitwise_expression_token1] = ACTIONS(643), - [aux_sym_bitwise_expression_token2] = ACTIONS(643), - [aux_sym_bitwise_expression_token3] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_BSLASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(643), - [anon_sym_DOT2] = ACTIONS(645), - [anon_sym_COLON_COLON] = ACTIONS(643), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(643), - [sym__statement_terminator] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_PERCENT_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_2_GT] = ACTIONS(639), + [anon_sym_2_GT_GT] = ACTIONS(637), + [anon_sym_3_GT] = ACTIONS(639), + [anon_sym_3_GT_GT] = ACTIONS(637), + [anon_sym_4_GT] = ACTIONS(639), + [anon_sym_4_GT_GT] = ACTIONS(637), + [anon_sym_5_GT] = ACTIONS(639), + [anon_sym_5_GT_GT] = ACTIONS(637), + [anon_sym_6_GT] = ACTIONS(639), + [anon_sym_6_GT_GT] = ACTIONS(637), + [anon_sym_STAR_GT] = ACTIONS(639), + [anon_sym_STAR_GT_GT] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_STAR_GT_AMP1] = ACTIONS(637), + [anon_sym_2_GT_AMP1] = ACTIONS(637), + [anon_sym_3_GT_AMP1] = ACTIONS(637), + [anon_sym_4_GT_AMP1] = ACTIONS(637), + [anon_sym_5_GT_AMP1] = ACTIONS(637), + [anon_sym_6_GT_AMP1] = ACTIONS(637), + [anon_sym_STAR_GT_AMP2] = ACTIONS(637), + [anon_sym_1_GT_AMP2] = ACTIONS(637), + [anon_sym_3_GT_AMP2] = ACTIONS(637), + [anon_sym_4_GT_AMP2] = ACTIONS(637), + [anon_sym_5_GT_AMP2] = ACTIONS(637), + [anon_sym_6_GT_AMP2] = ACTIONS(637), + [aux_sym_comparison_operator_token1] = ACTIONS(637), + [aux_sym_comparison_operator_token2] = ACTIONS(637), + [aux_sym_comparison_operator_token3] = ACTIONS(637), + [aux_sym_comparison_operator_token4] = ACTIONS(637), + [aux_sym_comparison_operator_token5] = ACTIONS(637), + [aux_sym_comparison_operator_token6] = ACTIONS(637), + [aux_sym_comparison_operator_token7] = ACTIONS(637), + [aux_sym_comparison_operator_token8] = ACTIONS(637), + [aux_sym_comparison_operator_token9] = ACTIONS(637), + [aux_sym_comparison_operator_token10] = ACTIONS(637), + [aux_sym_comparison_operator_token11] = ACTIONS(637), + [aux_sym_comparison_operator_token12] = ACTIONS(637), + [aux_sym_comparison_operator_token13] = ACTIONS(637), + [aux_sym_comparison_operator_token14] = ACTIONS(637), + [aux_sym_comparison_operator_token15] = ACTIONS(637), + [aux_sym_comparison_operator_token16] = ACTIONS(637), + [aux_sym_comparison_operator_token17] = ACTIONS(637), + [aux_sym_comparison_operator_token18] = ACTIONS(637), + [aux_sym_comparison_operator_token19] = ACTIONS(637), + [aux_sym_comparison_operator_token20] = ACTIONS(637), + [aux_sym_comparison_operator_token21] = ACTIONS(637), + [aux_sym_comparison_operator_token22] = ACTIONS(637), + [aux_sym_comparison_operator_token23] = ACTIONS(637), + [aux_sym_comparison_operator_token24] = ACTIONS(637), + [aux_sym_comparison_operator_token25] = ACTIONS(637), + [aux_sym_comparison_operator_token26] = ACTIONS(637), + [aux_sym_comparison_operator_token27] = ACTIONS(637), + [aux_sym_comparison_operator_token28] = ACTIONS(639), + [aux_sym_comparison_operator_token29] = ACTIONS(637), + [aux_sym_comparison_operator_token30] = ACTIONS(637), + [aux_sym_comparison_operator_token31] = ACTIONS(637), + [aux_sym_comparison_operator_token32] = ACTIONS(637), + [aux_sym_comparison_operator_token33] = ACTIONS(637), + [aux_sym_comparison_operator_token34] = ACTIONS(639), + [aux_sym_comparison_operator_token35] = ACTIONS(637), + [aux_sym_comparison_operator_token36] = ACTIONS(637), + [aux_sym_comparison_operator_token37] = ACTIONS(637), + [aux_sym_comparison_operator_token38] = ACTIONS(637), + [aux_sym_comparison_operator_token39] = ACTIONS(637), + [aux_sym_comparison_operator_token40] = ACTIONS(637), + [aux_sym_comparison_operator_token41] = ACTIONS(637), + [aux_sym_comparison_operator_token42] = ACTIONS(637), + [aux_sym_comparison_operator_token43] = ACTIONS(637), + [aux_sym_comparison_operator_token44] = ACTIONS(637), + [aux_sym_comparison_operator_token45] = ACTIONS(637), + [aux_sym_comparison_operator_token46] = ACTIONS(637), + [aux_sym_comparison_operator_token47] = ACTIONS(637), + [aux_sym_comparison_operator_token48] = ACTIONS(637), + [aux_sym_comparison_operator_token49] = ACTIONS(637), + [aux_sym_comparison_operator_token50] = ACTIONS(637), + [aux_sym_format_operator_token1] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [aux_sym_logical_expression_token1] = ACTIONS(637), + [aux_sym_logical_expression_token2] = ACTIONS(637), + [aux_sym_logical_expression_token3] = ACTIONS(637), + [aux_sym_bitwise_expression_token1] = ACTIONS(637), + [aux_sym_bitwise_expression_token2] = ACTIONS(637), + [aux_sym_bitwise_expression_token3] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_BSLASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_DOT2] = ACTIONS(639), + [anon_sym_COLON_COLON] = ACTIONS(637), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(637), + [sym__statement_terminator] = ACTIONS(637), }, [136] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_2_GT] = ACTIONS(625), - [anon_sym_2_GT_GT] = ACTIONS(623), - [anon_sym_3_GT] = ACTIONS(625), - [anon_sym_3_GT_GT] = ACTIONS(623), - [anon_sym_4_GT] = ACTIONS(625), - [anon_sym_4_GT_GT] = ACTIONS(623), - [anon_sym_5_GT] = ACTIONS(625), - [anon_sym_5_GT_GT] = ACTIONS(623), - [anon_sym_6_GT] = ACTIONS(625), - [anon_sym_6_GT_GT] = ACTIONS(623), - [anon_sym_STAR_GT] = ACTIONS(625), - [anon_sym_STAR_GT_GT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_STAR_GT_AMP1] = ACTIONS(623), - [anon_sym_2_GT_AMP1] = ACTIONS(623), - [anon_sym_3_GT_AMP1] = ACTIONS(623), - [anon_sym_4_GT_AMP1] = ACTIONS(623), - [anon_sym_5_GT_AMP1] = ACTIONS(623), - [anon_sym_6_GT_AMP1] = ACTIONS(623), - [anon_sym_STAR_GT_AMP2] = ACTIONS(623), - [anon_sym_1_GT_AMP2] = ACTIONS(623), - [anon_sym_3_GT_AMP2] = ACTIONS(623), - [anon_sym_4_GT_AMP2] = ACTIONS(623), - [anon_sym_5_GT_AMP2] = ACTIONS(623), - [anon_sym_6_GT_AMP2] = ACTIONS(623), - [aux_sym_comparison_operator_token1] = ACTIONS(623), - [aux_sym_comparison_operator_token2] = ACTIONS(623), - [aux_sym_comparison_operator_token3] = ACTIONS(623), - [aux_sym_comparison_operator_token4] = ACTIONS(623), - [aux_sym_comparison_operator_token5] = ACTIONS(623), - [aux_sym_comparison_operator_token6] = ACTIONS(623), - [aux_sym_comparison_operator_token7] = ACTIONS(623), - [aux_sym_comparison_operator_token8] = ACTIONS(623), - [aux_sym_comparison_operator_token9] = ACTIONS(623), - [aux_sym_comparison_operator_token10] = ACTIONS(623), - [aux_sym_comparison_operator_token11] = ACTIONS(623), - [aux_sym_comparison_operator_token12] = ACTIONS(623), - [aux_sym_comparison_operator_token13] = ACTIONS(623), - [aux_sym_comparison_operator_token14] = ACTIONS(623), - [aux_sym_comparison_operator_token15] = ACTIONS(623), - [aux_sym_comparison_operator_token16] = ACTIONS(623), - [aux_sym_comparison_operator_token17] = ACTIONS(623), - [aux_sym_comparison_operator_token18] = ACTIONS(623), - [aux_sym_comparison_operator_token19] = ACTIONS(623), - [aux_sym_comparison_operator_token20] = ACTIONS(623), - [aux_sym_comparison_operator_token21] = ACTIONS(623), - [aux_sym_comparison_operator_token22] = ACTIONS(623), - [aux_sym_comparison_operator_token23] = ACTIONS(623), - [aux_sym_comparison_operator_token24] = ACTIONS(623), - [aux_sym_comparison_operator_token25] = ACTIONS(623), - [aux_sym_comparison_operator_token26] = ACTIONS(623), - [aux_sym_comparison_operator_token27] = ACTIONS(623), - [aux_sym_comparison_operator_token28] = ACTIONS(625), - [aux_sym_comparison_operator_token29] = ACTIONS(623), - [aux_sym_comparison_operator_token30] = ACTIONS(623), - [aux_sym_comparison_operator_token31] = ACTIONS(623), - [aux_sym_comparison_operator_token32] = ACTIONS(623), - [aux_sym_comparison_operator_token33] = ACTIONS(623), - [aux_sym_comparison_operator_token34] = ACTIONS(625), - [aux_sym_comparison_operator_token35] = ACTIONS(623), - [aux_sym_comparison_operator_token36] = ACTIONS(623), - [aux_sym_comparison_operator_token37] = ACTIONS(623), - [aux_sym_comparison_operator_token38] = ACTIONS(623), - [aux_sym_comparison_operator_token39] = ACTIONS(623), - [aux_sym_comparison_operator_token40] = ACTIONS(623), - [aux_sym_comparison_operator_token41] = ACTIONS(623), - [aux_sym_comparison_operator_token42] = ACTIONS(623), - [aux_sym_comparison_operator_token43] = ACTIONS(623), - [aux_sym_comparison_operator_token44] = ACTIONS(623), - [aux_sym_comparison_operator_token45] = ACTIONS(623), - [aux_sym_comparison_operator_token46] = ACTIONS(623), - [aux_sym_comparison_operator_token47] = ACTIONS(623), - [aux_sym_comparison_operator_token48] = ACTIONS(623), - [aux_sym_comparison_operator_token49] = ACTIONS(623), - [aux_sym_comparison_operator_token50] = ACTIONS(623), - [aux_sym_format_operator_token1] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(625), - [aux_sym_logical_expression_token1] = ACTIONS(623), - [aux_sym_logical_expression_token2] = ACTIONS(623), - [aux_sym_logical_expression_token3] = ACTIONS(623), - [aux_sym_bitwise_expression_token1] = ACTIONS(623), - [aux_sym_bitwise_expression_token2] = ACTIONS(623), - [aux_sym_bitwise_expression_token3] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(625), - [anon_sym_BSLASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_DOT_DOT] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_DOT2] = ACTIONS(625), - [anon_sym_COLON_COLON] = ACTIONS(623), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(623), - [sym__statement_terminator] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_PLUS_EQ] = ACTIONS(641), + [anon_sym_STAR_EQ] = ACTIONS(641), + [anon_sym_SLASH_EQ] = ACTIONS(641), + [anon_sym_PERCENT_EQ] = ACTIONS(641), + [anon_sym_DASH_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(641), + [anon_sym_2_GT] = ACTIONS(643), + [anon_sym_2_GT_GT] = ACTIONS(641), + [anon_sym_3_GT] = ACTIONS(643), + [anon_sym_3_GT_GT] = ACTIONS(641), + [anon_sym_4_GT] = ACTIONS(643), + [anon_sym_4_GT_GT] = ACTIONS(641), + [anon_sym_5_GT] = ACTIONS(643), + [anon_sym_5_GT_GT] = ACTIONS(641), + [anon_sym_6_GT] = ACTIONS(643), + [anon_sym_6_GT_GT] = ACTIONS(641), + [anon_sym_STAR_GT] = ACTIONS(643), + [anon_sym_STAR_GT_GT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_STAR_GT_AMP1] = ACTIONS(641), + [anon_sym_2_GT_AMP1] = ACTIONS(641), + [anon_sym_3_GT_AMP1] = ACTIONS(641), + [anon_sym_4_GT_AMP1] = ACTIONS(641), + [anon_sym_5_GT_AMP1] = ACTIONS(641), + [anon_sym_6_GT_AMP1] = ACTIONS(641), + [anon_sym_STAR_GT_AMP2] = ACTIONS(641), + [anon_sym_1_GT_AMP2] = ACTIONS(641), + [anon_sym_3_GT_AMP2] = ACTIONS(641), + [anon_sym_4_GT_AMP2] = ACTIONS(641), + [anon_sym_5_GT_AMP2] = ACTIONS(641), + [anon_sym_6_GT_AMP2] = ACTIONS(641), + [aux_sym_comparison_operator_token1] = ACTIONS(641), + [aux_sym_comparison_operator_token2] = ACTIONS(641), + [aux_sym_comparison_operator_token3] = ACTIONS(641), + [aux_sym_comparison_operator_token4] = ACTIONS(641), + [aux_sym_comparison_operator_token5] = ACTIONS(641), + [aux_sym_comparison_operator_token6] = ACTIONS(641), + [aux_sym_comparison_operator_token7] = ACTIONS(641), + [aux_sym_comparison_operator_token8] = ACTIONS(641), + [aux_sym_comparison_operator_token9] = ACTIONS(641), + [aux_sym_comparison_operator_token10] = ACTIONS(641), + [aux_sym_comparison_operator_token11] = ACTIONS(641), + [aux_sym_comparison_operator_token12] = ACTIONS(641), + [aux_sym_comparison_operator_token13] = ACTIONS(641), + [aux_sym_comparison_operator_token14] = ACTIONS(641), + [aux_sym_comparison_operator_token15] = ACTIONS(641), + [aux_sym_comparison_operator_token16] = ACTIONS(641), + [aux_sym_comparison_operator_token17] = ACTIONS(641), + [aux_sym_comparison_operator_token18] = ACTIONS(641), + [aux_sym_comparison_operator_token19] = ACTIONS(641), + [aux_sym_comparison_operator_token20] = ACTIONS(641), + [aux_sym_comparison_operator_token21] = ACTIONS(641), + [aux_sym_comparison_operator_token22] = ACTIONS(641), + [aux_sym_comparison_operator_token23] = ACTIONS(641), + [aux_sym_comparison_operator_token24] = ACTIONS(641), + [aux_sym_comparison_operator_token25] = ACTIONS(641), + [aux_sym_comparison_operator_token26] = ACTIONS(641), + [aux_sym_comparison_operator_token27] = ACTIONS(641), + [aux_sym_comparison_operator_token28] = ACTIONS(643), + [aux_sym_comparison_operator_token29] = ACTIONS(641), + [aux_sym_comparison_operator_token30] = ACTIONS(641), + [aux_sym_comparison_operator_token31] = ACTIONS(641), + [aux_sym_comparison_operator_token32] = ACTIONS(641), + [aux_sym_comparison_operator_token33] = ACTIONS(641), + [aux_sym_comparison_operator_token34] = ACTIONS(643), + [aux_sym_comparison_operator_token35] = ACTIONS(641), + [aux_sym_comparison_operator_token36] = ACTIONS(641), + [aux_sym_comparison_operator_token37] = ACTIONS(641), + [aux_sym_comparison_operator_token38] = ACTIONS(641), + [aux_sym_comparison_operator_token39] = ACTIONS(641), + [aux_sym_comparison_operator_token40] = ACTIONS(641), + [aux_sym_comparison_operator_token41] = ACTIONS(641), + [aux_sym_comparison_operator_token42] = ACTIONS(641), + [aux_sym_comparison_operator_token43] = ACTIONS(641), + [aux_sym_comparison_operator_token44] = ACTIONS(641), + [aux_sym_comparison_operator_token45] = ACTIONS(641), + [aux_sym_comparison_operator_token46] = ACTIONS(641), + [aux_sym_comparison_operator_token47] = ACTIONS(641), + [aux_sym_comparison_operator_token48] = ACTIONS(641), + [aux_sym_comparison_operator_token49] = ACTIONS(641), + [aux_sym_comparison_operator_token50] = ACTIONS(641), + [aux_sym_format_operator_token1] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_PERCENT] = ACTIONS(643), + [aux_sym_logical_expression_token1] = ACTIONS(641), + [aux_sym_logical_expression_token2] = ACTIONS(641), + [aux_sym_logical_expression_token3] = ACTIONS(641), + [aux_sym_bitwise_expression_token1] = ACTIONS(641), + [aux_sym_bitwise_expression_token2] = ACTIONS(641), + [aux_sym_bitwise_expression_token3] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_BSLASH] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [anon_sym_DOT2] = ACTIONS(643), + [anon_sym_COLON_COLON] = ACTIONS(641), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(641), + [sym__statement_terminator] = ACTIONS(641), }, [137] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_2_GT] = ACTIONS(629), - [anon_sym_2_GT_GT] = ACTIONS(627), - [anon_sym_3_GT] = ACTIONS(629), - [anon_sym_3_GT_GT] = ACTIONS(627), - [anon_sym_4_GT] = ACTIONS(629), - [anon_sym_4_GT_GT] = ACTIONS(627), - [anon_sym_5_GT] = ACTIONS(629), - [anon_sym_5_GT_GT] = ACTIONS(627), - [anon_sym_6_GT] = ACTIONS(629), - [anon_sym_6_GT_GT] = ACTIONS(627), - [anon_sym_STAR_GT] = ACTIONS(629), - [anon_sym_STAR_GT_GT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_STAR_GT_AMP1] = ACTIONS(627), - [anon_sym_2_GT_AMP1] = ACTIONS(627), - [anon_sym_3_GT_AMP1] = ACTIONS(627), - [anon_sym_4_GT_AMP1] = ACTIONS(627), - [anon_sym_5_GT_AMP1] = ACTIONS(627), - [anon_sym_6_GT_AMP1] = ACTIONS(627), - [anon_sym_STAR_GT_AMP2] = ACTIONS(627), - [anon_sym_1_GT_AMP2] = ACTIONS(627), - [anon_sym_3_GT_AMP2] = ACTIONS(627), - [anon_sym_4_GT_AMP2] = ACTIONS(627), - [anon_sym_5_GT_AMP2] = ACTIONS(627), - [anon_sym_6_GT_AMP2] = ACTIONS(627), - [aux_sym_comparison_operator_token1] = ACTIONS(627), - [aux_sym_comparison_operator_token2] = ACTIONS(627), - [aux_sym_comparison_operator_token3] = ACTIONS(627), - [aux_sym_comparison_operator_token4] = ACTIONS(627), - [aux_sym_comparison_operator_token5] = ACTIONS(627), - [aux_sym_comparison_operator_token6] = ACTIONS(627), - [aux_sym_comparison_operator_token7] = ACTIONS(627), - [aux_sym_comparison_operator_token8] = ACTIONS(627), - [aux_sym_comparison_operator_token9] = ACTIONS(627), - [aux_sym_comparison_operator_token10] = ACTIONS(627), - [aux_sym_comparison_operator_token11] = ACTIONS(627), - [aux_sym_comparison_operator_token12] = ACTIONS(627), - [aux_sym_comparison_operator_token13] = ACTIONS(627), - [aux_sym_comparison_operator_token14] = ACTIONS(627), - [aux_sym_comparison_operator_token15] = ACTIONS(627), - [aux_sym_comparison_operator_token16] = ACTIONS(627), - [aux_sym_comparison_operator_token17] = ACTIONS(627), - [aux_sym_comparison_operator_token18] = ACTIONS(627), - [aux_sym_comparison_operator_token19] = ACTIONS(627), - [aux_sym_comparison_operator_token20] = ACTIONS(627), - [aux_sym_comparison_operator_token21] = ACTIONS(627), - [aux_sym_comparison_operator_token22] = ACTIONS(627), - [aux_sym_comparison_operator_token23] = ACTIONS(627), - [aux_sym_comparison_operator_token24] = ACTIONS(627), - [aux_sym_comparison_operator_token25] = ACTIONS(627), - [aux_sym_comparison_operator_token26] = ACTIONS(627), - [aux_sym_comparison_operator_token27] = ACTIONS(627), - [aux_sym_comparison_operator_token28] = ACTIONS(629), - [aux_sym_comparison_operator_token29] = ACTIONS(627), - [aux_sym_comparison_operator_token30] = ACTIONS(627), - [aux_sym_comparison_operator_token31] = ACTIONS(627), - [aux_sym_comparison_operator_token32] = ACTIONS(627), - [aux_sym_comparison_operator_token33] = ACTIONS(627), - [aux_sym_comparison_operator_token34] = ACTIONS(629), - [aux_sym_comparison_operator_token35] = ACTIONS(627), - [aux_sym_comparison_operator_token36] = ACTIONS(627), - [aux_sym_comparison_operator_token37] = ACTIONS(627), - [aux_sym_comparison_operator_token38] = ACTIONS(627), - [aux_sym_comparison_operator_token39] = ACTIONS(627), - [aux_sym_comparison_operator_token40] = ACTIONS(627), - [aux_sym_comparison_operator_token41] = ACTIONS(627), - [aux_sym_comparison_operator_token42] = ACTIONS(627), - [aux_sym_comparison_operator_token43] = ACTIONS(627), - [aux_sym_comparison_operator_token44] = ACTIONS(627), - [aux_sym_comparison_operator_token45] = ACTIONS(627), - [aux_sym_comparison_operator_token46] = ACTIONS(627), - [aux_sym_comparison_operator_token47] = ACTIONS(627), - [aux_sym_comparison_operator_token48] = ACTIONS(627), - [aux_sym_comparison_operator_token49] = ACTIONS(627), - [aux_sym_comparison_operator_token50] = ACTIONS(627), - [aux_sym_format_operator_token1] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(629), - [aux_sym_logical_expression_token1] = ACTIONS(627), - [aux_sym_logical_expression_token2] = ACTIONS(627), - [aux_sym_logical_expression_token3] = ACTIONS(627), - [aux_sym_bitwise_expression_token1] = ACTIONS(627), - [aux_sym_bitwise_expression_token2] = ACTIONS(627), - [aux_sym_bitwise_expression_token3] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_BSLASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(629), - [anon_sym_DOT_DOT] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DOT2] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(627), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(627), - [sym__statement_terminator] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_EQ] = ACTIONS(645), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_PERCENT_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_2_GT] = ACTIONS(647), + [anon_sym_2_GT_GT] = ACTIONS(645), + [anon_sym_3_GT] = ACTIONS(647), + [anon_sym_3_GT_GT] = ACTIONS(645), + [anon_sym_4_GT] = ACTIONS(647), + [anon_sym_4_GT_GT] = ACTIONS(645), + [anon_sym_5_GT] = ACTIONS(647), + [anon_sym_5_GT_GT] = ACTIONS(645), + [anon_sym_6_GT] = ACTIONS(647), + [anon_sym_6_GT_GT] = ACTIONS(645), + [anon_sym_STAR_GT] = ACTIONS(647), + [anon_sym_STAR_GT_GT] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_STAR_GT_AMP1] = ACTIONS(645), + [anon_sym_2_GT_AMP1] = ACTIONS(645), + [anon_sym_3_GT_AMP1] = ACTIONS(645), + [anon_sym_4_GT_AMP1] = ACTIONS(645), + [anon_sym_5_GT_AMP1] = ACTIONS(645), + [anon_sym_6_GT_AMP1] = ACTIONS(645), + [anon_sym_STAR_GT_AMP2] = ACTIONS(645), + [anon_sym_1_GT_AMP2] = ACTIONS(645), + [anon_sym_3_GT_AMP2] = ACTIONS(645), + [anon_sym_4_GT_AMP2] = ACTIONS(645), + [anon_sym_5_GT_AMP2] = ACTIONS(645), + [anon_sym_6_GT_AMP2] = ACTIONS(645), + [aux_sym_comparison_operator_token1] = ACTIONS(645), + [aux_sym_comparison_operator_token2] = ACTIONS(645), + [aux_sym_comparison_operator_token3] = ACTIONS(645), + [aux_sym_comparison_operator_token4] = ACTIONS(645), + [aux_sym_comparison_operator_token5] = ACTIONS(645), + [aux_sym_comparison_operator_token6] = ACTIONS(645), + [aux_sym_comparison_operator_token7] = ACTIONS(645), + [aux_sym_comparison_operator_token8] = ACTIONS(645), + [aux_sym_comparison_operator_token9] = ACTIONS(645), + [aux_sym_comparison_operator_token10] = ACTIONS(645), + [aux_sym_comparison_operator_token11] = ACTIONS(645), + [aux_sym_comparison_operator_token12] = ACTIONS(645), + [aux_sym_comparison_operator_token13] = ACTIONS(645), + [aux_sym_comparison_operator_token14] = ACTIONS(645), + [aux_sym_comparison_operator_token15] = ACTIONS(645), + [aux_sym_comparison_operator_token16] = ACTIONS(645), + [aux_sym_comparison_operator_token17] = ACTIONS(645), + [aux_sym_comparison_operator_token18] = ACTIONS(645), + [aux_sym_comparison_operator_token19] = ACTIONS(645), + [aux_sym_comparison_operator_token20] = ACTIONS(645), + [aux_sym_comparison_operator_token21] = ACTIONS(645), + [aux_sym_comparison_operator_token22] = ACTIONS(645), + [aux_sym_comparison_operator_token23] = ACTIONS(645), + [aux_sym_comparison_operator_token24] = ACTIONS(645), + [aux_sym_comparison_operator_token25] = ACTIONS(645), + [aux_sym_comparison_operator_token26] = ACTIONS(645), + [aux_sym_comparison_operator_token27] = ACTIONS(645), + [aux_sym_comparison_operator_token28] = ACTIONS(647), + [aux_sym_comparison_operator_token29] = ACTIONS(645), + [aux_sym_comparison_operator_token30] = ACTIONS(645), + [aux_sym_comparison_operator_token31] = ACTIONS(645), + [aux_sym_comparison_operator_token32] = ACTIONS(645), + [aux_sym_comparison_operator_token33] = ACTIONS(645), + [aux_sym_comparison_operator_token34] = ACTIONS(647), + [aux_sym_comparison_operator_token35] = ACTIONS(645), + [aux_sym_comparison_operator_token36] = ACTIONS(645), + [aux_sym_comparison_operator_token37] = ACTIONS(645), + [aux_sym_comparison_operator_token38] = ACTIONS(645), + [aux_sym_comparison_operator_token39] = ACTIONS(645), + [aux_sym_comparison_operator_token40] = ACTIONS(645), + [aux_sym_comparison_operator_token41] = ACTIONS(645), + [aux_sym_comparison_operator_token42] = ACTIONS(645), + [aux_sym_comparison_operator_token43] = ACTIONS(645), + [aux_sym_comparison_operator_token44] = ACTIONS(645), + [aux_sym_comparison_operator_token45] = ACTIONS(645), + [aux_sym_comparison_operator_token46] = ACTIONS(645), + [aux_sym_comparison_operator_token47] = ACTIONS(645), + [aux_sym_comparison_operator_token48] = ACTIONS(645), + [aux_sym_comparison_operator_token49] = ACTIONS(645), + [aux_sym_comparison_operator_token50] = ACTIONS(645), + [aux_sym_format_operator_token1] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(647), + [aux_sym_logical_expression_token1] = ACTIONS(645), + [aux_sym_logical_expression_token2] = ACTIONS(645), + [aux_sym_logical_expression_token3] = ACTIONS(645), + [aux_sym_bitwise_expression_token1] = ACTIONS(645), + [aux_sym_bitwise_expression_token2] = ACTIONS(645), + [aux_sym_bitwise_expression_token3] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(647), + [anon_sym_BSLASH] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_DOT_DOT] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(647), + [anon_sym_COLON_COLON] = ACTIONS(645), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(645), + [sym__statement_terminator] = ACTIONS(645), }, [138] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(697), - [anon_sym_BANG_EQ] = ACTIONS(697), - [anon_sym_PLUS_EQ] = ACTIONS(697), - [anon_sym_STAR_EQ] = ACTIONS(697), - [anon_sym_SLASH_EQ] = ACTIONS(697), - [anon_sym_PERCENT_EQ] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_GT_GT] = ACTIONS(697), - [anon_sym_2_GT] = ACTIONS(699), - [anon_sym_2_GT_GT] = ACTIONS(697), - [anon_sym_3_GT] = ACTIONS(699), - [anon_sym_3_GT_GT] = ACTIONS(697), - [anon_sym_4_GT] = ACTIONS(699), - [anon_sym_4_GT_GT] = ACTIONS(697), - [anon_sym_5_GT] = ACTIONS(699), - [anon_sym_5_GT_GT] = ACTIONS(697), - [anon_sym_6_GT] = ACTIONS(699), - [anon_sym_6_GT_GT] = ACTIONS(697), - [anon_sym_STAR_GT] = ACTIONS(699), - [anon_sym_STAR_GT_GT] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_STAR_GT_AMP1] = ACTIONS(697), - [anon_sym_2_GT_AMP1] = ACTIONS(697), - [anon_sym_3_GT_AMP1] = ACTIONS(697), - [anon_sym_4_GT_AMP1] = ACTIONS(697), - [anon_sym_5_GT_AMP1] = ACTIONS(697), - [anon_sym_6_GT_AMP1] = ACTIONS(697), - [anon_sym_STAR_GT_AMP2] = ACTIONS(697), - [anon_sym_1_GT_AMP2] = ACTIONS(697), - [anon_sym_3_GT_AMP2] = ACTIONS(697), - [anon_sym_4_GT_AMP2] = ACTIONS(697), - [anon_sym_5_GT_AMP2] = ACTIONS(697), - [anon_sym_6_GT_AMP2] = ACTIONS(697), - [aux_sym_comparison_operator_token1] = ACTIONS(697), - [aux_sym_comparison_operator_token2] = ACTIONS(697), - [aux_sym_comparison_operator_token3] = ACTIONS(697), - [aux_sym_comparison_operator_token4] = ACTIONS(697), - [aux_sym_comparison_operator_token5] = ACTIONS(697), - [aux_sym_comparison_operator_token6] = ACTIONS(697), - [aux_sym_comparison_operator_token7] = ACTIONS(697), - [aux_sym_comparison_operator_token8] = ACTIONS(697), - [aux_sym_comparison_operator_token9] = ACTIONS(697), - [aux_sym_comparison_operator_token10] = ACTIONS(697), - [aux_sym_comparison_operator_token11] = ACTIONS(697), - [aux_sym_comparison_operator_token12] = ACTIONS(697), - [aux_sym_comparison_operator_token13] = ACTIONS(697), - [aux_sym_comparison_operator_token14] = ACTIONS(697), - [aux_sym_comparison_operator_token15] = ACTIONS(697), - [aux_sym_comparison_operator_token16] = ACTIONS(697), - [aux_sym_comparison_operator_token17] = ACTIONS(697), - [aux_sym_comparison_operator_token18] = ACTIONS(697), - [aux_sym_comparison_operator_token19] = ACTIONS(697), - [aux_sym_comparison_operator_token20] = ACTIONS(697), - [aux_sym_comparison_operator_token21] = ACTIONS(697), - [aux_sym_comparison_operator_token22] = ACTIONS(697), - [aux_sym_comparison_operator_token23] = ACTIONS(697), - [aux_sym_comparison_operator_token24] = ACTIONS(697), - [aux_sym_comparison_operator_token25] = ACTIONS(697), - [aux_sym_comparison_operator_token26] = ACTIONS(697), - [aux_sym_comparison_operator_token27] = ACTIONS(697), - [aux_sym_comparison_operator_token28] = ACTIONS(699), - [aux_sym_comparison_operator_token29] = ACTIONS(697), - [aux_sym_comparison_operator_token30] = ACTIONS(697), - [aux_sym_comparison_operator_token31] = ACTIONS(697), - [aux_sym_comparison_operator_token32] = ACTIONS(697), - [aux_sym_comparison_operator_token33] = ACTIONS(697), - [aux_sym_comparison_operator_token34] = ACTIONS(699), - [aux_sym_comparison_operator_token35] = ACTIONS(697), - [aux_sym_comparison_operator_token36] = ACTIONS(697), - [aux_sym_comparison_operator_token37] = ACTIONS(697), - [aux_sym_comparison_operator_token38] = ACTIONS(697), - [aux_sym_comparison_operator_token39] = ACTIONS(697), - [aux_sym_comparison_operator_token40] = ACTIONS(697), - [aux_sym_comparison_operator_token41] = ACTIONS(697), - [aux_sym_comparison_operator_token42] = ACTIONS(697), - [aux_sym_comparison_operator_token43] = ACTIONS(697), - [aux_sym_comparison_operator_token44] = ACTIONS(697), - [aux_sym_comparison_operator_token45] = ACTIONS(697), - [aux_sym_comparison_operator_token46] = ACTIONS(697), - [aux_sym_comparison_operator_token47] = ACTIONS(697), - [aux_sym_comparison_operator_token48] = ACTIONS(697), - [aux_sym_comparison_operator_token49] = ACTIONS(697), - [aux_sym_comparison_operator_token50] = ACTIONS(697), - [aux_sym_format_operator_token1] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_COMMA] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PERCENT] = ACTIONS(699), - [aux_sym_logical_expression_token1] = ACTIONS(697), - [aux_sym_logical_expression_token2] = ACTIONS(697), - [aux_sym_logical_expression_token3] = ACTIONS(697), - [aux_sym_bitwise_expression_token1] = ACTIONS(697), - [aux_sym_bitwise_expression_token2] = ACTIONS(697), - [aux_sym_bitwise_expression_token3] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_DOT2] = ACTIONS(699), - [anon_sym_COLON_COLON] = ACTIONS(697), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(697), - [sym__statement_terminator] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(675), + [anon_sym_BANG_EQ] = ACTIONS(675), + [anon_sym_PLUS_EQ] = ACTIONS(675), + [anon_sym_STAR_EQ] = ACTIONS(675), + [anon_sym_SLASH_EQ] = ACTIONS(675), + [anon_sym_PERCENT_EQ] = ACTIONS(675), + [anon_sym_DASH_EQ] = ACTIONS(675), + [anon_sym_GT] = ACTIONS(677), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_2_GT] = ACTIONS(677), + [anon_sym_2_GT_GT] = ACTIONS(675), + [anon_sym_3_GT] = ACTIONS(677), + [anon_sym_3_GT_GT] = ACTIONS(675), + [anon_sym_4_GT] = ACTIONS(677), + [anon_sym_4_GT_GT] = ACTIONS(675), + [anon_sym_5_GT] = ACTIONS(677), + [anon_sym_5_GT_GT] = ACTIONS(675), + [anon_sym_6_GT] = ACTIONS(677), + [anon_sym_6_GT_GT] = ACTIONS(675), + [anon_sym_STAR_GT] = ACTIONS(677), + [anon_sym_STAR_GT_GT] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(677), + [anon_sym_STAR_GT_AMP1] = ACTIONS(675), + [anon_sym_2_GT_AMP1] = ACTIONS(675), + [anon_sym_3_GT_AMP1] = ACTIONS(675), + [anon_sym_4_GT_AMP1] = ACTIONS(675), + [anon_sym_5_GT_AMP1] = ACTIONS(675), + [anon_sym_6_GT_AMP1] = ACTIONS(675), + [anon_sym_STAR_GT_AMP2] = ACTIONS(675), + [anon_sym_1_GT_AMP2] = ACTIONS(675), + [anon_sym_3_GT_AMP2] = ACTIONS(675), + [anon_sym_4_GT_AMP2] = ACTIONS(675), + [anon_sym_5_GT_AMP2] = ACTIONS(675), + [anon_sym_6_GT_AMP2] = ACTIONS(675), + [aux_sym_comparison_operator_token1] = ACTIONS(675), + [aux_sym_comparison_operator_token2] = ACTIONS(675), + [aux_sym_comparison_operator_token3] = ACTIONS(675), + [aux_sym_comparison_operator_token4] = ACTIONS(675), + [aux_sym_comparison_operator_token5] = ACTIONS(675), + [aux_sym_comparison_operator_token6] = ACTIONS(675), + [aux_sym_comparison_operator_token7] = ACTIONS(675), + [aux_sym_comparison_operator_token8] = ACTIONS(675), + [aux_sym_comparison_operator_token9] = ACTIONS(675), + [aux_sym_comparison_operator_token10] = ACTIONS(675), + [aux_sym_comparison_operator_token11] = ACTIONS(675), + [aux_sym_comparison_operator_token12] = ACTIONS(675), + [aux_sym_comparison_operator_token13] = ACTIONS(675), + [aux_sym_comparison_operator_token14] = ACTIONS(675), + [aux_sym_comparison_operator_token15] = ACTIONS(675), + [aux_sym_comparison_operator_token16] = ACTIONS(675), + [aux_sym_comparison_operator_token17] = ACTIONS(675), + [aux_sym_comparison_operator_token18] = ACTIONS(675), + [aux_sym_comparison_operator_token19] = ACTIONS(675), + [aux_sym_comparison_operator_token20] = ACTIONS(675), + [aux_sym_comparison_operator_token21] = ACTIONS(675), + [aux_sym_comparison_operator_token22] = ACTIONS(675), + [aux_sym_comparison_operator_token23] = ACTIONS(675), + [aux_sym_comparison_operator_token24] = ACTIONS(675), + [aux_sym_comparison_operator_token25] = ACTIONS(675), + [aux_sym_comparison_operator_token26] = ACTIONS(675), + [aux_sym_comparison_operator_token27] = ACTIONS(675), + [aux_sym_comparison_operator_token28] = ACTIONS(677), + [aux_sym_comparison_operator_token29] = ACTIONS(675), + [aux_sym_comparison_operator_token30] = ACTIONS(675), + [aux_sym_comparison_operator_token31] = ACTIONS(675), + [aux_sym_comparison_operator_token32] = ACTIONS(675), + [aux_sym_comparison_operator_token33] = ACTIONS(675), + [aux_sym_comparison_operator_token34] = ACTIONS(677), + [aux_sym_comparison_operator_token35] = ACTIONS(675), + [aux_sym_comparison_operator_token36] = ACTIONS(675), + [aux_sym_comparison_operator_token37] = ACTIONS(675), + [aux_sym_comparison_operator_token38] = ACTIONS(675), + [aux_sym_comparison_operator_token39] = ACTIONS(675), + [aux_sym_comparison_operator_token40] = ACTIONS(675), + [aux_sym_comparison_operator_token41] = ACTIONS(675), + [aux_sym_comparison_operator_token42] = ACTIONS(675), + [aux_sym_comparison_operator_token43] = ACTIONS(675), + [aux_sym_comparison_operator_token44] = ACTIONS(675), + [aux_sym_comparison_operator_token45] = ACTIONS(675), + [aux_sym_comparison_operator_token46] = ACTIONS(675), + [aux_sym_comparison_operator_token47] = ACTIONS(675), + [aux_sym_comparison_operator_token48] = ACTIONS(675), + [aux_sym_comparison_operator_token49] = ACTIONS(675), + [aux_sym_comparison_operator_token50] = ACTIONS(675), + [aux_sym_format_operator_token1] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(675), + [anon_sym_PERCENT] = ACTIONS(677), + [aux_sym_logical_expression_token1] = ACTIONS(675), + [aux_sym_logical_expression_token2] = ACTIONS(675), + [aux_sym_logical_expression_token3] = ACTIONS(675), + [aux_sym_bitwise_expression_token1] = ACTIONS(675), + [aux_sym_bitwise_expression_token2] = ACTIONS(675), + [aux_sym_bitwise_expression_token3] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(677), + [anon_sym_BSLASH] = ACTIONS(675), + [anon_sym_STAR] = ACTIONS(677), + [anon_sym_DOT_DOT] = ACTIONS(675), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DOT2] = ACTIONS(677), + [anon_sym_COLON_COLON] = ACTIONS(675), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(675), + [sym__statement_terminator] = ACTIONS(675), }, [139] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(713), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_BANG_EQ] = ACTIONS(713), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_2_GT] = ACTIONS(715), - [anon_sym_2_GT_GT] = ACTIONS(713), - [anon_sym_3_GT] = ACTIONS(715), - [anon_sym_3_GT_GT] = ACTIONS(713), - [anon_sym_4_GT] = ACTIONS(715), - [anon_sym_4_GT_GT] = ACTIONS(713), - [anon_sym_5_GT] = ACTIONS(715), - [anon_sym_5_GT_GT] = ACTIONS(713), - [anon_sym_6_GT] = ACTIONS(715), - [anon_sym_6_GT_GT] = ACTIONS(713), - [anon_sym_STAR_GT] = ACTIONS(715), - [anon_sym_STAR_GT_GT] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_STAR_GT_AMP1] = ACTIONS(713), - [anon_sym_2_GT_AMP1] = ACTIONS(713), - [anon_sym_3_GT_AMP1] = ACTIONS(713), - [anon_sym_4_GT_AMP1] = ACTIONS(713), - [anon_sym_5_GT_AMP1] = ACTIONS(713), - [anon_sym_6_GT_AMP1] = ACTIONS(713), - [anon_sym_STAR_GT_AMP2] = ACTIONS(713), - [anon_sym_1_GT_AMP2] = ACTIONS(713), - [anon_sym_3_GT_AMP2] = ACTIONS(713), - [anon_sym_4_GT_AMP2] = ACTIONS(713), - [anon_sym_5_GT_AMP2] = ACTIONS(713), - [anon_sym_6_GT_AMP2] = ACTIONS(713), - [aux_sym_comparison_operator_token1] = ACTIONS(713), - [aux_sym_comparison_operator_token2] = ACTIONS(713), - [aux_sym_comparison_operator_token3] = ACTIONS(713), - [aux_sym_comparison_operator_token4] = ACTIONS(713), - [aux_sym_comparison_operator_token5] = ACTIONS(713), - [aux_sym_comparison_operator_token6] = ACTIONS(713), - [aux_sym_comparison_operator_token7] = ACTIONS(713), - [aux_sym_comparison_operator_token8] = ACTIONS(713), - [aux_sym_comparison_operator_token9] = ACTIONS(713), - [aux_sym_comparison_operator_token10] = ACTIONS(713), - [aux_sym_comparison_operator_token11] = ACTIONS(713), - [aux_sym_comparison_operator_token12] = ACTIONS(713), - [aux_sym_comparison_operator_token13] = ACTIONS(713), - [aux_sym_comparison_operator_token14] = ACTIONS(713), - [aux_sym_comparison_operator_token15] = ACTIONS(713), - [aux_sym_comparison_operator_token16] = ACTIONS(713), - [aux_sym_comparison_operator_token17] = ACTIONS(713), - [aux_sym_comparison_operator_token18] = ACTIONS(713), - [aux_sym_comparison_operator_token19] = ACTIONS(713), - [aux_sym_comparison_operator_token20] = ACTIONS(713), - [aux_sym_comparison_operator_token21] = ACTIONS(713), - [aux_sym_comparison_operator_token22] = ACTIONS(713), - [aux_sym_comparison_operator_token23] = ACTIONS(713), - [aux_sym_comparison_operator_token24] = ACTIONS(713), - [aux_sym_comparison_operator_token25] = ACTIONS(713), - [aux_sym_comparison_operator_token26] = ACTIONS(713), - [aux_sym_comparison_operator_token27] = ACTIONS(713), - [aux_sym_comparison_operator_token28] = ACTIONS(715), - [aux_sym_comparison_operator_token29] = ACTIONS(713), - [aux_sym_comparison_operator_token30] = ACTIONS(713), - [aux_sym_comparison_operator_token31] = ACTIONS(713), - [aux_sym_comparison_operator_token32] = ACTIONS(713), - [aux_sym_comparison_operator_token33] = ACTIONS(713), - [aux_sym_comparison_operator_token34] = ACTIONS(715), - [aux_sym_comparison_operator_token35] = ACTIONS(713), - [aux_sym_comparison_operator_token36] = ACTIONS(713), - [aux_sym_comparison_operator_token37] = ACTIONS(713), - [aux_sym_comparison_operator_token38] = ACTIONS(713), - [aux_sym_comparison_operator_token39] = ACTIONS(713), - [aux_sym_comparison_operator_token40] = ACTIONS(713), - [aux_sym_comparison_operator_token41] = ACTIONS(713), - [aux_sym_comparison_operator_token42] = ACTIONS(713), - [aux_sym_comparison_operator_token43] = ACTIONS(713), - [aux_sym_comparison_operator_token44] = ACTIONS(713), - [aux_sym_comparison_operator_token45] = ACTIONS(713), - [aux_sym_comparison_operator_token46] = ACTIONS(713), - [aux_sym_comparison_operator_token47] = ACTIONS(713), - [aux_sym_comparison_operator_token48] = ACTIONS(713), - [aux_sym_comparison_operator_token49] = ACTIONS(713), - [aux_sym_comparison_operator_token50] = ACTIONS(713), - [aux_sym_format_operator_token1] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(715), - [aux_sym_logical_expression_token1] = ACTIONS(713), - [aux_sym_logical_expression_token2] = ACTIONS(713), - [aux_sym_logical_expression_token3] = ACTIONS(713), - [aux_sym_bitwise_expression_token1] = ACTIONS(713), - [aux_sym_bitwise_expression_token2] = ACTIONS(713), - [aux_sym_bitwise_expression_token3] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(715), - [anon_sym_DASH] = ACTIONS(715), - [anon_sym_SLASH] = ACTIONS(715), - [anon_sym_BSLASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DOT2] = ACTIONS(715), - [anon_sym_COLON_COLON] = ACTIONS(713), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(713), - [sym__statement_terminator] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_BANG_EQ] = ACTIONS(687), + [anon_sym_PLUS_EQ] = ACTIONS(687), + [anon_sym_STAR_EQ] = ACTIONS(687), + [anon_sym_SLASH_EQ] = ACTIONS(687), + [anon_sym_PERCENT_EQ] = ACTIONS(687), + [anon_sym_DASH_EQ] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_2_GT] = ACTIONS(689), + [anon_sym_2_GT_GT] = ACTIONS(687), + [anon_sym_3_GT] = ACTIONS(689), + [anon_sym_3_GT_GT] = ACTIONS(687), + [anon_sym_4_GT] = ACTIONS(689), + [anon_sym_4_GT_GT] = ACTIONS(687), + [anon_sym_5_GT] = ACTIONS(689), + [anon_sym_5_GT_GT] = ACTIONS(687), + [anon_sym_6_GT] = ACTIONS(689), + [anon_sym_6_GT_GT] = ACTIONS(687), + [anon_sym_STAR_GT] = ACTIONS(689), + [anon_sym_STAR_GT_GT] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_STAR_GT_AMP1] = ACTIONS(687), + [anon_sym_2_GT_AMP1] = ACTIONS(687), + [anon_sym_3_GT_AMP1] = ACTIONS(687), + [anon_sym_4_GT_AMP1] = ACTIONS(687), + [anon_sym_5_GT_AMP1] = ACTIONS(687), + [anon_sym_6_GT_AMP1] = ACTIONS(687), + [anon_sym_STAR_GT_AMP2] = ACTIONS(687), + [anon_sym_1_GT_AMP2] = ACTIONS(687), + [anon_sym_3_GT_AMP2] = ACTIONS(687), + [anon_sym_4_GT_AMP2] = ACTIONS(687), + [anon_sym_5_GT_AMP2] = ACTIONS(687), + [anon_sym_6_GT_AMP2] = ACTIONS(687), + [aux_sym_comparison_operator_token1] = ACTIONS(687), + [aux_sym_comparison_operator_token2] = ACTIONS(687), + [aux_sym_comparison_operator_token3] = ACTIONS(687), + [aux_sym_comparison_operator_token4] = ACTIONS(687), + [aux_sym_comparison_operator_token5] = ACTIONS(687), + [aux_sym_comparison_operator_token6] = ACTIONS(687), + [aux_sym_comparison_operator_token7] = ACTIONS(687), + [aux_sym_comparison_operator_token8] = ACTIONS(687), + [aux_sym_comparison_operator_token9] = ACTIONS(687), + [aux_sym_comparison_operator_token10] = ACTIONS(687), + [aux_sym_comparison_operator_token11] = ACTIONS(687), + [aux_sym_comparison_operator_token12] = ACTIONS(687), + [aux_sym_comparison_operator_token13] = ACTIONS(687), + [aux_sym_comparison_operator_token14] = ACTIONS(687), + [aux_sym_comparison_operator_token15] = ACTIONS(687), + [aux_sym_comparison_operator_token16] = ACTIONS(687), + [aux_sym_comparison_operator_token17] = ACTIONS(687), + [aux_sym_comparison_operator_token18] = ACTIONS(687), + [aux_sym_comparison_operator_token19] = ACTIONS(687), + [aux_sym_comparison_operator_token20] = ACTIONS(687), + [aux_sym_comparison_operator_token21] = ACTIONS(687), + [aux_sym_comparison_operator_token22] = ACTIONS(687), + [aux_sym_comparison_operator_token23] = ACTIONS(687), + [aux_sym_comparison_operator_token24] = ACTIONS(687), + [aux_sym_comparison_operator_token25] = ACTIONS(687), + [aux_sym_comparison_operator_token26] = ACTIONS(687), + [aux_sym_comparison_operator_token27] = ACTIONS(687), + [aux_sym_comparison_operator_token28] = ACTIONS(689), + [aux_sym_comparison_operator_token29] = ACTIONS(687), + [aux_sym_comparison_operator_token30] = ACTIONS(687), + [aux_sym_comparison_operator_token31] = ACTIONS(687), + [aux_sym_comparison_operator_token32] = ACTIONS(687), + [aux_sym_comparison_operator_token33] = ACTIONS(687), + [aux_sym_comparison_operator_token34] = ACTIONS(689), + [aux_sym_comparison_operator_token35] = ACTIONS(687), + [aux_sym_comparison_operator_token36] = ACTIONS(687), + [aux_sym_comparison_operator_token37] = ACTIONS(687), + [aux_sym_comparison_operator_token38] = ACTIONS(687), + [aux_sym_comparison_operator_token39] = ACTIONS(687), + [aux_sym_comparison_operator_token40] = ACTIONS(687), + [aux_sym_comparison_operator_token41] = ACTIONS(687), + [aux_sym_comparison_operator_token42] = ACTIONS(687), + [aux_sym_comparison_operator_token43] = ACTIONS(687), + [aux_sym_comparison_operator_token44] = ACTIONS(687), + [aux_sym_comparison_operator_token45] = ACTIONS(687), + [aux_sym_comparison_operator_token46] = ACTIONS(687), + [aux_sym_comparison_operator_token47] = ACTIONS(687), + [aux_sym_comparison_operator_token48] = ACTIONS(687), + [aux_sym_comparison_operator_token49] = ACTIONS(687), + [aux_sym_comparison_operator_token50] = ACTIONS(687), + [aux_sym_format_operator_token1] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_COMMA] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_PERCENT] = ACTIONS(689), + [aux_sym_logical_expression_token1] = ACTIONS(687), + [aux_sym_logical_expression_token2] = ACTIONS(687), + [aux_sym_logical_expression_token3] = ACTIONS(687), + [aux_sym_bitwise_expression_token1] = ACTIONS(687), + [aux_sym_bitwise_expression_token2] = ACTIONS(687), + [aux_sym_bitwise_expression_token3] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_BSLASH] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_DOT_DOT] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_DOT2] = ACTIONS(689), + [anon_sym_COLON_COLON] = ACTIONS(687), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(687), + [sym__statement_terminator] = ACTIONS(687), }, [140] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(693), - [anon_sym_STAR_EQ] = ACTIONS(693), - [anon_sym_SLASH_EQ] = ACTIONS(693), - [anon_sym_PERCENT_EQ] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_2_GT] = ACTIONS(695), - [anon_sym_2_GT_GT] = ACTIONS(693), - [anon_sym_3_GT] = ACTIONS(695), - [anon_sym_3_GT_GT] = ACTIONS(693), - [anon_sym_4_GT] = ACTIONS(695), - [anon_sym_4_GT_GT] = ACTIONS(693), - [anon_sym_5_GT] = ACTIONS(695), - [anon_sym_5_GT_GT] = ACTIONS(693), - [anon_sym_6_GT] = ACTIONS(695), - [anon_sym_6_GT_GT] = ACTIONS(693), - [anon_sym_STAR_GT] = ACTIONS(695), - [anon_sym_STAR_GT_GT] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_STAR_GT_AMP1] = ACTIONS(693), - [anon_sym_2_GT_AMP1] = ACTIONS(693), - [anon_sym_3_GT_AMP1] = ACTIONS(693), - [anon_sym_4_GT_AMP1] = ACTIONS(693), - [anon_sym_5_GT_AMP1] = ACTIONS(693), - [anon_sym_6_GT_AMP1] = ACTIONS(693), - [anon_sym_STAR_GT_AMP2] = ACTIONS(693), - [anon_sym_1_GT_AMP2] = ACTIONS(693), - [anon_sym_3_GT_AMP2] = ACTIONS(693), - [anon_sym_4_GT_AMP2] = ACTIONS(693), - [anon_sym_5_GT_AMP2] = ACTIONS(693), - [anon_sym_6_GT_AMP2] = ACTIONS(693), - [aux_sym_comparison_operator_token1] = ACTIONS(693), - [aux_sym_comparison_operator_token2] = ACTIONS(693), - [aux_sym_comparison_operator_token3] = ACTIONS(693), - [aux_sym_comparison_operator_token4] = ACTIONS(693), - [aux_sym_comparison_operator_token5] = ACTIONS(693), - [aux_sym_comparison_operator_token6] = ACTIONS(693), - [aux_sym_comparison_operator_token7] = ACTIONS(693), - [aux_sym_comparison_operator_token8] = ACTIONS(693), - [aux_sym_comparison_operator_token9] = ACTIONS(693), - [aux_sym_comparison_operator_token10] = ACTIONS(693), - [aux_sym_comparison_operator_token11] = ACTIONS(693), - [aux_sym_comparison_operator_token12] = ACTIONS(693), - [aux_sym_comparison_operator_token13] = ACTIONS(693), - [aux_sym_comparison_operator_token14] = ACTIONS(693), - [aux_sym_comparison_operator_token15] = ACTIONS(693), - [aux_sym_comparison_operator_token16] = ACTIONS(693), - [aux_sym_comparison_operator_token17] = ACTIONS(693), - [aux_sym_comparison_operator_token18] = ACTIONS(693), - [aux_sym_comparison_operator_token19] = ACTIONS(693), - [aux_sym_comparison_operator_token20] = ACTIONS(693), - [aux_sym_comparison_operator_token21] = ACTIONS(693), - [aux_sym_comparison_operator_token22] = ACTIONS(693), - [aux_sym_comparison_operator_token23] = ACTIONS(693), - [aux_sym_comparison_operator_token24] = ACTIONS(693), - [aux_sym_comparison_operator_token25] = ACTIONS(693), - [aux_sym_comparison_operator_token26] = ACTIONS(693), - [aux_sym_comparison_operator_token27] = ACTIONS(693), - [aux_sym_comparison_operator_token28] = ACTIONS(695), - [aux_sym_comparison_operator_token29] = ACTIONS(693), - [aux_sym_comparison_operator_token30] = ACTIONS(693), - [aux_sym_comparison_operator_token31] = ACTIONS(693), - [aux_sym_comparison_operator_token32] = ACTIONS(693), - [aux_sym_comparison_operator_token33] = ACTIONS(693), - [aux_sym_comparison_operator_token34] = ACTIONS(695), - [aux_sym_comparison_operator_token35] = ACTIONS(693), - [aux_sym_comparison_operator_token36] = ACTIONS(693), - [aux_sym_comparison_operator_token37] = ACTIONS(693), - [aux_sym_comparison_operator_token38] = ACTIONS(693), - [aux_sym_comparison_operator_token39] = ACTIONS(693), - [aux_sym_comparison_operator_token40] = ACTIONS(693), - [aux_sym_comparison_operator_token41] = ACTIONS(693), - [aux_sym_comparison_operator_token42] = ACTIONS(693), - [aux_sym_comparison_operator_token43] = ACTIONS(693), - [aux_sym_comparison_operator_token44] = ACTIONS(693), - [aux_sym_comparison_operator_token45] = ACTIONS(693), - [aux_sym_comparison_operator_token46] = ACTIONS(693), - [aux_sym_comparison_operator_token47] = ACTIONS(693), - [aux_sym_comparison_operator_token48] = ACTIONS(693), - [aux_sym_comparison_operator_token49] = ACTIONS(693), - [aux_sym_comparison_operator_token50] = ACTIONS(693), - [aux_sym_format_operator_token1] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(693), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_PERCENT] = ACTIONS(695), - [aux_sym_logical_expression_token1] = ACTIONS(693), - [aux_sym_logical_expression_token2] = ACTIONS(693), - [aux_sym_logical_expression_token3] = ACTIONS(693), - [aux_sym_bitwise_expression_token1] = ACTIONS(693), - [aux_sym_bitwise_expression_token2] = ACTIONS(693), - [aux_sym_bitwise_expression_token3] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_DOT2] = ACTIONS(695), - [anon_sym_COLON_COLON] = ACTIONS(693), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(693), - [sym__statement_terminator] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_PLUS_EQ] = ACTIONS(649), + [anon_sym_STAR_EQ] = ACTIONS(649), + [anon_sym_SLASH_EQ] = ACTIONS(649), + [anon_sym_PERCENT_EQ] = ACTIONS(649), + [anon_sym_DASH_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_2_GT] = ACTIONS(651), + [anon_sym_2_GT_GT] = ACTIONS(649), + [anon_sym_3_GT] = ACTIONS(651), + [anon_sym_3_GT_GT] = ACTIONS(649), + [anon_sym_4_GT] = ACTIONS(651), + [anon_sym_4_GT_GT] = ACTIONS(649), + [anon_sym_5_GT] = ACTIONS(651), + [anon_sym_5_GT_GT] = ACTIONS(649), + [anon_sym_6_GT] = ACTIONS(651), + [anon_sym_6_GT_GT] = ACTIONS(649), + [anon_sym_STAR_GT] = ACTIONS(651), + [anon_sym_STAR_GT_GT] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_STAR_GT_AMP1] = ACTIONS(649), + [anon_sym_2_GT_AMP1] = ACTIONS(649), + [anon_sym_3_GT_AMP1] = ACTIONS(649), + [anon_sym_4_GT_AMP1] = ACTIONS(649), + [anon_sym_5_GT_AMP1] = ACTIONS(649), + [anon_sym_6_GT_AMP1] = ACTIONS(649), + [anon_sym_STAR_GT_AMP2] = ACTIONS(649), + [anon_sym_1_GT_AMP2] = ACTIONS(649), + [anon_sym_3_GT_AMP2] = ACTIONS(649), + [anon_sym_4_GT_AMP2] = ACTIONS(649), + [anon_sym_5_GT_AMP2] = ACTIONS(649), + [anon_sym_6_GT_AMP2] = ACTIONS(649), + [aux_sym_comparison_operator_token1] = ACTIONS(649), + [aux_sym_comparison_operator_token2] = ACTIONS(649), + [aux_sym_comparison_operator_token3] = ACTIONS(649), + [aux_sym_comparison_operator_token4] = ACTIONS(649), + [aux_sym_comparison_operator_token5] = ACTIONS(649), + [aux_sym_comparison_operator_token6] = ACTIONS(649), + [aux_sym_comparison_operator_token7] = ACTIONS(649), + [aux_sym_comparison_operator_token8] = ACTIONS(649), + [aux_sym_comparison_operator_token9] = ACTIONS(649), + [aux_sym_comparison_operator_token10] = ACTIONS(649), + [aux_sym_comparison_operator_token11] = ACTIONS(649), + [aux_sym_comparison_operator_token12] = ACTIONS(649), + [aux_sym_comparison_operator_token13] = ACTIONS(649), + [aux_sym_comparison_operator_token14] = ACTIONS(649), + [aux_sym_comparison_operator_token15] = ACTIONS(649), + [aux_sym_comparison_operator_token16] = ACTIONS(649), + [aux_sym_comparison_operator_token17] = ACTIONS(649), + [aux_sym_comparison_operator_token18] = ACTIONS(649), + [aux_sym_comparison_operator_token19] = ACTIONS(649), + [aux_sym_comparison_operator_token20] = ACTIONS(649), + [aux_sym_comparison_operator_token21] = ACTIONS(649), + [aux_sym_comparison_operator_token22] = ACTIONS(649), + [aux_sym_comparison_operator_token23] = ACTIONS(649), + [aux_sym_comparison_operator_token24] = ACTIONS(649), + [aux_sym_comparison_operator_token25] = ACTIONS(649), + [aux_sym_comparison_operator_token26] = ACTIONS(649), + [aux_sym_comparison_operator_token27] = ACTIONS(649), + [aux_sym_comparison_operator_token28] = ACTIONS(651), + [aux_sym_comparison_operator_token29] = ACTIONS(649), + [aux_sym_comparison_operator_token30] = ACTIONS(649), + [aux_sym_comparison_operator_token31] = ACTIONS(649), + [aux_sym_comparison_operator_token32] = ACTIONS(649), + [aux_sym_comparison_operator_token33] = ACTIONS(649), + [aux_sym_comparison_operator_token34] = ACTIONS(651), + [aux_sym_comparison_operator_token35] = ACTIONS(649), + [aux_sym_comparison_operator_token36] = ACTIONS(649), + [aux_sym_comparison_operator_token37] = ACTIONS(649), + [aux_sym_comparison_operator_token38] = ACTIONS(649), + [aux_sym_comparison_operator_token39] = ACTIONS(649), + [aux_sym_comparison_operator_token40] = ACTIONS(649), + [aux_sym_comparison_operator_token41] = ACTIONS(649), + [aux_sym_comparison_operator_token42] = ACTIONS(649), + [aux_sym_comparison_operator_token43] = ACTIONS(649), + [aux_sym_comparison_operator_token44] = ACTIONS(649), + [aux_sym_comparison_operator_token45] = ACTIONS(649), + [aux_sym_comparison_operator_token46] = ACTIONS(649), + [aux_sym_comparison_operator_token47] = ACTIONS(649), + [aux_sym_comparison_operator_token48] = ACTIONS(649), + [aux_sym_comparison_operator_token49] = ACTIONS(649), + [aux_sym_comparison_operator_token50] = ACTIONS(649), + [aux_sym_format_operator_token1] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(651), + [aux_sym_logical_expression_token1] = ACTIONS(649), + [aux_sym_logical_expression_token2] = ACTIONS(649), + [aux_sym_logical_expression_token3] = ACTIONS(649), + [aux_sym_bitwise_expression_token1] = ACTIONS(649), + [aux_sym_bitwise_expression_token2] = ACTIONS(649), + [aux_sym_bitwise_expression_token3] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_BSLASH] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_PLUS_PLUS] = ACTIONS(649), + [anon_sym_DASH_DASH] = ACTIONS(649), + [anon_sym_DOT2] = ACTIONS(651), + [anon_sym_COLON_COLON] = ACTIONS(649), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(649), + [sym__statement_terminator] = ACTIONS(649), }, [141] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_2_GT] = ACTIONS(597), - [anon_sym_2_GT_GT] = ACTIONS(595), - [anon_sym_3_GT] = ACTIONS(597), - [anon_sym_3_GT_GT] = ACTIONS(595), - [anon_sym_4_GT] = ACTIONS(597), - [anon_sym_4_GT_GT] = ACTIONS(595), - [anon_sym_5_GT] = ACTIONS(597), - [anon_sym_5_GT_GT] = ACTIONS(595), - [anon_sym_6_GT] = ACTIONS(597), - [anon_sym_6_GT_GT] = ACTIONS(595), - [anon_sym_STAR_GT] = ACTIONS(597), - [anon_sym_STAR_GT_GT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_STAR_GT_AMP1] = ACTIONS(595), - [anon_sym_2_GT_AMP1] = ACTIONS(595), - [anon_sym_3_GT_AMP1] = ACTIONS(595), - [anon_sym_4_GT_AMP1] = ACTIONS(595), - [anon_sym_5_GT_AMP1] = ACTIONS(595), - [anon_sym_6_GT_AMP1] = ACTIONS(595), - [anon_sym_STAR_GT_AMP2] = ACTIONS(595), - [anon_sym_1_GT_AMP2] = ACTIONS(595), - [anon_sym_3_GT_AMP2] = ACTIONS(595), - [anon_sym_4_GT_AMP2] = ACTIONS(595), - [anon_sym_5_GT_AMP2] = ACTIONS(595), - [anon_sym_6_GT_AMP2] = ACTIONS(595), - [aux_sym_comparison_operator_token1] = ACTIONS(595), - [aux_sym_comparison_operator_token2] = ACTIONS(595), - [aux_sym_comparison_operator_token3] = ACTIONS(595), - [aux_sym_comparison_operator_token4] = ACTIONS(595), - [aux_sym_comparison_operator_token5] = ACTIONS(595), - [aux_sym_comparison_operator_token6] = ACTIONS(595), - [aux_sym_comparison_operator_token7] = ACTIONS(595), - [aux_sym_comparison_operator_token8] = ACTIONS(595), - [aux_sym_comparison_operator_token9] = ACTIONS(595), - [aux_sym_comparison_operator_token10] = ACTIONS(595), - [aux_sym_comparison_operator_token11] = ACTIONS(595), - [aux_sym_comparison_operator_token12] = ACTIONS(595), - [aux_sym_comparison_operator_token13] = ACTIONS(595), - [aux_sym_comparison_operator_token14] = ACTIONS(595), - [aux_sym_comparison_operator_token15] = ACTIONS(595), - [aux_sym_comparison_operator_token16] = ACTIONS(595), - [aux_sym_comparison_operator_token17] = ACTIONS(595), - [aux_sym_comparison_operator_token18] = ACTIONS(595), - [aux_sym_comparison_operator_token19] = ACTIONS(595), - [aux_sym_comparison_operator_token20] = ACTIONS(595), - [aux_sym_comparison_operator_token21] = ACTIONS(595), - [aux_sym_comparison_operator_token22] = ACTIONS(595), - [aux_sym_comparison_operator_token23] = ACTIONS(595), - [aux_sym_comparison_operator_token24] = ACTIONS(595), - [aux_sym_comparison_operator_token25] = ACTIONS(595), - [aux_sym_comparison_operator_token26] = ACTIONS(595), - [aux_sym_comparison_operator_token27] = ACTIONS(595), - [aux_sym_comparison_operator_token28] = ACTIONS(597), - [aux_sym_comparison_operator_token29] = ACTIONS(595), - [aux_sym_comparison_operator_token30] = ACTIONS(595), - [aux_sym_comparison_operator_token31] = ACTIONS(595), - [aux_sym_comparison_operator_token32] = ACTIONS(595), - [aux_sym_comparison_operator_token33] = ACTIONS(595), - [aux_sym_comparison_operator_token34] = ACTIONS(597), - [aux_sym_comparison_operator_token35] = ACTIONS(595), - [aux_sym_comparison_operator_token36] = ACTIONS(595), - [aux_sym_comparison_operator_token37] = ACTIONS(595), - [aux_sym_comparison_operator_token38] = ACTIONS(595), - [aux_sym_comparison_operator_token39] = ACTIONS(595), - [aux_sym_comparison_operator_token40] = ACTIONS(595), - [aux_sym_comparison_operator_token41] = ACTIONS(595), - [aux_sym_comparison_operator_token42] = ACTIONS(595), - [aux_sym_comparison_operator_token43] = ACTIONS(595), - [aux_sym_comparison_operator_token44] = ACTIONS(595), - [aux_sym_comparison_operator_token45] = ACTIONS(595), - [aux_sym_comparison_operator_token46] = ACTIONS(595), - [aux_sym_comparison_operator_token47] = ACTIONS(595), - [aux_sym_comparison_operator_token48] = ACTIONS(595), - [aux_sym_comparison_operator_token49] = ACTIONS(595), - [aux_sym_comparison_operator_token50] = ACTIONS(595), - [aux_sym_format_operator_token1] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(597), - [aux_sym_logical_expression_token1] = ACTIONS(595), - [aux_sym_logical_expression_token2] = ACTIONS(595), - [aux_sym_logical_expression_token3] = ACTIONS(595), - [aux_sym_bitwise_expression_token1] = ACTIONS(595), - [aux_sym_bitwise_expression_token2] = ACTIONS(595), - [aux_sym_bitwise_expression_token3] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_BSLASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(597), - [anon_sym_DOT_DOT] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_DOT2] = ACTIONS(597), - [anon_sym_COLON_COLON] = ACTIONS(595), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(595), - [sym__statement_terminator] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_PLUS_EQ] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(653), + [anon_sym_SLASH_EQ] = ACTIONS(653), + [anon_sym_PERCENT_EQ] = ACTIONS(653), + [anon_sym_DASH_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(655), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_2_GT] = ACTIONS(655), + [anon_sym_2_GT_GT] = ACTIONS(653), + [anon_sym_3_GT] = ACTIONS(655), + [anon_sym_3_GT_GT] = ACTIONS(653), + [anon_sym_4_GT] = ACTIONS(655), + [anon_sym_4_GT_GT] = ACTIONS(653), + [anon_sym_5_GT] = ACTIONS(655), + [anon_sym_5_GT_GT] = ACTIONS(653), + [anon_sym_6_GT] = ACTIONS(655), + [anon_sym_6_GT_GT] = ACTIONS(653), + [anon_sym_STAR_GT] = ACTIONS(655), + [anon_sym_STAR_GT_GT] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_STAR_GT_AMP1] = ACTIONS(653), + [anon_sym_2_GT_AMP1] = ACTIONS(653), + [anon_sym_3_GT_AMP1] = ACTIONS(653), + [anon_sym_4_GT_AMP1] = ACTIONS(653), + [anon_sym_5_GT_AMP1] = ACTIONS(653), + [anon_sym_6_GT_AMP1] = ACTIONS(653), + [anon_sym_STAR_GT_AMP2] = ACTIONS(653), + [anon_sym_1_GT_AMP2] = ACTIONS(653), + [anon_sym_3_GT_AMP2] = ACTIONS(653), + [anon_sym_4_GT_AMP2] = ACTIONS(653), + [anon_sym_5_GT_AMP2] = ACTIONS(653), + [anon_sym_6_GT_AMP2] = ACTIONS(653), + [aux_sym_comparison_operator_token1] = ACTIONS(653), + [aux_sym_comparison_operator_token2] = ACTIONS(653), + [aux_sym_comparison_operator_token3] = ACTIONS(653), + [aux_sym_comparison_operator_token4] = ACTIONS(653), + [aux_sym_comparison_operator_token5] = ACTIONS(653), + [aux_sym_comparison_operator_token6] = ACTIONS(653), + [aux_sym_comparison_operator_token7] = ACTIONS(653), + [aux_sym_comparison_operator_token8] = ACTIONS(653), + [aux_sym_comparison_operator_token9] = ACTIONS(653), + [aux_sym_comparison_operator_token10] = ACTIONS(653), + [aux_sym_comparison_operator_token11] = ACTIONS(653), + [aux_sym_comparison_operator_token12] = ACTIONS(653), + [aux_sym_comparison_operator_token13] = ACTIONS(653), + [aux_sym_comparison_operator_token14] = ACTIONS(653), + [aux_sym_comparison_operator_token15] = ACTIONS(653), + [aux_sym_comparison_operator_token16] = ACTIONS(653), + [aux_sym_comparison_operator_token17] = ACTIONS(653), + [aux_sym_comparison_operator_token18] = ACTIONS(653), + [aux_sym_comparison_operator_token19] = ACTIONS(653), + [aux_sym_comparison_operator_token20] = ACTIONS(653), + [aux_sym_comparison_operator_token21] = ACTIONS(653), + [aux_sym_comparison_operator_token22] = ACTIONS(653), + [aux_sym_comparison_operator_token23] = ACTIONS(653), + [aux_sym_comparison_operator_token24] = ACTIONS(653), + [aux_sym_comparison_operator_token25] = ACTIONS(653), + [aux_sym_comparison_operator_token26] = ACTIONS(653), + [aux_sym_comparison_operator_token27] = ACTIONS(653), + [aux_sym_comparison_operator_token28] = ACTIONS(655), + [aux_sym_comparison_operator_token29] = ACTIONS(653), + [aux_sym_comparison_operator_token30] = ACTIONS(653), + [aux_sym_comparison_operator_token31] = ACTIONS(653), + [aux_sym_comparison_operator_token32] = ACTIONS(653), + [aux_sym_comparison_operator_token33] = ACTIONS(653), + [aux_sym_comparison_operator_token34] = ACTIONS(655), + [aux_sym_comparison_operator_token35] = ACTIONS(653), + [aux_sym_comparison_operator_token36] = ACTIONS(653), + [aux_sym_comparison_operator_token37] = ACTIONS(653), + [aux_sym_comparison_operator_token38] = ACTIONS(653), + [aux_sym_comparison_operator_token39] = ACTIONS(653), + [aux_sym_comparison_operator_token40] = ACTIONS(653), + [aux_sym_comparison_operator_token41] = ACTIONS(653), + [aux_sym_comparison_operator_token42] = ACTIONS(653), + [aux_sym_comparison_operator_token43] = ACTIONS(653), + [aux_sym_comparison_operator_token44] = ACTIONS(653), + [aux_sym_comparison_operator_token45] = ACTIONS(653), + [aux_sym_comparison_operator_token46] = ACTIONS(653), + [aux_sym_comparison_operator_token47] = ACTIONS(653), + [aux_sym_comparison_operator_token48] = ACTIONS(653), + [aux_sym_comparison_operator_token49] = ACTIONS(653), + [aux_sym_comparison_operator_token50] = ACTIONS(653), + [aux_sym_format_operator_token1] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(655), + [aux_sym_logical_expression_token1] = ACTIONS(653), + [aux_sym_logical_expression_token2] = ACTIONS(653), + [aux_sym_logical_expression_token3] = ACTIONS(653), + [aux_sym_bitwise_expression_token1] = ACTIONS(653), + [aux_sym_bitwise_expression_token2] = ACTIONS(653), + [aux_sym_bitwise_expression_token3] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_DOT_DOT] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(653), + [anon_sym_DOT2] = ACTIONS(655), + [anon_sym_COLON_COLON] = ACTIONS(653), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(653), + [sym__statement_terminator] = ACTIONS(653), }, [142] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_PLUS_EQ] = ACTIONS(701), - [anon_sym_STAR_EQ] = ACTIONS(701), - [anon_sym_SLASH_EQ] = ACTIONS(701), - [anon_sym_PERCENT_EQ] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(701), - [anon_sym_2_GT] = ACTIONS(703), - [anon_sym_2_GT_GT] = ACTIONS(701), - [anon_sym_3_GT] = ACTIONS(703), - [anon_sym_3_GT_GT] = ACTIONS(701), - [anon_sym_4_GT] = ACTIONS(703), - [anon_sym_4_GT_GT] = ACTIONS(701), - [anon_sym_5_GT] = ACTIONS(703), - [anon_sym_5_GT_GT] = ACTIONS(701), - [anon_sym_6_GT] = ACTIONS(703), - [anon_sym_6_GT_GT] = ACTIONS(701), - [anon_sym_STAR_GT] = ACTIONS(703), - [anon_sym_STAR_GT_GT] = ACTIONS(701), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_STAR_GT_AMP1] = ACTIONS(701), - [anon_sym_2_GT_AMP1] = ACTIONS(701), - [anon_sym_3_GT_AMP1] = ACTIONS(701), - [anon_sym_4_GT_AMP1] = ACTIONS(701), - [anon_sym_5_GT_AMP1] = ACTIONS(701), - [anon_sym_6_GT_AMP1] = ACTIONS(701), - [anon_sym_STAR_GT_AMP2] = ACTIONS(701), - [anon_sym_1_GT_AMP2] = ACTIONS(701), - [anon_sym_3_GT_AMP2] = ACTIONS(701), - [anon_sym_4_GT_AMP2] = ACTIONS(701), - [anon_sym_5_GT_AMP2] = ACTIONS(701), - [anon_sym_6_GT_AMP2] = ACTIONS(701), - [aux_sym_comparison_operator_token1] = ACTIONS(701), - [aux_sym_comparison_operator_token2] = ACTIONS(701), - [aux_sym_comparison_operator_token3] = ACTIONS(701), - [aux_sym_comparison_operator_token4] = ACTIONS(701), - [aux_sym_comparison_operator_token5] = ACTIONS(701), - [aux_sym_comparison_operator_token6] = ACTIONS(701), - [aux_sym_comparison_operator_token7] = ACTIONS(701), - [aux_sym_comparison_operator_token8] = ACTIONS(701), - [aux_sym_comparison_operator_token9] = ACTIONS(701), - [aux_sym_comparison_operator_token10] = ACTIONS(701), - [aux_sym_comparison_operator_token11] = ACTIONS(701), - [aux_sym_comparison_operator_token12] = ACTIONS(701), - [aux_sym_comparison_operator_token13] = ACTIONS(701), - [aux_sym_comparison_operator_token14] = ACTIONS(701), - [aux_sym_comparison_operator_token15] = ACTIONS(701), - [aux_sym_comparison_operator_token16] = ACTIONS(701), - [aux_sym_comparison_operator_token17] = ACTIONS(701), - [aux_sym_comparison_operator_token18] = ACTIONS(701), - [aux_sym_comparison_operator_token19] = ACTIONS(701), - [aux_sym_comparison_operator_token20] = ACTIONS(701), - [aux_sym_comparison_operator_token21] = ACTIONS(701), - [aux_sym_comparison_operator_token22] = ACTIONS(701), - [aux_sym_comparison_operator_token23] = ACTIONS(701), - [aux_sym_comparison_operator_token24] = ACTIONS(701), - [aux_sym_comparison_operator_token25] = ACTIONS(701), - [aux_sym_comparison_operator_token26] = ACTIONS(701), - [aux_sym_comparison_operator_token27] = ACTIONS(701), - [aux_sym_comparison_operator_token28] = ACTIONS(703), - [aux_sym_comparison_operator_token29] = ACTIONS(701), - [aux_sym_comparison_operator_token30] = ACTIONS(701), - [aux_sym_comparison_operator_token31] = ACTIONS(701), - [aux_sym_comparison_operator_token32] = ACTIONS(701), - [aux_sym_comparison_operator_token33] = ACTIONS(701), - [aux_sym_comparison_operator_token34] = ACTIONS(703), - [aux_sym_comparison_operator_token35] = ACTIONS(701), - [aux_sym_comparison_operator_token36] = ACTIONS(701), - [aux_sym_comparison_operator_token37] = ACTIONS(701), - [aux_sym_comparison_operator_token38] = ACTIONS(701), - [aux_sym_comparison_operator_token39] = ACTIONS(701), - [aux_sym_comparison_operator_token40] = ACTIONS(701), - [aux_sym_comparison_operator_token41] = ACTIONS(701), - [aux_sym_comparison_operator_token42] = ACTIONS(701), - [aux_sym_comparison_operator_token43] = ACTIONS(701), - [aux_sym_comparison_operator_token44] = ACTIONS(701), - [aux_sym_comparison_operator_token45] = ACTIONS(701), - [aux_sym_comparison_operator_token46] = ACTIONS(701), - [aux_sym_comparison_operator_token47] = ACTIONS(701), - [aux_sym_comparison_operator_token48] = ACTIONS(701), - [aux_sym_comparison_operator_token49] = ACTIONS(701), - [aux_sym_comparison_operator_token50] = ACTIONS(701), - [aux_sym_format_operator_token1] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_PERCENT] = ACTIONS(703), - [aux_sym_logical_expression_token1] = ACTIONS(701), - [aux_sym_logical_expression_token2] = ACTIONS(701), - [aux_sym_logical_expression_token3] = ACTIONS(701), - [aux_sym_bitwise_expression_token1] = ACTIONS(701), - [aux_sym_bitwise_expression_token2] = ACTIONS(701), - [aux_sym_bitwise_expression_token3] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_SLASH] = ACTIONS(703), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_DOT_DOT] = ACTIONS(701), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_DASH_DASH] = ACTIONS(701), - [anon_sym_DOT2] = ACTIONS(703), - [anon_sym_COLON_COLON] = ACTIONS(701), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(701), - [sym__statement_terminator] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_GT_GT] = ACTIONS(657), + [anon_sym_2_GT] = ACTIONS(659), + [anon_sym_2_GT_GT] = ACTIONS(657), + [anon_sym_3_GT] = ACTIONS(659), + [anon_sym_3_GT_GT] = ACTIONS(657), + [anon_sym_4_GT] = ACTIONS(659), + [anon_sym_4_GT_GT] = ACTIONS(657), + [anon_sym_5_GT] = ACTIONS(659), + [anon_sym_5_GT_GT] = ACTIONS(657), + [anon_sym_6_GT] = ACTIONS(659), + [anon_sym_6_GT_GT] = ACTIONS(657), + [anon_sym_STAR_GT] = ACTIONS(659), + [anon_sym_STAR_GT_GT] = ACTIONS(657), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_STAR_GT_AMP1] = ACTIONS(657), + [anon_sym_2_GT_AMP1] = ACTIONS(657), + [anon_sym_3_GT_AMP1] = ACTIONS(657), + [anon_sym_4_GT_AMP1] = ACTIONS(657), + [anon_sym_5_GT_AMP1] = ACTIONS(657), + [anon_sym_6_GT_AMP1] = ACTIONS(657), + [anon_sym_STAR_GT_AMP2] = ACTIONS(657), + [anon_sym_1_GT_AMP2] = ACTIONS(657), + [anon_sym_3_GT_AMP2] = ACTIONS(657), + [anon_sym_4_GT_AMP2] = ACTIONS(657), + [anon_sym_5_GT_AMP2] = ACTIONS(657), + [anon_sym_6_GT_AMP2] = ACTIONS(657), + [aux_sym_comparison_operator_token1] = ACTIONS(657), + [aux_sym_comparison_operator_token2] = ACTIONS(657), + [aux_sym_comparison_operator_token3] = ACTIONS(657), + [aux_sym_comparison_operator_token4] = ACTIONS(657), + [aux_sym_comparison_operator_token5] = ACTIONS(657), + [aux_sym_comparison_operator_token6] = ACTIONS(657), + [aux_sym_comparison_operator_token7] = ACTIONS(657), + [aux_sym_comparison_operator_token8] = ACTIONS(657), + [aux_sym_comparison_operator_token9] = ACTIONS(657), + [aux_sym_comparison_operator_token10] = ACTIONS(657), + [aux_sym_comparison_operator_token11] = ACTIONS(657), + [aux_sym_comparison_operator_token12] = ACTIONS(657), + [aux_sym_comparison_operator_token13] = ACTIONS(657), + [aux_sym_comparison_operator_token14] = ACTIONS(657), + [aux_sym_comparison_operator_token15] = ACTIONS(657), + [aux_sym_comparison_operator_token16] = ACTIONS(657), + [aux_sym_comparison_operator_token17] = ACTIONS(657), + [aux_sym_comparison_operator_token18] = ACTIONS(657), + [aux_sym_comparison_operator_token19] = ACTIONS(657), + [aux_sym_comparison_operator_token20] = ACTIONS(657), + [aux_sym_comparison_operator_token21] = ACTIONS(657), + [aux_sym_comparison_operator_token22] = ACTIONS(657), + [aux_sym_comparison_operator_token23] = ACTIONS(657), + [aux_sym_comparison_operator_token24] = ACTIONS(657), + [aux_sym_comparison_operator_token25] = ACTIONS(657), + [aux_sym_comparison_operator_token26] = ACTIONS(657), + [aux_sym_comparison_operator_token27] = ACTIONS(657), + [aux_sym_comparison_operator_token28] = ACTIONS(659), + [aux_sym_comparison_operator_token29] = ACTIONS(657), + [aux_sym_comparison_operator_token30] = ACTIONS(657), + [aux_sym_comparison_operator_token31] = ACTIONS(657), + [aux_sym_comparison_operator_token32] = ACTIONS(657), + [aux_sym_comparison_operator_token33] = ACTIONS(657), + [aux_sym_comparison_operator_token34] = ACTIONS(659), + [aux_sym_comparison_operator_token35] = ACTIONS(657), + [aux_sym_comparison_operator_token36] = ACTIONS(657), + [aux_sym_comparison_operator_token37] = ACTIONS(657), + [aux_sym_comparison_operator_token38] = ACTIONS(657), + [aux_sym_comparison_operator_token39] = ACTIONS(657), + [aux_sym_comparison_operator_token40] = ACTIONS(657), + [aux_sym_comparison_operator_token41] = ACTIONS(657), + [aux_sym_comparison_operator_token42] = ACTIONS(657), + [aux_sym_comparison_operator_token43] = ACTIONS(657), + [aux_sym_comparison_operator_token44] = ACTIONS(657), + [aux_sym_comparison_operator_token45] = ACTIONS(657), + [aux_sym_comparison_operator_token46] = ACTIONS(657), + [aux_sym_comparison_operator_token47] = ACTIONS(657), + [aux_sym_comparison_operator_token48] = ACTIONS(657), + [aux_sym_comparison_operator_token49] = ACTIONS(657), + [aux_sym_comparison_operator_token50] = ACTIONS(657), + [aux_sym_format_operator_token1] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_PERCENT] = ACTIONS(659), + [aux_sym_logical_expression_token1] = ACTIONS(657), + [aux_sym_logical_expression_token2] = ACTIONS(657), + [aux_sym_logical_expression_token3] = ACTIONS(657), + [aux_sym_bitwise_expression_token1] = ACTIONS(657), + [aux_sym_bitwise_expression_token2] = ACTIONS(657), + [aux_sym_bitwise_expression_token3] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_BSLASH] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_DOT_DOT] = ACTIONS(657), + [anon_sym_PLUS_PLUS] = ACTIONS(657), + [anon_sym_DASH_DASH] = ACTIONS(657), + [anon_sym_DOT2] = ACTIONS(659), + [anon_sym_COLON_COLON] = ACTIONS(657), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(657), + [sym__statement_terminator] = ACTIONS(657), }, [143] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_2_GT] = ACTIONS(711), - [anon_sym_2_GT_GT] = ACTIONS(709), - [anon_sym_3_GT] = ACTIONS(711), - [anon_sym_3_GT_GT] = ACTIONS(709), - [anon_sym_4_GT] = ACTIONS(711), - [anon_sym_4_GT_GT] = ACTIONS(709), - [anon_sym_5_GT] = ACTIONS(711), - [anon_sym_5_GT_GT] = ACTIONS(709), - [anon_sym_6_GT] = ACTIONS(711), - [anon_sym_6_GT_GT] = ACTIONS(709), - [anon_sym_STAR_GT] = ACTIONS(711), - [anon_sym_STAR_GT_GT] = ACTIONS(709), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_STAR_GT_AMP1] = ACTIONS(709), - [anon_sym_2_GT_AMP1] = ACTIONS(709), - [anon_sym_3_GT_AMP1] = ACTIONS(709), - [anon_sym_4_GT_AMP1] = ACTIONS(709), - [anon_sym_5_GT_AMP1] = ACTIONS(709), - [anon_sym_6_GT_AMP1] = ACTIONS(709), - [anon_sym_STAR_GT_AMP2] = ACTIONS(709), - [anon_sym_1_GT_AMP2] = ACTIONS(709), - [anon_sym_3_GT_AMP2] = ACTIONS(709), - [anon_sym_4_GT_AMP2] = ACTIONS(709), - [anon_sym_5_GT_AMP2] = ACTIONS(709), - [anon_sym_6_GT_AMP2] = ACTIONS(709), - [aux_sym_comparison_operator_token1] = ACTIONS(709), - [aux_sym_comparison_operator_token2] = ACTIONS(709), - [aux_sym_comparison_operator_token3] = ACTIONS(709), - [aux_sym_comparison_operator_token4] = ACTIONS(709), - [aux_sym_comparison_operator_token5] = ACTIONS(709), - [aux_sym_comparison_operator_token6] = ACTIONS(709), - [aux_sym_comparison_operator_token7] = ACTIONS(709), - [aux_sym_comparison_operator_token8] = ACTIONS(709), - [aux_sym_comparison_operator_token9] = ACTIONS(709), - [aux_sym_comparison_operator_token10] = ACTIONS(709), - [aux_sym_comparison_operator_token11] = ACTIONS(709), - [aux_sym_comparison_operator_token12] = ACTIONS(709), - [aux_sym_comparison_operator_token13] = ACTIONS(709), - [aux_sym_comparison_operator_token14] = ACTIONS(709), - [aux_sym_comparison_operator_token15] = ACTIONS(709), - [aux_sym_comparison_operator_token16] = ACTIONS(709), - [aux_sym_comparison_operator_token17] = ACTIONS(709), - [aux_sym_comparison_operator_token18] = ACTIONS(709), - [aux_sym_comparison_operator_token19] = ACTIONS(709), - [aux_sym_comparison_operator_token20] = ACTIONS(709), - [aux_sym_comparison_operator_token21] = ACTIONS(709), - [aux_sym_comparison_operator_token22] = ACTIONS(709), - [aux_sym_comparison_operator_token23] = ACTIONS(709), - [aux_sym_comparison_operator_token24] = ACTIONS(709), - [aux_sym_comparison_operator_token25] = ACTIONS(709), - [aux_sym_comparison_operator_token26] = ACTIONS(709), - [aux_sym_comparison_operator_token27] = ACTIONS(709), - [aux_sym_comparison_operator_token28] = ACTIONS(711), - [aux_sym_comparison_operator_token29] = ACTIONS(709), - [aux_sym_comparison_operator_token30] = ACTIONS(709), - [aux_sym_comparison_operator_token31] = ACTIONS(709), - [aux_sym_comparison_operator_token32] = ACTIONS(709), - [aux_sym_comparison_operator_token33] = ACTIONS(709), - [aux_sym_comparison_operator_token34] = ACTIONS(711), - [aux_sym_comparison_operator_token35] = ACTIONS(709), - [aux_sym_comparison_operator_token36] = ACTIONS(709), - [aux_sym_comparison_operator_token37] = ACTIONS(709), - [aux_sym_comparison_operator_token38] = ACTIONS(709), - [aux_sym_comparison_operator_token39] = ACTIONS(709), - [aux_sym_comparison_operator_token40] = ACTIONS(709), - [aux_sym_comparison_operator_token41] = ACTIONS(709), - [aux_sym_comparison_operator_token42] = ACTIONS(709), - [aux_sym_comparison_operator_token43] = ACTIONS(709), - [aux_sym_comparison_operator_token44] = ACTIONS(709), - [aux_sym_comparison_operator_token45] = ACTIONS(709), - [aux_sym_comparison_operator_token46] = ACTIONS(709), - [aux_sym_comparison_operator_token47] = ACTIONS(709), - [aux_sym_comparison_operator_token48] = ACTIONS(709), - [aux_sym_comparison_operator_token49] = ACTIONS(709), - [aux_sym_comparison_operator_token50] = ACTIONS(709), - [aux_sym_format_operator_token1] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_COMMA] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(711), - [aux_sym_logical_expression_token1] = ACTIONS(709), - [aux_sym_logical_expression_token2] = ACTIONS(709), - [aux_sym_logical_expression_token3] = ACTIONS(709), - [aux_sym_bitwise_expression_token1] = ACTIONS(709), - [aux_sym_bitwise_expression_token2] = ACTIONS(709), - [aux_sym_bitwise_expression_token3] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(711), - [anon_sym_BSLASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(709), - [anon_sym_PLUS_PLUS] = ACTIONS(709), - [anon_sym_DASH_DASH] = ACTIONS(709), - [anon_sym_DOT2] = ACTIONS(711), - [anon_sym_COLON_COLON] = ACTIONS(709), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(709), - [sym__statement_terminator] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_BANG_EQ] = ACTIONS(661), + [anon_sym_PLUS_EQ] = ACTIONS(661), + [anon_sym_STAR_EQ] = ACTIONS(661), + [anon_sym_SLASH_EQ] = ACTIONS(661), + [anon_sym_PERCENT_EQ] = ACTIONS(661), + [anon_sym_DASH_EQ] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_2_GT] = ACTIONS(664), + [anon_sym_2_GT_GT] = ACTIONS(661), + [anon_sym_3_GT] = ACTIONS(664), + [anon_sym_3_GT_GT] = ACTIONS(661), + [anon_sym_4_GT] = ACTIONS(664), + [anon_sym_4_GT_GT] = ACTIONS(661), + [anon_sym_5_GT] = ACTIONS(664), + [anon_sym_5_GT_GT] = ACTIONS(661), + [anon_sym_6_GT] = ACTIONS(664), + [anon_sym_6_GT_GT] = ACTIONS(661), + [anon_sym_STAR_GT] = ACTIONS(664), + [anon_sym_STAR_GT_GT] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_STAR_GT_AMP1] = ACTIONS(661), + [anon_sym_2_GT_AMP1] = ACTIONS(661), + [anon_sym_3_GT_AMP1] = ACTIONS(661), + [anon_sym_4_GT_AMP1] = ACTIONS(661), + [anon_sym_5_GT_AMP1] = ACTIONS(661), + [anon_sym_6_GT_AMP1] = ACTIONS(661), + [anon_sym_STAR_GT_AMP2] = ACTIONS(661), + [anon_sym_1_GT_AMP2] = ACTIONS(661), + [anon_sym_3_GT_AMP2] = ACTIONS(661), + [anon_sym_4_GT_AMP2] = ACTIONS(661), + [anon_sym_5_GT_AMP2] = ACTIONS(661), + [anon_sym_6_GT_AMP2] = ACTIONS(661), + [aux_sym_comparison_operator_token1] = ACTIONS(661), + [aux_sym_comparison_operator_token2] = ACTIONS(661), + [aux_sym_comparison_operator_token3] = ACTIONS(661), + [aux_sym_comparison_operator_token4] = ACTIONS(661), + [aux_sym_comparison_operator_token5] = ACTIONS(661), + [aux_sym_comparison_operator_token6] = ACTIONS(661), + [aux_sym_comparison_operator_token7] = ACTIONS(661), + [aux_sym_comparison_operator_token8] = ACTIONS(661), + [aux_sym_comparison_operator_token9] = ACTIONS(661), + [aux_sym_comparison_operator_token10] = ACTIONS(661), + [aux_sym_comparison_operator_token11] = ACTIONS(661), + [aux_sym_comparison_operator_token12] = ACTIONS(661), + [aux_sym_comparison_operator_token13] = ACTIONS(661), + [aux_sym_comparison_operator_token14] = ACTIONS(661), + [aux_sym_comparison_operator_token15] = ACTIONS(661), + [aux_sym_comparison_operator_token16] = ACTIONS(661), + [aux_sym_comparison_operator_token17] = ACTIONS(661), + [aux_sym_comparison_operator_token18] = ACTIONS(661), + [aux_sym_comparison_operator_token19] = ACTIONS(661), + [aux_sym_comparison_operator_token20] = ACTIONS(661), + [aux_sym_comparison_operator_token21] = ACTIONS(661), + [aux_sym_comparison_operator_token22] = ACTIONS(661), + [aux_sym_comparison_operator_token23] = ACTIONS(661), + [aux_sym_comparison_operator_token24] = ACTIONS(661), + [aux_sym_comparison_operator_token25] = ACTIONS(661), + [aux_sym_comparison_operator_token26] = ACTIONS(661), + [aux_sym_comparison_operator_token27] = ACTIONS(661), + [aux_sym_comparison_operator_token28] = ACTIONS(664), + [aux_sym_comparison_operator_token29] = ACTIONS(661), + [aux_sym_comparison_operator_token30] = ACTIONS(661), + [aux_sym_comparison_operator_token31] = ACTIONS(661), + [aux_sym_comparison_operator_token32] = ACTIONS(661), + [aux_sym_comparison_operator_token33] = ACTIONS(661), + [aux_sym_comparison_operator_token34] = ACTIONS(664), + [aux_sym_comparison_operator_token35] = ACTIONS(661), + [aux_sym_comparison_operator_token36] = ACTIONS(661), + [aux_sym_comparison_operator_token37] = ACTIONS(661), + [aux_sym_comparison_operator_token38] = ACTIONS(661), + [aux_sym_comparison_operator_token39] = ACTIONS(661), + [aux_sym_comparison_operator_token40] = ACTIONS(661), + [aux_sym_comparison_operator_token41] = ACTIONS(661), + [aux_sym_comparison_operator_token42] = ACTIONS(661), + [aux_sym_comparison_operator_token43] = ACTIONS(661), + [aux_sym_comparison_operator_token44] = ACTIONS(661), + [aux_sym_comparison_operator_token45] = ACTIONS(661), + [aux_sym_comparison_operator_token46] = ACTIONS(661), + [aux_sym_comparison_operator_token47] = ACTIONS(661), + [aux_sym_comparison_operator_token48] = ACTIONS(661), + [aux_sym_comparison_operator_token49] = ACTIONS(661), + [aux_sym_comparison_operator_token50] = ACTIONS(661), + [aux_sym_format_operator_token1] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(661), + [anon_sym_COMMA] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_PERCENT] = ACTIONS(664), + [aux_sym_logical_expression_token1] = ACTIONS(661), + [aux_sym_logical_expression_token2] = ACTIONS(661), + [aux_sym_logical_expression_token3] = ACTIONS(661), + [aux_sym_bitwise_expression_token1] = ACTIONS(661), + [aux_sym_bitwise_expression_token2] = ACTIONS(661), + [aux_sym_bitwise_expression_token3] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_BSLASH] = ACTIONS(661), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(661), + [anon_sym_DASH_DASH] = ACTIONS(661), + [anon_sym_DOT2] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(661), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(661), + [sym__statement_terminator] = ACTIONS(661), }, [144] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_BANG_EQ] = ACTIONS(717), - [anon_sym_PLUS_EQ] = ACTIONS(717), - [anon_sym_STAR_EQ] = ACTIONS(717), - [anon_sym_SLASH_EQ] = ACTIONS(717), - [anon_sym_PERCENT_EQ] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(719), - [anon_sym_GT_GT] = ACTIONS(717), - [anon_sym_2_GT] = ACTIONS(719), - [anon_sym_2_GT_GT] = ACTIONS(717), - [anon_sym_3_GT] = ACTIONS(719), - [anon_sym_3_GT_GT] = ACTIONS(717), - [anon_sym_4_GT] = ACTIONS(719), - [anon_sym_4_GT_GT] = ACTIONS(717), - [anon_sym_5_GT] = ACTIONS(719), - [anon_sym_5_GT_GT] = ACTIONS(717), - [anon_sym_6_GT] = ACTIONS(719), - [anon_sym_6_GT_GT] = ACTIONS(717), - [anon_sym_STAR_GT] = ACTIONS(719), - [anon_sym_STAR_GT_GT] = ACTIONS(717), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_STAR_GT_AMP1] = ACTIONS(717), - [anon_sym_2_GT_AMP1] = ACTIONS(717), - [anon_sym_3_GT_AMP1] = ACTIONS(717), - [anon_sym_4_GT_AMP1] = ACTIONS(717), - [anon_sym_5_GT_AMP1] = ACTIONS(717), - [anon_sym_6_GT_AMP1] = ACTIONS(717), - [anon_sym_STAR_GT_AMP2] = ACTIONS(717), - [anon_sym_1_GT_AMP2] = ACTIONS(717), - [anon_sym_3_GT_AMP2] = ACTIONS(717), - [anon_sym_4_GT_AMP2] = ACTIONS(717), - [anon_sym_5_GT_AMP2] = ACTIONS(717), - [anon_sym_6_GT_AMP2] = ACTIONS(717), - [aux_sym_comparison_operator_token1] = ACTIONS(717), - [aux_sym_comparison_operator_token2] = ACTIONS(717), - [aux_sym_comparison_operator_token3] = ACTIONS(717), - [aux_sym_comparison_operator_token4] = ACTIONS(717), - [aux_sym_comparison_operator_token5] = ACTIONS(717), - [aux_sym_comparison_operator_token6] = ACTIONS(717), - [aux_sym_comparison_operator_token7] = ACTIONS(717), - [aux_sym_comparison_operator_token8] = ACTIONS(717), - [aux_sym_comparison_operator_token9] = ACTIONS(717), - [aux_sym_comparison_operator_token10] = ACTIONS(717), - [aux_sym_comparison_operator_token11] = ACTIONS(717), - [aux_sym_comparison_operator_token12] = ACTIONS(717), - [aux_sym_comparison_operator_token13] = ACTIONS(717), - [aux_sym_comparison_operator_token14] = ACTIONS(717), - [aux_sym_comparison_operator_token15] = ACTIONS(717), - [aux_sym_comparison_operator_token16] = ACTIONS(717), - [aux_sym_comparison_operator_token17] = ACTIONS(717), - [aux_sym_comparison_operator_token18] = ACTIONS(717), - [aux_sym_comparison_operator_token19] = ACTIONS(717), - [aux_sym_comparison_operator_token20] = ACTIONS(717), - [aux_sym_comparison_operator_token21] = ACTIONS(717), - [aux_sym_comparison_operator_token22] = ACTIONS(717), - [aux_sym_comparison_operator_token23] = ACTIONS(717), - [aux_sym_comparison_operator_token24] = ACTIONS(717), - [aux_sym_comparison_operator_token25] = ACTIONS(717), - [aux_sym_comparison_operator_token26] = ACTIONS(717), - [aux_sym_comparison_operator_token27] = ACTIONS(717), - [aux_sym_comparison_operator_token28] = ACTIONS(719), - [aux_sym_comparison_operator_token29] = ACTIONS(717), - [aux_sym_comparison_operator_token30] = ACTIONS(717), - [aux_sym_comparison_operator_token31] = ACTIONS(717), - [aux_sym_comparison_operator_token32] = ACTIONS(717), - [aux_sym_comparison_operator_token33] = ACTIONS(717), - [aux_sym_comparison_operator_token34] = ACTIONS(719), - [aux_sym_comparison_operator_token35] = ACTIONS(717), - [aux_sym_comparison_operator_token36] = ACTIONS(717), - [aux_sym_comparison_operator_token37] = ACTIONS(717), - [aux_sym_comparison_operator_token38] = ACTIONS(717), - [aux_sym_comparison_operator_token39] = ACTIONS(717), - [aux_sym_comparison_operator_token40] = ACTIONS(717), - [aux_sym_comparison_operator_token41] = ACTIONS(717), - [aux_sym_comparison_operator_token42] = ACTIONS(717), - [aux_sym_comparison_operator_token43] = ACTIONS(717), - [aux_sym_comparison_operator_token44] = ACTIONS(717), - [aux_sym_comparison_operator_token45] = ACTIONS(717), - [aux_sym_comparison_operator_token46] = ACTIONS(717), - [aux_sym_comparison_operator_token47] = ACTIONS(717), - [aux_sym_comparison_operator_token48] = ACTIONS(717), - [aux_sym_comparison_operator_token49] = ACTIONS(717), - [aux_sym_comparison_operator_token50] = ACTIONS(717), - [aux_sym_format_operator_token1] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(717), - [anon_sym_COMMA] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_PERCENT] = ACTIONS(719), - [aux_sym_logical_expression_token1] = ACTIONS(717), - [aux_sym_logical_expression_token2] = ACTIONS(717), - [aux_sym_logical_expression_token3] = ACTIONS(717), - [aux_sym_bitwise_expression_token1] = ACTIONS(717), - [aux_sym_bitwise_expression_token2] = ACTIONS(717), - [aux_sym_bitwise_expression_token3] = ACTIONS(717), - [anon_sym_PLUS] = ACTIONS(719), - [anon_sym_DASH] = ACTIONS(719), - [anon_sym_SLASH] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(717), - [anon_sym_STAR] = ACTIONS(719), - [anon_sym_DOT_DOT] = ACTIONS(717), - [anon_sym_PLUS_PLUS] = ACTIONS(717), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DOT2] = ACTIONS(719), - [anon_sym_COLON_COLON] = ACTIONS(717), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(717), - [sym__statement_terminator] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_2_GT] = ACTIONS(627), + [anon_sym_2_GT_GT] = ACTIONS(625), + [anon_sym_3_GT] = ACTIONS(627), + [anon_sym_3_GT_GT] = ACTIONS(625), + [anon_sym_4_GT] = ACTIONS(627), + [anon_sym_4_GT_GT] = ACTIONS(625), + [anon_sym_5_GT] = ACTIONS(627), + [anon_sym_5_GT_GT] = ACTIONS(625), + [anon_sym_6_GT] = ACTIONS(627), + [anon_sym_6_GT_GT] = ACTIONS(625), + [anon_sym_STAR_GT] = ACTIONS(627), + [anon_sym_STAR_GT_GT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_STAR_GT_AMP1] = ACTIONS(625), + [anon_sym_2_GT_AMP1] = ACTIONS(625), + [anon_sym_3_GT_AMP1] = ACTIONS(625), + [anon_sym_4_GT_AMP1] = ACTIONS(625), + [anon_sym_5_GT_AMP1] = ACTIONS(625), + [anon_sym_6_GT_AMP1] = ACTIONS(625), + [anon_sym_STAR_GT_AMP2] = ACTIONS(625), + [anon_sym_1_GT_AMP2] = ACTIONS(625), + [anon_sym_3_GT_AMP2] = ACTIONS(625), + [anon_sym_4_GT_AMP2] = ACTIONS(625), + [anon_sym_5_GT_AMP2] = ACTIONS(625), + [anon_sym_6_GT_AMP2] = ACTIONS(625), + [aux_sym_comparison_operator_token1] = ACTIONS(625), + [aux_sym_comparison_operator_token2] = ACTIONS(625), + [aux_sym_comparison_operator_token3] = ACTIONS(625), + [aux_sym_comparison_operator_token4] = ACTIONS(625), + [aux_sym_comparison_operator_token5] = ACTIONS(625), + [aux_sym_comparison_operator_token6] = ACTIONS(625), + [aux_sym_comparison_operator_token7] = ACTIONS(625), + [aux_sym_comparison_operator_token8] = ACTIONS(625), + [aux_sym_comparison_operator_token9] = ACTIONS(625), + [aux_sym_comparison_operator_token10] = ACTIONS(625), + [aux_sym_comparison_operator_token11] = ACTIONS(625), + [aux_sym_comparison_operator_token12] = ACTIONS(625), + [aux_sym_comparison_operator_token13] = ACTIONS(625), + [aux_sym_comparison_operator_token14] = ACTIONS(625), + [aux_sym_comparison_operator_token15] = ACTIONS(625), + [aux_sym_comparison_operator_token16] = ACTIONS(625), + [aux_sym_comparison_operator_token17] = ACTIONS(625), + [aux_sym_comparison_operator_token18] = ACTIONS(625), + [aux_sym_comparison_operator_token19] = ACTIONS(625), + [aux_sym_comparison_operator_token20] = ACTIONS(625), + [aux_sym_comparison_operator_token21] = ACTIONS(625), + [aux_sym_comparison_operator_token22] = ACTIONS(625), + [aux_sym_comparison_operator_token23] = ACTIONS(625), + [aux_sym_comparison_operator_token24] = ACTIONS(625), + [aux_sym_comparison_operator_token25] = ACTIONS(625), + [aux_sym_comparison_operator_token26] = ACTIONS(625), + [aux_sym_comparison_operator_token27] = ACTIONS(625), + [aux_sym_comparison_operator_token28] = ACTIONS(627), + [aux_sym_comparison_operator_token29] = ACTIONS(625), + [aux_sym_comparison_operator_token30] = ACTIONS(625), + [aux_sym_comparison_operator_token31] = ACTIONS(625), + [aux_sym_comparison_operator_token32] = ACTIONS(625), + [aux_sym_comparison_operator_token33] = ACTIONS(625), + [aux_sym_comparison_operator_token34] = ACTIONS(627), + [aux_sym_comparison_operator_token35] = ACTIONS(625), + [aux_sym_comparison_operator_token36] = ACTIONS(625), + [aux_sym_comparison_operator_token37] = ACTIONS(625), + [aux_sym_comparison_operator_token38] = ACTIONS(625), + [aux_sym_comparison_operator_token39] = ACTIONS(625), + [aux_sym_comparison_operator_token40] = ACTIONS(625), + [aux_sym_comparison_operator_token41] = ACTIONS(625), + [aux_sym_comparison_operator_token42] = ACTIONS(625), + [aux_sym_comparison_operator_token43] = ACTIONS(625), + [aux_sym_comparison_operator_token44] = ACTIONS(625), + [aux_sym_comparison_operator_token45] = ACTIONS(625), + [aux_sym_comparison_operator_token46] = ACTIONS(625), + [aux_sym_comparison_operator_token47] = ACTIONS(625), + [aux_sym_comparison_operator_token48] = ACTIONS(625), + [aux_sym_comparison_operator_token49] = ACTIONS(625), + [aux_sym_comparison_operator_token50] = ACTIONS(625), + [aux_sym_format_operator_token1] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_PERCENT] = ACTIONS(627), + [aux_sym_logical_expression_token1] = ACTIONS(625), + [aux_sym_logical_expression_token2] = ACTIONS(625), + [aux_sym_logical_expression_token3] = ACTIONS(625), + [aux_sym_bitwise_expression_token1] = ACTIONS(625), + [aux_sym_bitwise_expression_token2] = ACTIONS(625), + [aux_sym_bitwise_expression_token3] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_BSLASH] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_DOT_DOT] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_DOT2] = ACTIONS(627), + [anon_sym_COLON_COLON] = ACTIONS(625), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(625), + [sym__statement_terminator] = ACTIONS(625), }, [145] = { [sym_comment] = ACTIONS(81), @@ -44295,6 +45268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(667), [anon_sym_SLASH_EQ] = ACTIONS(667), [anon_sym_PERCENT_EQ] = ACTIONS(667), + [anon_sym_DASH_EQ] = ACTIONS(667), [anon_sym_GT] = ACTIONS(669), [anon_sym_GT_GT] = ACTIONS(667), [anon_sym_2_GT] = ACTIONS(669), @@ -44398,1317 +45372,1225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [146] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(725), - [anon_sym_EQ] = ACTIONS(725), - [anon_sym_BANG_EQ] = ACTIONS(725), - [anon_sym_PLUS_EQ] = ACTIONS(725), - [anon_sym_STAR_EQ] = ACTIONS(725), - [anon_sym_SLASH_EQ] = ACTIONS(725), - [anon_sym_PERCENT_EQ] = ACTIONS(725), - [anon_sym_GT] = ACTIONS(727), - [anon_sym_GT_GT] = ACTIONS(725), - [anon_sym_2_GT] = ACTIONS(727), - [anon_sym_2_GT_GT] = ACTIONS(725), - [anon_sym_3_GT] = ACTIONS(727), - [anon_sym_3_GT_GT] = ACTIONS(725), - [anon_sym_4_GT] = ACTIONS(727), - [anon_sym_4_GT_GT] = ACTIONS(725), - [anon_sym_5_GT] = ACTIONS(727), - [anon_sym_5_GT_GT] = ACTIONS(725), - [anon_sym_6_GT] = ACTIONS(727), - [anon_sym_6_GT_GT] = ACTIONS(725), - [anon_sym_STAR_GT] = ACTIONS(727), - [anon_sym_STAR_GT_GT] = ACTIONS(725), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_STAR_GT_AMP1] = ACTIONS(725), - [anon_sym_2_GT_AMP1] = ACTIONS(725), - [anon_sym_3_GT_AMP1] = ACTIONS(725), - [anon_sym_4_GT_AMP1] = ACTIONS(725), - [anon_sym_5_GT_AMP1] = ACTIONS(725), - [anon_sym_6_GT_AMP1] = ACTIONS(725), - [anon_sym_STAR_GT_AMP2] = ACTIONS(725), - [anon_sym_1_GT_AMP2] = ACTIONS(725), - [anon_sym_3_GT_AMP2] = ACTIONS(725), - [anon_sym_4_GT_AMP2] = ACTIONS(725), - [anon_sym_5_GT_AMP2] = ACTIONS(725), - [anon_sym_6_GT_AMP2] = ACTIONS(725), - [aux_sym_comparison_operator_token1] = ACTIONS(725), - [aux_sym_comparison_operator_token2] = ACTIONS(725), - [aux_sym_comparison_operator_token3] = ACTIONS(725), - [aux_sym_comparison_operator_token4] = ACTIONS(725), - [aux_sym_comparison_operator_token5] = ACTIONS(725), - [aux_sym_comparison_operator_token6] = ACTIONS(725), - [aux_sym_comparison_operator_token7] = ACTIONS(725), - [aux_sym_comparison_operator_token8] = ACTIONS(725), - [aux_sym_comparison_operator_token9] = ACTIONS(725), - [aux_sym_comparison_operator_token10] = ACTIONS(725), - [aux_sym_comparison_operator_token11] = ACTIONS(725), - [aux_sym_comparison_operator_token12] = ACTIONS(725), - [aux_sym_comparison_operator_token13] = ACTIONS(725), - [aux_sym_comparison_operator_token14] = ACTIONS(725), - [aux_sym_comparison_operator_token15] = ACTIONS(725), - [aux_sym_comparison_operator_token16] = ACTIONS(725), - [aux_sym_comparison_operator_token17] = ACTIONS(725), - [aux_sym_comparison_operator_token18] = ACTIONS(725), - [aux_sym_comparison_operator_token19] = ACTIONS(725), - [aux_sym_comparison_operator_token20] = ACTIONS(725), - [aux_sym_comparison_operator_token21] = ACTIONS(725), - [aux_sym_comparison_operator_token22] = ACTIONS(725), - [aux_sym_comparison_operator_token23] = ACTIONS(725), - [aux_sym_comparison_operator_token24] = ACTIONS(725), - [aux_sym_comparison_operator_token25] = ACTIONS(725), - [aux_sym_comparison_operator_token26] = ACTIONS(725), - [aux_sym_comparison_operator_token27] = ACTIONS(725), - [aux_sym_comparison_operator_token28] = ACTIONS(727), - [aux_sym_comparison_operator_token29] = ACTIONS(725), - [aux_sym_comparison_operator_token30] = ACTIONS(725), - [aux_sym_comparison_operator_token31] = ACTIONS(725), - [aux_sym_comparison_operator_token32] = ACTIONS(725), - [aux_sym_comparison_operator_token33] = ACTIONS(725), - [aux_sym_comparison_operator_token34] = ACTIONS(727), - [aux_sym_comparison_operator_token35] = ACTIONS(725), - [aux_sym_comparison_operator_token36] = ACTIONS(725), - [aux_sym_comparison_operator_token37] = ACTIONS(725), - [aux_sym_comparison_operator_token38] = ACTIONS(725), - [aux_sym_comparison_operator_token39] = ACTIONS(725), - [aux_sym_comparison_operator_token40] = ACTIONS(725), - [aux_sym_comparison_operator_token41] = ACTIONS(725), - [aux_sym_comparison_operator_token42] = ACTIONS(725), - [aux_sym_comparison_operator_token43] = ACTIONS(725), - [aux_sym_comparison_operator_token44] = ACTIONS(725), - [aux_sym_comparison_operator_token45] = ACTIONS(725), - [aux_sym_comparison_operator_token46] = ACTIONS(725), - [aux_sym_comparison_operator_token47] = ACTIONS(725), - [aux_sym_comparison_operator_token48] = ACTIONS(725), - [aux_sym_comparison_operator_token49] = ACTIONS(725), - [aux_sym_comparison_operator_token50] = ACTIONS(725), - [aux_sym_format_operator_token1] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(725), - [anon_sym_PIPE] = ACTIONS(725), - [anon_sym_PERCENT] = ACTIONS(727), - [aux_sym_logical_expression_token1] = ACTIONS(725), - [aux_sym_logical_expression_token2] = ACTIONS(725), - [aux_sym_logical_expression_token3] = ACTIONS(725), - [aux_sym_bitwise_expression_token1] = ACTIONS(725), - [aux_sym_bitwise_expression_token2] = ACTIONS(725), - [aux_sym_bitwise_expression_token3] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(727), - [anon_sym_BSLASH] = ACTIONS(725), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_DOT_DOT] = ACTIONS(725), - [anon_sym_PLUS_PLUS] = ACTIONS(725), - [anon_sym_DASH_DASH] = ACTIONS(725), - [anon_sym_DOT2] = ACTIONS(727), - [anon_sym_COLON_COLON] = ACTIONS(725), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(725), - [sym__statement_terminator] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_BANG_EQ] = ACTIONS(671), + [anon_sym_PLUS_EQ] = ACTIONS(671), + [anon_sym_STAR_EQ] = ACTIONS(671), + [anon_sym_SLASH_EQ] = ACTIONS(671), + [anon_sym_PERCENT_EQ] = ACTIONS(671), + [anon_sym_DASH_EQ] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_2_GT] = ACTIONS(673), + [anon_sym_2_GT_GT] = ACTIONS(671), + [anon_sym_3_GT] = ACTIONS(673), + [anon_sym_3_GT_GT] = ACTIONS(671), + [anon_sym_4_GT] = ACTIONS(673), + [anon_sym_4_GT_GT] = ACTIONS(671), + [anon_sym_5_GT] = ACTIONS(673), + [anon_sym_5_GT_GT] = ACTIONS(671), + [anon_sym_6_GT] = ACTIONS(673), + [anon_sym_6_GT_GT] = ACTIONS(671), + [anon_sym_STAR_GT] = ACTIONS(673), + [anon_sym_STAR_GT_GT] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_STAR_GT_AMP1] = ACTIONS(671), + [anon_sym_2_GT_AMP1] = ACTIONS(671), + [anon_sym_3_GT_AMP1] = ACTIONS(671), + [anon_sym_4_GT_AMP1] = ACTIONS(671), + [anon_sym_5_GT_AMP1] = ACTIONS(671), + [anon_sym_6_GT_AMP1] = ACTIONS(671), + [anon_sym_STAR_GT_AMP2] = ACTIONS(671), + [anon_sym_1_GT_AMP2] = ACTIONS(671), + [anon_sym_3_GT_AMP2] = ACTIONS(671), + [anon_sym_4_GT_AMP2] = ACTIONS(671), + [anon_sym_5_GT_AMP2] = ACTIONS(671), + [anon_sym_6_GT_AMP2] = ACTIONS(671), + [aux_sym_comparison_operator_token1] = ACTIONS(671), + [aux_sym_comparison_operator_token2] = ACTIONS(671), + [aux_sym_comparison_operator_token3] = ACTIONS(671), + [aux_sym_comparison_operator_token4] = ACTIONS(671), + [aux_sym_comparison_operator_token5] = ACTIONS(671), + [aux_sym_comparison_operator_token6] = ACTIONS(671), + [aux_sym_comparison_operator_token7] = ACTIONS(671), + [aux_sym_comparison_operator_token8] = ACTIONS(671), + [aux_sym_comparison_operator_token9] = ACTIONS(671), + [aux_sym_comparison_operator_token10] = ACTIONS(671), + [aux_sym_comparison_operator_token11] = ACTIONS(671), + [aux_sym_comparison_operator_token12] = ACTIONS(671), + [aux_sym_comparison_operator_token13] = ACTIONS(671), + [aux_sym_comparison_operator_token14] = ACTIONS(671), + [aux_sym_comparison_operator_token15] = ACTIONS(671), + [aux_sym_comparison_operator_token16] = ACTIONS(671), + [aux_sym_comparison_operator_token17] = ACTIONS(671), + [aux_sym_comparison_operator_token18] = ACTIONS(671), + [aux_sym_comparison_operator_token19] = ACTIONS(671), + [aux_sym_comparison_operator_token20] = ACTIONS(671), + [aux_sym_comparison_operator_token21] = ACTIONS(671), + [aux_sym_comparison_operator_token22] = ACTIONS(671), + [aux_sym_comparison_operator_token23] = ACTIONS(671), + [aux_sym_comparison_operator_token24] = ACTIONS(671), + [aux_sym_comparison_operator_token25] = ACTIONS(671), + [aux_sym_comparison_operator_token26] = ACTIONS(671), + [aux_sym_comparison_operator_token27] = ACTIONS(671), + [aux_sym_comparison_operator_token28] = ACTIONS(673), + [aux_sym_comparison_operator_token29] = ACTIONS(671), + [aux_sym_comparison_operator_token30] = ACTIONS(671), + [aux_sym_comparison_operator_token31] = ACTIONS(671), + [aux_sym_comparison_operator_token32] = ACTIONS(671), + [aux_sym_comparison_operator_token33] = ACTIONS(671), + [aux_sym_comparison_operator_token34] = ACTIONS(673), + [aux_sym_comparison_operator_token35] = ACTIONS(671), + [aux_sym_comparison_operator_token36] = ACTIONS(671), + [aux_sym_comparison_operator_token37] = ACTIONS(671), + [aux_sym_comparison_operator_token38] = ACTIONS(671), + [aux_sym_comparison_operator_token39] = ACTIONS(671), + [aux_sym_comparison_operator_token40] = ACTIONS(671), + [aux_sym_comparison_operator_token41] = ACTIONS(671), + [aux_sym_comparison_operator_token42] = ACTIONS(671), + [aux_sym_comparison_operator_token43] = ACTIONS(671), + [aux_sym_comparison_operator_token44] = ACTIONS(671), + [aux_sym_comparison_operator_token45] = ACTIONS(671), + [aux_sym_comparison_operator_token46] = ACTIONS(671), + [aux_sym_comparison_operator_token47] = ACTIONS(671), + [aux_sym_comparison_operator_token48] = ACTIONS(671), + [aux_sym_comparison_operator_token49] = ACTIONS(671), + [aux_sym_comparison_operator_token50] = ACTIONS(671), + [aux_sym_format_operator_token1] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_COMMA] = ACTIONS(671), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_PERCENT] = ACTIONS(673), + [aux_sym_logical_expression_token1] = ACTIONS(671), + [aux_sym_logical_expression_token2] = ACTIONS(671), + [aux_sym_logical_expression_token3] = ACTIONS(671), + [aux_sym_bitwise_expression_token1] = ACTIONS(671), + [aux_sym_bitwise_expression_token2] = ACTIONS(671), + [aux_sym_bitwise_expression_token3] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_BSLASH] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_DOT2] = ACTIONS(673), + [anon_sym_COLON_COLON] = ACTIONS(671), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(671), + [sym__statement_terminator] = ACTIONS(671), }, [147] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_BANG_EQ] = ACTIONS(705), - [anon_sym_PLUS_EQ] = ACTIONS(705), - [anon_sym_STAR_EQ] = ACTIONS(705), - [anon_sym_SLASH_EQ] = ACTIONS(705), - [anon_sym_PERCENT_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_2_GT] = ACTIONS(707), - [anon_sym_2_GT_GT] = ACTIONS(705), - [anon_sym_3_GT] = ACTIONS(707), - [anon_sym_3_GT_GT] = ACTIONS(705), - [anon_sym_4_GT] = ACTIONS(707), - [anon_sym_4_GT_GT] = ACTIONS(705), - [anon_sym_5_GT] = ACTIONS(707), - [anon_sym_5_GT_GT] = ACTIONS(705), - [anon_sym_6_GT] = ACTIONS(707), - [anon_sym_6_GT_GT] = ACTIONS(705), - [anon_sym_STAR_GT] = ACTIONS(707), - [anon_sym_STAR_GT_GT] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_STAR_GT_AMP1] = ACTIONS(705), - [anon_sym_2_GT_AMP1] = ACTIONS(705), - [anon_sym_3_GT_AMP1] = ACTIONS(705), - [anon_sym_4_GT_AMP1] = ACTIONS(705), - [anon_sym_5_GT_AMP1] = ACTIONS(705), - [anon_sym_6_GT_AMP1] = ACTIONS(705), - [anon_sym_STAR_GT_AMP2] = ACTIONS(705), - [anon_sym_1_GT_AMP2] = ACTIONS(705), - [anon_sym_3_GT_AMP2] = ACTIONS(705), - [anon_sym_4_GT_AMP2] = ACTIONS(705), - [anon_sym_5_GT_AMP2] = ACTIONS(705), - [anon_sym_6_GT_AMP2] = ACTIONS(705), - [aux_sym_comparison_operator_token1] = ACTIONS(705), - [aux_sym_comparison_operator_token2] = ACTIONS(705), - [aux_sym_comparison_operator_token3] = ACTIONS(705), - [aux_sym_comparison_operator_token4] = ACTIONS(705), - [aux_sym_comparison_operator_token5] = ACTIONS(705), - [aux_sym_comparison_operator_token6] = ACTIONS(705), - [aux_sym_comparison_operator_token7] = ACTIONS(705), - [aux_sym_comparison_operator_token8] = ACTIONS(705), - [aux_sym_comparison_operator_token9] = ACTIONS(705), - [aux_sym_comparison_operator_token10] = ACTIONS(705), - [aux_sym_comparison_operator_token11] = ACTIONS(705), - [aux_sym_comparison_operator_token12] = ACTIONS(705), - [aux_sym_comparison_operator_token13] = ACTIONS(705), - [aux_sym_comparison_operator_token14] = ACTIONS(705), - [aux_sym_comparison_operator_token15] = ACTIONS(705), - [aux_sym_comparison_operator_token16] = ACTIONS(705), - [aux_sym_comparison_operator_token17] = ACTIONS(705), - [aux_sym_comparison_operator_token18] = ACTIONS(705), - [aux_sym_comparison_operator_token19] = ACTIONS(705), - [aux_sym_comparison_operator_token20] = ACTIONS(705), - [aux_sym_comparison_operator_token21] = ACTIONS(705), - [aux_sym_comparison_operator_token22] = ACTIONS(705), - [aux_sym_comparison_operator_token23] = ACTIONS(705), - [aux_sym_comparison_operator_token24] = ACTIONS(705), - [aux_sym_comparison_operator_token25] = ACTIONS(705), - [aux_sym_comparison_operator_token26] = ACTIONS(705), - [aux_sym_comparison_operator_token27] = ACTIONS(705), - [aux_sym_comparison_operator_token28] = ACTIONS(707), - [aux_sym_comparison_operator_token29] = ACTIONS(705), - [aux_sym_comparison_operator_token30] = ACTIONS(705), - [aux_sym_comparison_operator_token31] = ACTIONS(705), - [aux_sym_comparison_operator_token32] = ACTIONS(705), - [aux_sym_comparison_operator_token33] = ACTIONS(705), - [aux_sym_comparison_operator_token34] = ACTIONS(707), - [aux_sym_comparison_operator_token35] = ACTIONS(705), - [aux_sym_comparison_operator_token36] = ACTIONS(705), - [aux_sym_comparison_operator_token37] = ACTIONS(705), - [aux_sym_comparison_operator_token38] = ACTIONS(705), - [aux_sym_comparison_operator_token39] = ACTIONS(705), - [aux_sym_comparison_operator_token40] = ACTIONS(705), - [aux_sym_comparison_operator_token41] = ACTIONS(705), - [aux_sym_comparison_operator_token42] = ACTIONS(705), - [aux_sym_comparison_operator_token43] = ACTIONS(705), - [aux_sym_comparison_operator_token44] = ACTIONS(705), - [aux_sym_comparison_operator_token45] = ACTIONS(705), - [aux_sym_comparison_operator_token46] = ACTIONS(705), - [aux_sym_comparison_operator_token47] = ACTIONS(705), - [aux_sym_comparison_operator_token48] = ACTIONS(705), - [aux_sym_comparison_operator_token49] = ACTIONS(705), - [aux_sym_comparison_operator_token50] = ACTIONS(705), - [aux_sym_format_operator_token1] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(707), - [aux_sym_logical_expression_token1] = ACTIONS(705), - [aux_sym_logical_expression_token2] = ACTIONS(705), - [aux_sym_logical_expression_token3] = ACTIONS(705), - [aux_sym_bitwise_expression_token1] = ACTIONS(705), - [aux_sym_bitwise_expression_token2] = ACTIONS(705), - [aux_sym_bitwise_expression_token3] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(707), - [anon_sym_BSLASH] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_DOT_DOT] = ACTIONS(705), - [anon_sym_PLUS_PLUS] = ACTIONS(705), - [anon_sym_DASH_DASH] = ACTIONS(705), - [anon_sym_DOT2] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(705), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(705), - [sym__statement_terminator] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_2_GT] = ACTIONS(615), + [anon_sym_2_GT_GT] = ACTIONS(613), + [anon_sym_3_GT] = ACTIONS(615), + [anon_sym_3_GT_GT] = ACTIONS(613), + [anon_sym_4_GT] = ACTIONS(615), + [anon_sym_4_GT_GT] = ACTIONS(613), + [anon_sym_5_GT] = ACTIONS(615), + [anon_sym_5_GT_GT] = ACTIONS(613), + [anon_sym_6_GT] = ACTIONS(615), + [anon_sym_6_GT_GT] = ACTIONS(613), + [anon_sym_STAR_GT] = ACTIONS(615), + [anon_sym_STAR_GT_GT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_STAR_GT_AMP1] = ACTIONS(613), + [anon_sym_2_GT_AMP1] = ACTIONS(613), + [anon_sym_3_GT_AMP1] = ACTIONS(613), + [anon_sym_4_GT_AMP1] = ACTIONS(613), + [anon_sym_5_GT_AMP1] = ACTIONS(613), + [anon_sym_6_GT_AMP1] = ACTIONS(613), + [anon_sym_STAR_GT_AMP2] = ACTIONS(613), + [anon_sym_1_GT_AMP2] = ACTIONS(613), + [anon_sym_3_GT_AMP2] = ACTIONS(613), + [anon_sym_4_GT_AMP2] = ACTIONS(613), + [anon_sym_5_GT_AMP2] = ACTIONS(613), + [anon_sym_6_GT_AMP2] = ACTIONS(613), + [aux_sym_comparison_operator_token1] = ACTIONS(613), + [aux_sym_comparison_operator_token2] = ACTIONS(613), + [aux_sym_comparison_operator_token3] = ACTIONS(613), + [aux_sym_comparison_operator_token4] = ACTIONS(613), + [aux_sym_comparison_operator_token5] = ACTIONS(613), + [aux_sym_comparison_operator_token6] = ACTIONS(613), + [aux_sym_comparison_operator_token7] = ACTIONS(613), + [aux_sym_comparison_operator_token8] = ACTIONS(613), + [aux_sym_comparison_operator_token9] = ACTIONS(613), + [aux_sym_comparison_operator_token10] = ACTIONS(613), + [aux_sym_comparison_operator_token11] = ACTIONS(613), + [aux_sym_comparison_operator_token12] = ACTIONS(613), + [aux_sym_comparison_operator_token13] = ACTIONS(613), + [aux_sym_comparison_operator_token14] = ACTIONS(613), + [aux_sym_comparison_operator_token15] = ACTIONS(613), + [aux_sym_comparison_operator_token16] = ACTIONS(613), + [aux_sym_comparison_operator_token17] = ACTIONS(613), + [aux_sym_comparison_operator_token18] = ACTIONS(613), + [aux_sym_comparison_operator_token19] = ACTIONS(613), + [aux_sym_comparison_operator_token20] = ACTIONS(613), + [aux_sym_comparison_operator_token21] = ACTIONS(613), + [aux_sym_comparison_operator_token22] = ACTIONS(613), + [aux_sym_comparison_operator_token23] = ACTIONS(613), + [aux_sym_comparison_operator_token24] = ACTIONS(613), + [aux_sym_comparison_operator_token25] = ACTIONS(613), + [aux_sym_comparison_operator_token26] = ACTIONS(613), + [aux_sym_comparison_operator_token27] = ACTIONS(613), + [aux_sym_comparison_operator_token28] = ACTIONS(615), + [aux_sym_comparison_operator_token29] = ACTIONS(613), + [aux_sym_comparison_operator_token30] = ACTIONS(613), + [aux_sym_comparison_operator_token31] = ACTIONS(613), + [aux_sym_comparison_operator_token32] = ACTIONS(613), + [aux_sym_comparison_operator_token33] = ACTIONS(613), + [aux_sym_comparison_operator_token34] = ACTIONS(615), + [aux_sym_comparison_operator_token35] = ACTIONS(613), + [aux_sym_comparison_operator_token36] = ACTIONS(613), + [aux_sym_comparison_operator_token37] = ACTIONS(613), + [aux_sym_comparison_operator_token38] = ACTIONS(613), + [aux_sym_comparison_operator_token39] = ACTIONS(613), + [aux_sym_comparison_operator_token40] = ACTIONS(613), + [aux_sym_comparison_operator_token41] = ACTIONS(613), + [aux_sym_comparison_operator_token42] = ACTIONS(613), + [aux_sym_comparison_operator_token43] = ACTIONS(613), + [aux_sym_comparison_operator_token44] = ACTIONS(613), + [aux_sym_comparison_operator_token45] = ACTIONS(613), + [aux_sym_comparison_operator_token46] = ACTIONS(613), + [aux_sym_comparison_operator_token47] = ACTIONS(613), + [aux_sym_comparison_operator_token48] = ACTIONS(613), + [aux_sym_comparison_operator_token49] = ACTIONS(613), + [aux_sym_comparison_operator_token50] = ACTIONS(613), + [aux_sym_format_operator_token1] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(615), + [aux_sym_logical_expression_token1] = ACTIONS(613), + [aux_sym_logical_expression_token2] = ACTIONS(613), + [aux_sym_logical_expression_token3] = ACTIONS(613), + [aux_sym_bitwise_expression_token1] = ACTIONS(613), + [aux_sym_bitwise_expression_token2] = ACTIONS(613), + [aux_sym_bitwise_expression_token3] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_BSLASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_DOT2] = ACTIONS(615), + [anon_sym_COLON_COLON] = ACTIONS(613), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(613), + [sym__statement_terminator] = ACTIONS(613), }, [148] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_2_GT] = ACTIONS(641), - [anon_sym_2_GT_GT] = ACTIONS(639), - [anon_sym_3_GT] = ACTIONS(641), - [anon_sym_3_GT_GT] = ACTIONS(639), - [anon_sym_4_GT] = ACTIONS(641), - [anon_sym_4_GT_GT] = ACTIONS(639), - [anon_sym_5_GT] = ACTIONS(641), - [anon_sym_5_GT_GT] = ACTIONS(639), - [anon_sym_6_GT] = ACTIONS(641), - [anon_sym_6_GT_GT] = ACTIONS(639), - [anon_sym_STAR_GT] = ACTIONS(641), - [anon_sym_STAR_GT_GT] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_STAR_GT_AMP1] = ACTIONS(639), - [anon_sym_2_GT_AMP1] = ACTIONS(639), - [anon_sym_3_GT_AMP1] = ACTIONS(639), - [anon_sym_4_GT_AMP1] = ACTIONS(639), - [anon_sym_5_GT_AMP1] = ACTIONS(639), - [anon_sym_6_GT_AMP1] = ACTIONS(639), - [anon_sym_STAR_GT_AMP2] = ACTIONS(639), - [anon_sym_1_GT_AMP2] = ACTIONS(639), - [anon_sym_3_GT_AMP2] = ACTIONS(639), - [anon_sym_4_GT_AMP2] = ACTIONS(639), - [anon_sym_5_GT_AMP2] = ACTIONS(639), - [anon_sym_6_GT_AMP2] = ACTIONS(639), - [aux_sym_comparison_operator_token1] = ACTIONS(639), - [aux_sym_comparison_operator_token2] = ACTIONS(639), - [aux_sym_comparison_operator_token3] = ACTIONS(639), - [aux_sym_comparison_operator_token4] = ACTIONS(639), - [aux_sym_comparison_operator_token5] = ACTIONS(639), - [aux_sym_comparison_operator_token6] = ACTIONS(639), - [aux_sym_comparison_operator_token7] = ACTIONS(639), - [aux_sym_comparison_operator_token8] = ACTIONS(639), - [aux_sym_comparison_operator_token9] = ACTIONS(639), - [aux_sym_comparison_operator_token10] = ACTIONS(639), - [aux_sym_comparison_operator_token11] = ACTIONS(639), - [aux_sym_comparison_operator_token12] = ACTIONS(639), - [aux_sym_comparison_operator_token13] = ACTIONS(639), - [aux_sym_comparison_operator_token14] = ACTIONS(639), - [aux_sym_comparison_operator_token15] = ACTIONS(639), - [aux_sym_comparison_operator_token16] = ACTIONS(639), - [aux_sym_comparison_operator_token17] = ACTIONS(639), - [aux_sym_comparison_operator_token18] = ACTIONS(639), - [aux_sym_comparison_operator_token19] = ACTIONS(639), - [aux_sym_comparison_operator_token20] = ACTIONS(639), - [aux_sym_comparison_operator_token21] = ACTIONS(639), - [aux_sym_comparison_operator_token22] = ACTIONS(639), - [aux_sym_comparison_operator_token23] = ACTIONS(639), - [aux_sym_comparison_operator_token24] = ACTIONS(639), - [aux_sym_comparison_operator_token25] = ACTIONS(639), - [aux_sym_comparison_operator_token26] = ACTIONS(639), - [aux_sym_comparison_operator_token27] = ACTIONS(639), - [aux_sym_comparison_operator_token28] = ACTIONS(641), - [aux_sym_comparison_operator_token29] = ACTIONS(639), - [aux_sym_comparison_operator_token30] = ACTIONS(639), - [aux_sym_comparison_operator_token31] = ACTIONS(639), - [aux_sym_comparison_operator_token32] = ACTIONS(639), - [aux_sym_comparison_operator_token33] = ACTIONS(639), - [aux_sym_comparison_operator_token34] = ACTIONS(641), - [aux_sym_comparison_operator_token35] = ACTIONS(639), - [aux_sym_comparison_operator_token36] = ACTIONS(639), - [aux_sym_comparison_operator_token37] = ACTIONS(639), - [aux_sym_comparison_operator_token38] = ACTIONS(639), - [aux_sym_comparison_operator_token39] = ACTIONS(639), - [aux_sym_comparison_operator_token40] = ACTIONS(639), - [aux_sym_comparison_operator_token41] = ACTIONS(639), - [aux_sym_comparison_operator_token42] = ACTIONS(639), - [aux_sym_comparison_operator_token43] = ACTIONS(639), - [aux_sym_comparison_operator_token44] = ACTIONS(639), - [aux_sym_comparison_operator_token45] = ACTIONS(639), - [aux_sym_comparison_operator_token46] = ACTIONS(639), - [aux_sym_comparison_operator_token47] = ACTIONS(639), - [aux_sym_comparison_operator_token48] = ACTIONS(639), - [aux_sym_comparison_operator_token49] = ACTIONS(639), - [aux_sym_comparison_operator_token50] = ACTIONS(639), - [aux_sym_format_operator_token1] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(641), - [aux_sym_logical_expression_token1] = ACTIONS(639), - [aux_sym_logical_expression_token2] = ACTIONS(639), - [aux_sym_logical_expression_token3] = ACTIONS(639), - [aux_sym_bitwise_expression_token1] = ACTIONS(639), - [aux_sym_bitwise_expression_token2] = ACTIONS(639), - [aux_sym_bitwise_expression_token3] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT] = ACTIONS(639), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_DOT2] = ACTIONS(641), - [anon_sym_COLON_COLON] = ACTIONS(639), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(639), - [sym__statement_terminator] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_PLUS_EQ] = ACTIONS(729), + [anon_sym_STAR_EQ] = ACTIONS(729), + [anon_sym_SLASH_EQ] = ACTIONS(729), + [anon_sym_PERCENT_EQ] = ACTIONS(729), + [anon_sym_DASH_EQ] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(731), + [anon_sym_GT_GT] = ACTIONS(729), + [anon_sym_2_GT] = ACTIONS(731), + [anon_sym_2_GT_GT] = ACTIONS(729), + [anon_sym_3_GT] = ACTIONS(731), + [anon_sym_3_GT_GT] = ACTIONS(729), + [anon_sym_4_GT] = ACTIONS(731), + [anon_sym_4_GT_GT] = ACTIONS(729), + [anon_sym_5_GT] = ACTIONS(731), + [anon_sym_5_GT_GT] = ACTIONS(729), + [anon_sym_6_GT] = ACTIONS(731), + [anon_sym_6_GT_GT] = ACTIONS(729), + [anon_sym_STAR_GT] = ACTIONS(731), + [anon_sym_STAR_GT_GT] = ACTIONS(729), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_STAR_GT_AMP1] = ACTIONS(729), + [anon_sym_2_GT_AMP1] = ACTIONS(729), + [anon_sym_3_GT_AMP1] = ACTIONS(729), + [anon_sym_4_GT_AMP1] = ACTIONS(729), + [anon_sym_5_GT_AMP1] = ACTIONS(729), + [anon_sym_6_GT_AMP1] = ACTIONS(729), + [anon_sym_STAR_GT_AMP2] = ACTIONS(729), + [anon_sym_1_GT_AMP2] = ACTIONS(729), + [anon_sym_3_GT_AMP2] = ACTIONS(729), + [anon_sym_4_GT_AMP2] = ACTIONS(729), + [anon_sym_5_GT_AMP2] = ACTIONS(729), + [anon_sym_6_GT_AMP2] = ACTIONS(729), + [aux_sym_comparison_operator_token1] = ACTIONS(729), + [aux_sym_comparison_operator_token2] = ACTIONS(729), + [aux_sym_comparison_operator_token3] = ACTIONS(729), + [aux_sym_comparison_operator_token4] = ACTIONS(729), + [aux_sym_comparison_operator_token5] = ACTIONS(729), + [aux_sym_comparison_operator_token6] = ACTIONS(729), + [aux_sym_comparison_operator_token7] = ACTIONS(729), + [aux_sym_comparison_operator_token8] = ACTIONS(729), + [aux_sym_comparison_operator_token9] = ACTIONS(729), + [aux_sym_comparison_operator_token10] = ACTIONS(729), + [aux_sym_comparison_operator_token11] = ACTIONS(729), + [aux_sym_comparison_operator_token12] = ACTIONS(729), + [aux_sym_comparison_operator_token13] = ACTIONS(729), + [aux_sym_comparison_operator_token14] = ACTIONS(729), + [aux_sym_comparison_operator_token15] = ACTIONS(729), + [aux_sym_comparison_operator_token16] = ACTIONS(729), + [aux_sym_comparison_operator_token17] = ACTIONS(729), + [aux_sym_comparison_operator_token18] = ACTIONS(729), + [aux_sym_comparison_operator_token19] = ACTIONS(729), + [aux_sym_comparison_operator_token20] = ACTIONS(729), + [aux_sym_comparison_operator_token21] = ACTIONS(729), + [aux_sym_comparison_operator_token22] = ACTIONS(729), + [aux_sym_comparison_operator_token23] = ACTIONS(729), + [aux_sym_comparison_operator_token24] = ACTIONS(729), + [aux_sym_comparison_operator_token25] = ACTIONS(729), + [aux_sym_comparison_operator_token26] = ACTIONS(729), + [aux_sym_comparison_operator_token27] = ACTIONS(729), + [aux_sym_comparison_operator_token28] = ACTIONS(731), + [aux_sym_comparison_operator_token29] = ACTIONS(729), + [aux_sym_comparison_operator_token30] = ACTIONS(729), + [aux_sym_comparison_operator_token31] = ACTIONS(729), + [aux_sym_comparison_operator_token32] = ACTIONS(729), + [aux_sym_comparison_operator_token33] = ACTIONS(729), + [aux_sym_comparison_operator_token34] = ACTIONS(731), + [aux_sym_comparison_operator_token35] = ACTIONS(729), + [aux_sym_comparison_operator_token36] = ACTIONS(729), + [aux_sym_comparison_operator_token37] = ACTIONS(729), + [aux_sym_comparison_operator_token38] = ACTIONS(729), + [aux_sym_comparison_operator_token39] = ACTIONS(729), + [aux_sym_comparison_operator_token40] = ACTIONS(729), + [aux_sym_comparison_operator_token41] = ACTIONS(729), + [aux_sym_comparison_operator_token42] = ACTIONS(729), + [aux_sym_comparison_operator_token43] = ACTIONS(729), + [aux_sym_comparison_operator_token44] = ACTIONS(729), + [aux_sym_comparison_operator_token45] = ACTIONS(729), + [aux_sym_comparison_operator_token46] = ACTIONS(729), + [aux_sym_comparison_operator_token47] = ACTIONS(729), + [aux_sym_comparison_operator_token48] = ACTIONS(729), + [aux_sym_comparison_operator_token49] = ACTIONS(729), + [aux_sym_comparison_operator_token50] = ACTIONS(729), + [aux_sym_format_operator_token1] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_COMMA] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_PERCENT] = ACTIONS(731), + [aux_sym_logical_expression_token1] = ACTIONS(729), + [aux_sym_logical_expression_token2] = ACTIONS(729), + [aux_sym_logical_expression_token3] = ACTIONS(729), + [aux_sym_bitwise_expression_token1] = ACTIONS(729), + [aux_sym_bitwise_expression_token2] = ACTIONS(729), + [aux_sym_bitwise_expression_token3] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(731), + [anon_sym_SLASH] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DOT2] = ACTIONS(731), + [anon_sym_COLON_COLON] = ACTIONS(729), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(729), + [sym__statement_terminator] = ACTIONS(729), }, [149] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_BANG_EQ] = ACTIONS(631), - [anon_sym_PLUS_EQ] = ACTIONS(631), - [anon_sym_STAR_EQ] = ACTIONS(631), - [anon_sym_SLASH_EQ] = ACTIONS(631), - [anon_sym_PERCENT_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(631), - [anon_sym_2_GT] = ACTIONS(633), - [anon_sym_2_GT_GT] = ACTIONS(631), - [anon_sym_3_GT] = ACTIONS(633), - [anon_sym_3_GT_GT] = ACTIONS(631), - [anon_sym_4_GT] = ACTIONS(633), - [anon_sym_4_GT_GT] = ACTIONS(631), - [anon_sym_5_GT] = ACTIONS(633), - [anon_sym_5_GT_GT] = ACTIONS(631), - [anon_sym_6_GT] = ACTIONS(633), - [anon_sym_6_GT_GT] = ACTIONS(631), - [anon_sym_STAR_GT] = ACTIONS(633), - [anon_sym_STAR_GT_GT] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_STAR_GT_AMP1] = ACTIONS(631), - [anon_sym_2_GT_AMP1] = ACTIONS(631), - [anon_sym_3_GT_AMP1] = ACTIONS(631), - [anon_sym_4_GT_AMP1] = ACTIONS(631), - [anon_sym_5_GT_AMP1] = ACTIONS(631), - [anon_sym_6_GT_AMP1] = ACTIONS(631), - [anon_sym_STAR_GT_AMP2] = ACTIONS(631), - [anon_sym_1_GT_AMP2] = ACTIONS(631), - [anon_sym_3_GT_AMP2] = ACTIONS(631), - [anon_sym_4_GT_AMP2] = ACTIONS(631), - [anon_sym_5_GT_AMP2] = ACTIONS(631), - [anon_sym_6_GT_AMP2] = ACTIONS(631), - [aux_sym_comparison_operator_token1] = ACTIONS(631), - [aux_sym_comparison_operator_token2] = ACTIONS(631), - [aux_sym_comparison_operator_token3] = ACTIONS(631), - [aux_sym_comparison_operator_token4] = ACTIONS(631), - [aux_sym_comparison_operator_token5] = ACTIONS(631), - [aux_sym_comparison_operator_token6] = ACTIONS(631), - [aux_sym_comparison_operator_token7] = ACTIONS(631), - [aux_sym_comparison_operator_token8] = ACTIONS(631), - [aux_sym_comparison_operator_token9] = ACTIONS(631), - [aux_sym_comparison_operator_token10] = ACTIONS(631), - [aux_sym_comparison_operator_token11] = ACTIONS(631), - [aux_sym_comparison_operator_token12] = ACTIONS(631), - [aux_sym_comparison_operator_token13] = ACTIONS(631), - [aux_sym_comparison_operator_token14] = ACTIONS(631), - [aux_sym_comparison_operator_token15] = ACTIONS(631), - [aux_sym_comparison_operator_token16] = ACTIONS(631), - [aux_sym_comparison_operator_token17] = ACTIONS(631), - [aux_sym_comparison_operator_token18] = ACTIONS(631), - [aux_sym_comparison_operator_token19] = ACTIONS(631), - [aux_sym_comparison_operator_token20] = ACTIONS(631), - [aux_sym_comparison_operator_token21] = ACTIONS(631), - [aux_sym_comparison_operator_token22] = ACTIONS(631), - [aux_sym_comparison_operator_token23] = ACTIONS(631), - [aux_sym_comparison_operator_token24] = ACTIONS(631), - [aux_sym_comparison_operator_token25] = ACTIONS(631), - [aux_sym_comparison_operator_token26] = ACTIONS(631), - [aux_sym_comparison_operator_token27] = ACTIONS(631), - [aux_sym_comparison_operator_token28] = ACTIONS(633), - [aux_sym_comparison_operator_token29] = ACTIONS(631), - [aux_sym_comparison_operator_token30] = ACTIONS(631), - [aux_sym_comparison_operator_token31] = ACTIONS(631), - [aux_sym_comparison_operator_token32] = ACTIONS(631), - [aux_sym_comparison_operator_token33] = ACTIONS(631), - [aux_sym_comparison_operator_token34] = ACTIONS(633), - [aux_sym_comparison_operator_token35] = ACTIONS(631), - [aux_sym_comparison_operator_token36] = ACTIONS(631), - [aux_sym_comparison_operator_token37] = ACTIONS(631), - [aux_sym_comparison_operator_token38] = ACTIONS(631), - [aux_sym_comparison_operator_token39] = ACTIONS(631), - [aux_sym_comparison_operator_token40] = ACTIONS(631), - [aux_sym_comparison_operator_token41] = ACTIONS(631), - [aux_sym_comparison_operator_token42] = ACTIONS(631), - [aux_sym_comparison_operator_token43] = ACTIONS(631), - [aux_sym_comparison_operator_token44] = ACTIONS(631), - [aux_sym_comparison_operator_token45] = ACTIONS(631), - [aux_sym_comparison_operator_token46] = ACTIONS(631), - [aux_sym_comparison_operator_token47] = ACTIONS(631), - [aux_sym_comparison_operator_token48] = ACTIONS(631), - [aux_sym_comparison_operator_token49] = ACTIONS(631), - [aux_sym_comparison_operator_token50] = ACTIONS(631), - [aux_sym_format_operator_token1] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(633), - [aux_sym_logical_expression_token1] = ACTIONS(631), - [aux_sym_logical_expression_token2] = ACTIONS(631), - [aux_sym_logical_expression_token3] = ACTIONS(631), - [aux_sym_bitwise_expression_token1] = ACTIONS(631), - [aux_sym_bitwise_expression_token2] = ACTIONS(631), - [aux_sym_bitwise_expression_token3] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_BSLASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT] = ACTIONS(631), - [anon_sym_PLUS_PLUS] = ACTIONS(631), - [anon_sym_DASH_DASH] = ACTIONS(631), - [anon_sym_DOT2] = ACTIONS(633), - [anon_sym_COLON_COLON] = ACTIONS(631), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(631), - [sym__statement_terminator] = ACTIONS(631), - }, - [150] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(683), + [anon_sym_PLUS_EQ] = ACTIONS(683), + [anon_sym_STAR_EQ] = ACTIONS(683), + [anon_sym_SLASH_EQ] = ACTIONS(683), + [anon_sym_PERCENT_EQ] = ACTIONS(683), + [anon_sym_DASH_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_2_GT] = ACTIONS(685), + [anon_sym_2_GT_GT] = ACTIONS(683), + [anon_sym_3_GT] = ACTIONS(685), + [anon_sym_3_GT_GT] = ACTIONS(683), + [anon_sym_4_GT] = ACTIONS(685), + [anon_sym_4_GT_GT] = ACTIONS(683), + [anon_sym_5_GT] = ACTIONS(685), + [anon_sym_5_GT_GT] = ACTIONS(683), + [anon_sym_6_GT] = ACTIONS(685), + [anon_sym_6_GT_GT] = ACTIONS(683), + [anon_sym_STAR_GT] = ACTIONS(685), + [anon_sym_STAR_GT_GT] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_STAR_GT_AMP1] = ACTIONS(683), + [anon_sym_2_GT_AMP1] = ACTIONS(683), + [anon_sym_3_GT_AMP1] = ACTIONS(683), + [anon_sym_4_GT_AMP1] = ACTIONS(683), + [anon_sym_5_GT_AMP1] = ACTIONS(683), + [anon_sym_6_GT_AMP1] = ACTIONS(683), + [anon_sym_STAR_GT_AMP2] = ACTIONS(683), + [anon_sym_1_GT_AMP2] = ACTIONS(683), + [anon_sym_3_GT_AMP2] = ACTIONS(683), + [anon_sym_4_GT_AMP2] = ACTIONS(683), + [anon_sym_5_GT_AMP2] = ACTIONS(683), + [anon_sym_6_GT_AMP2] = ACTIONS(683), + [aux_sym_comparison_operator_token1] = ACTIONS(683), + [aux_sym_comparison_operator_token2] = ACTIONS(683), + [aux_sym_comparison_operator_token3] = ACTIONS(683), + [aux_sym_comparison_operator_token4] = ACTIONS(683), + [aux_sym_comparison_operator_token5] = ACTIONS(683), + [aux_sym_comparison_operator_token6] = ACTIONS(683), + [aux_sym_comparison_operator_token7] = ACTIONS(683), + [aux_sym_comparison_operator_token8] = ACTIONS(683), + [aux_sym_comparison_operator_token9] = ACTIONS(683), + [aux_sym_comparison_operator_token10] = ACTIONS(683), + [aux_sym_comparison_operator_token11] = ACTIONS(683), + [aux_sym_comparison_operator_token12] = ACTIONS(683), + [aux_sym_comparison_operator_token13] = ACTIONS(683), + [aux_sym_comparison_operator_token14] = ACTIONS(683), + [aux_sym_comparison_operator_token15] = ACTIONS(683), + [aux_sym_comparison_operator_token16] = ACTIONS(683), + [aux_sym_comparison_operator_token17] = ACTIONS(683), + [aux_sym_comparison_operator_token18] = ACTIONS(683), + [aux_sym_comparison_operator_token19] = ACTIONS(683), + [aux_sym_comparison_operator_token20] = ACTIONS(683), + [aux_sym_comparison_operator_token21] = ACTIONS(683), + [aux_sym_comparison_operator_token22] = ACTIONS(683), + [aux_sym_comparison_operator_token23] = ACTIONS(683), + [aux_sym_comparison_operator_token24] = ACTIONS(683), + [aux_sym_comparison_operator_token25] = ACTIONS(683), + [aux_sym_comparison_operator_token26] = ACTIONS(683), + [aux_sym_comparison_operator_token27] = ACTIONS(683), + [aux_sym_comparison_operator_token28] = ACTIONS(685), + [aux_sym_comparison_operator_token29] = ACTIONS(683), + [aux_sym_comparison_operator_token30] = ACTIONS(683), + [aux_sym_comparison_operator_token31] = ACTIONS(683), + [aux_sym_comparison_operator_token32] = ACTIONS(683), + [aux_sym_comparison_operator_token33] = ACTIONS(683), + [aux_sym_comparison_operator_token34] = ACTIONS(685), + [aux_sym_comparison_operator_token35] = ACTIONS(683), + [aux_sym_comparison_operator_token36] = ACTIONS(683), + [aux_sym_comparison_operator_token37] = ACTIONS(683), + [aux_sym_comparison_operator_token38] = ACTIONS(683), + [aux_sym_comparison_operator_token39] = ACTIONS(683), + [aux_sym_comparison_operator_token40] = ACTIONS(683), + [aux_sym_comparison_operator_token41] = ACTIONS(683), + [aux_sym_comparison_operator_token42] = ACTIONS(683), + [aux_sym_comparison_operator_token43] = ACTIONS(683), + [aux_sym_comparison_operator_token44] = ACTIONS(683), + [aux_sym_comparison_operator_token45] = ACTIONS(683), + [aux_sym_comparison_operator_token46] = ACTIONS(683), + [aux_sym_comparison_operator_token47] = ACTIONS(683), + [aux_sym_comparison_operator_token48] = ACTIONS(683), + [aux_sym_comparison_operator_token49] = ACTIONS(683), + [aux_sym_comparison_operator_token50] = ACTIONS(683), + [aux_sym_format_operator_token1] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_PERCENT] = ACTIONS(685), + [aux_sym_logical_expression_token1] = ACTIONS(683), + [aux_sym_logical_expression_token2] = ACTIONS(683), + [aux_sym_logical_expression_token3] = ACTIONS(683), + [aux_sym_bitwise_expression_token1] = ACTIONS(683), + [aux_sym_bitwise_expression_token2] = ACTIONS(683), + [aux_sym_bitwise_expression_token3] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_SLASH] = ACTIONS(685), + [anon_sym_BSLASH] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(685), + [anon_sym_DOT_DOT] = ACTIONS(683), + [anon_sym_PLUS_PLUS] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DOT2] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(683), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(683), + [sym__statement_terminator] = ACTIONS(683), + }, + [150] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(735), [anon_sym_DASH_DASH] = ACTIONS(737), [anon_sym_DOT2] = ACTIONS(739), [anon_sym_COLON_COLON] = ACTIONS(741), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), - [sym__statement_terminator] = ACTIONS(651), + [sym__statement_terminator] = ACTIONS(695), }, [151] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_2_GT] = ACTIONS(619), + [anon_sym_2_GT_GT] = ACTIONS(617), + [anon_sym_3_GT] = ACTIONS(619), + [anon_sym_3_GT_GT] = ACTIONS(617), + [anon_sym_4_GT] = ACTIONS(619), + [anon_sym_4_GT_GT] = ACTIONS(617), + [anon_sym_5_GT] = ACTIONS(619), + [anon_sym_5_GT_GT] = ACTIONS(617), + [anon_sym_6_GT] = ACTIONS(619), + [anon_sym_6_GT_GT] = ACTIONS(617), + [anon_sym_STAR_GT] = ACTIONS(619), + [anon_sym_STAR_GT_GT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_STAR_GT_AMP1] = ACTIONS(617), + [anon_sym_2_GT_AMP1] = ACTIONS(617), + [anon_sym_3_GT_AMP1] = ACTIONS(617), + [anon_sym_4_GT_AMP1] = ACTIONS(617), + [anon_sym_5_GT_AMP1] = ACTIONS(617), + [anon_sym_6_GT_AMP1] = ACTIONS(617), + [anon_sym_STAR_GT_AMP2] = ACTIONS(617), + [anon_sym_1_GT_AMP2] = ACTIONS(617), + [anon_sym_3_GT_AMP2] = ACTIONS(617), + [anon_sym_4_GT_AMP2] = ACTIONS(617), + [anon_sym_5_GT_AMP2] = ACTIONS(617), + [anon_sym_6_GT_AMP2] = ACTIONS(617), + [aux_sym_comparison_operator_token1] = ACTIONS(617), + [aux_sym_comparison_operator_token2] = ACTIONS(617), + [aux_sym_comparison_operator_token3] = ACTIONS(617), + [aux_sym_comparison_operator_token4] = ACTIONS(617), + [aux_sym_comparison_operator_token5] = ACTIONS(617), + [aux_sym_comparison_operator_token6] = ACTIONS(617), + [aux_sym_comparison_operator_token7] = ACTIONS(617), + [aux_sym_comparison_operator_token8] = ACTIONS(617), + [aux_sym_comparison_operator_token9] = ACTIONS(617), + [aux_sym_comparison_operator_token10] = ACTIONS(617), + [aux_sym_comparison_operator_token11] = ACTIONS(617), + [aux_sym_comparison_operator_token12] = ACTIONS(617), + [aux_sym_comparison_operator_token13] = ACTIONS(617), + [aux_sym_comparison_operator_token14] = ACTIONS(617), + [aux_sym_comparison_operator_token15] = ACTIONS(617), + [aux_sym_comparison_operator_token16] = ACTIONS(617), + [aux_sym_comparison_operator_token17] = ACTIONS(617), + [aux_sym_comparison_operator_token18] = ACTIONS(617), + [aux_sym_comparison_operator_token19] = ACTIONS(617), + [aux_sym_comparison_operator_token20] = ACTIONS(617), + [aux_sym_comparison_operator_token21] = ACTIONS(617), + [aux_sym_comparison_operator_token22] = ACTIONS(617), + [aux_sym_comparison_operator_token23] = ACTIONS(617), + [aux_sym_comparison_operator_token24] = ACTIONS(617), + [aux_sym_comparison_operator_token25] = ACTIONS(617), + [aux_sym_comparison_operator_token26] = ACTIONS(617), + [aux_sym_comparison_operator_token27] = ACTIONS(617), + [aux_sym_comparison_operator_token28] = ACTIONS(619), + [aux_sym_comparison_operator_token29] = ACTIONS(617), + [aux_sym_comparison_operator_token30] = ACTIONS(617), + [aux_sym_comparison_operator_token31] = ACTIONS(617), + [aux_sym_comparison_operator_token32] = ACTIONS(617), + [aux_sym_comparison_operator_token33] = ACTIONS(617), + [aux_sym_comparison_operator_token34] = ACTIONS(619), + [aux_sym_comparison_operator_token35] = ACTIONS(617), + [aux_sym_comparison_operator_token36] = ACTIONS(617), + [aux_sym_comparison_operator_token37] = ACTIONS(617), + [aux_sym_comparison_operator_token38] = ACTIONS(617), + [aux_sym_comparison_operator_token39] = ACTIONS(617), + [aux_sym_comparison_operator_token40] = ACTIONS(617), + [aux_sym_comparison_operator_token41] = ACTIONS(617), + [aux_sym_comparison_operator_token42] = ACTIONS(617), + [aux_sym_comparison_operator_token43] = ACTIONS(617), + [aux_sym_comparison_operator_token44] = ACTIONS(617), + [aux_sym_comparison_operator_token45] = ACTIONS(617), + [aux_sym_comparison_operator_token46] = ACTIONS(617), + [aux_sym_comparison_operator_token47] = ACTIONS(617), + [aux_sym_comparison_operator_token48] = ACTIONS(617), + [aux_sym_comparison_operator_token49] = ACTIONS(617), + [aux_sym_comparison_operator_token50] = ACTIONS(617), + [aux_sym_format_operator_token1] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(619), + [aux_sym_logical_expression_token1] = ACTIONS(617), + [aux_sym_logical_expression_token2] = ACTIONS(617), + [aux_sym_logical_expression_token3] = ACTIONS(617), + [aux_sym_bitwise_expression_token1] = ACTIONS(617), + [aux_sym_bitwise_expression_token2] = ACTIONS(617), + [aux_sym_bitwise_expression_token3] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_BSLASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_DOT2] = ACTIONS(619), + [anon_sym_COLON_COLON] = ACTIONS(617), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(617), + [sym__statement_terminator] = ACTIONS(617), + }, + [152] = { + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [anon_sym_PLUS_EQ] = ACTIONS(721), + [anon_sym_STAR_EQ] = ACTIONS(721), + [anon_sym_SLASH_EQ] = ACTIONS(721), + [anon_sym_PERCENT_EQ] = ACTIONS(721), + [anon_sym_DASH_EQ] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(723), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_2_GT] = ACTIONS(723), + [anon_sym_2_GT_GT] = ACTIONS(721), + [anon_sym_3_GT] = ACTIONS(723), + [anon_sym_3_GT_GT] = ACTIONS(721), + [anon_sym_4_GT] = ACTIONS(723), + [anon_sym_4_GT_GT] = ACTIONS(721), + [anon_sym_5_GT] = ACTIONS(723), + [anon_sym_5_GT_GT] = ACTIONS(721), + [anon_sym_6_GT] = ACTIONS(723), + [anon_sym_6_GT_GT] = ACTIONS(721), + [anon_sym_STAR_GT] = ACTIONS(723), + [anon_sym_STAR_GT_GT] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_STAR_GT_AMP1] = ACTIONS(721), + [anon_sym_2_GT_AMP1] = ACTIONS(721), + [anon_sym_3_GT_AMP1] = ACTIONS(721), + [anon_sym_4_GT_AMP1] = ACTIONS(721), + [anon_sym_5_GT_AMP1] = ACTIONS(721), + [anon_sym_6_GT_AMP1] = ACTIONS(721), + [anon_sym_STAR_GT_AMP2] = ACTIONS(721), + [anon_sym_1_GT_AMP2] = ACTIONS(721), + [anon_sym_3_GT_AMP2] = ACTIONS(721), + [anon_sym_4_GT_AMP2] = ACTIONS(721), + [anon_sym_5_GT_AMP2] = ACTIONS(721), + [anon_sym_6_GT_AMP2] = ACTIONS(721), + [aux_sym_comparison_operator_token1] = ACTIONS(721), + [aux_sym_comparison_operator_token2] = ACTIONS(721), + [aux_sym_comparison_operator_token3] = ACTIONS(721), + [aux_sym_comparison_operator_token4] = ACTIONS(721), + [aux_sym_comparison_operator_token5] = ACTIONS(721), + [aux_sym_comparison_operator_token6] = ACTIONS(721), + [aux_sym_comparison_operator_token7] = ACTIONS(721), + [aux_sym_comparison_operator_token8] = ACTIONS(721), + [aux_sym_comparison_operator_token9] = ACTIONS(721), + [aux_sym_comparison_operator_token10] = ACTIONS(721), + [aux_sym_comparison_operator_token11] = ACTIONS(721), + [aux_sym_comparison_operator_token12] = ACTIONS(721), + [aux_sym_comparison_operator_token13] = ACTIONS(721), + [aux_sym_comparison_operator_token14] = ACTIONS(721), + [aux_sym_comparison_operator_token15] = ACTIONS(721), + [aux_sym_comparison_operator_token16] = ACTIONS(721), + [aux_sym_comparison_operator_token17] = ACTIONS(721), + [aux_sym_comparison_operator_token18] = ACTIONS(721), + [aux_sym_comparison_operator_token19] = ACTIONS(721), + [aux_sym_comparison_operator_token20] = ACTIONS(721), + [aux_sym_comparison_operator_token21] = ACTIONS(721), + [aux_sym_comparison_operator_token22] = ACTIONS(721), + [aux_sym_comparison_operator_token23] = ACTIONS(721), + [aux_sym_comparison_operator_token24] = ACTIONS(721), + [aux_sym_comparison_operator_token25] = ACTIONS(721), + [aux_sym_comparison_operator_token26] = ACTIONS(721), + [aux_sym_comparison_operator_token27] = ACTIONS(721), + [aux_sym_comparison_operator_token28] = ACTIONS(723), + [aux_sym_comparison_operator_token29] = ACTIONS(721), + [aux_sym_comparison_operator_token30] = ACTIONS(721), + [aux_sym_comparison_operator_token31] = ACTIONS(721), + [aux_sym_comparison_operator_token32] = ACTIONS(721), + [aux_sym_comparison_operator_token33] = ACTIONS(721), + [aux_sym_comparison_operator_token34] = ACTIONS(723), + [aux_sym_comparison_operator_token35] = ACTIONS(721), + [aux_sym_comparison_operator_token36] = ACTIONS(721), + [aux_sym_comparison_operator_token37] = ACTIONS(721), + [aux_sym_comparison_operator_token38] = ACTIONS(721), + [aux_sym_comparison_operator_token39] = ACTIONS(721), + [aux_sym_comparison_operator_token40] = ACTIONS(721), + [aux_sym_comparison_operator_token41] = ACTIONS(721), + [aux_sym_comparison_operator_token42] = ACTIONS(721), + [aux_sym_comparison_operator_token43] = ACTIONS(721), + [aux_sym_comparison_operator_token44] = ACTIONS(721), + [aux_sym_comparison_operator_token45] = ACTIONS(721), + [aux_sym_comparison_operator_token46] = ACTIONS(721), + [aux_sym_comparison_operator_token47] = ACTIONS(721), + [aux_sym_comparison_operator_token48] = ACTIONS(721), + [aux_sym_comparison_operator_token49] = ACTIONS(721), + [aux_sym_comparison_operator_token50] = ACTIONS(721), + [aux_sym_format_operator_token1] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_PERCENT] = ACTIONS(723), + [aux_sym_logical_expression_token1] = ACTIONS(721), + [aux_sym_logical_expression_token2] = ACTIONS(721), + [aux_sym_logical_expression_token3] = ACTIONS(721), + [aux_sym_bitwise_expression_token1] = ACTIONS(721), + [aux_sym_bitwise_expression_token2] = ACTIONS(721), + [aux_sym_bitwise_expression_token3] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_SLASH] = ACTIONS(723), + [anon_sym_BSLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_DASH_DASH] = ACTIONS(721), + [anon_sym_DOT2] = ACTIONS(723), + [anon_sym_COLON_COLON] = ACTIONS(721), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(721), + [sym__statement_terminator] = ACTIONS(721), + }, + [153] = { [sym_comment] = ACTIONS(81), [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), [anon_sym_PLUS_PLUS] = ACTIONS(747), [anon_sym_DASH_DASH] = ACTIONS(749), [anon_sym_DOT2] = ACTIONS(751), [anon_sym_COLON_COLON] = ACTIONS(753), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), }, - [152] = { + [154] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(675), - [anon_sym_EQ] = ACTIONS(675), - [anon_sym_BANG_EQ] = ACTIONS(675), - [anon_sym_PLUS_EQ] = ACTIONS(675), - [anon_sym_STAR_EQ] = ACTIONS(675), - [anon_sym_SLASH_EQ] = ACTIONS(675), - [anon_sym_PERCENT_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_2_GT] = ACTIONS(677), - [anon_sym_2_GT_GT] = ACTIONS(675), - [anon_sym_3_GT] = ACTIONS(677), - [anon_sym_3_GT_GT] = ACTIONS(675), - [anon_sym_4_GT] = ACTIONS(677), - [anon_sym_4_GT_GT] = ACTIONS(675), - [anon_sym_5_GT] = ACTIONS(677), - [anon_sym_5_GT_GT] = ACTIONS(675), - [anon_sym_6_GT] = ACTIONS(677), - [anon_sym_6_GT_GT] = ACTIONS(675), - [anon_sym_STAR_GT] = ACTIONS(677), - [anon_sym_STAR_GT_GT] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_STAR_GT_AMP1] = ACTIONS(675), - [anon_sym_2_GT_AMP1] = ACTIONS(675), - [anon_sym_3_GT_AMP1] = ACTIONS(675), - [anon_sym_4_GT_AMP1] = ACTIONS(675), - [anon_sym_5_GT_AMP1] = ACTIONS(675), - [anon_sym_6_GT_AMP1] = ACTIONS(675), - [anon_sym_STAR_GT_AMP2] = ACTIONS(675), - [anon_sym_1_GT_AMP2] = ACTIONS(675), - [anon_sym_3_GT_AMP2] = ACTIONS(675), - [anon_sym_4_GT_AMP2] = ACTIONS(675), - [anon_sym_5_GT_AMP2] = ACTIONS(675), - [anon_sym_6_GT_AMP2] = ACTIONS(675), - [aux_sym_comparison_operator_token1] = ACTIONS(675), - [aux_sym_comparison_operator_token2] = ACTIONS(675), - [aux_sym_comparison_operator_token3] = ACTIONS(675), - [aux_sym_comparison_operator_token4] = ACTIONS(675), - [aux_sym_comparison_operator_token5] = ACTIONS(675), - [aux_sym_comparison_operator_token6] = ACTIONS(675), - [aux_sym_comparison_operator_token7] = ACTIONS(675), - [aux_sym_comparison_operator_token8] = ACTIONS(675), - [aux_sym_comparison_operator_token9] = ACTIONS(675), - [aux_sym_comparison_operator_token10] = ACTIONS(675), - [aux_sym_comparison_operator_token11] = ACTIONS(675), - [aux_sym_comparison_operator_token12] = ACTIONS(675), - [aux_sym_comparison_operator_token13] = ACTIONS(675), - [aux_sym_comparison_operator_token14] = ACTIONS(675), - [aux_sym_comparison_operator_token15] = ACTIONS(675), - [aux_sym_comparison_operator_token16] = ACTIONS(675), - [aux_sym_comparison_operator_token17] = ACTIONS(675), - [aux_sym_comparison_operator_token18] = ACTIONS(675), - [aux_sym_comparison_operator_token19] = ACTIONS(675), - [aux_sym_comparison_operator_token20] = ACTIONS(675), - [aux_sym_comparison_operator_token21] = ACTIONS(675), - [aux_sym_comparison_operator_token22] = ACTIONS(675), - [aux_sym_comparison_operator_token23] = ACTIONS(675), - [aux_sym_comparison_operator_token24] = ACTIONS(675), - [aux_sym_comparison_operator_token25] = ACTIONS(675), - [aux_sym_comparison_operator_token26] = ACTIONS(675), - [aux_sym_comparison_operator_token27] = ACTIONS(675), - [aux_sym_comparison_operator_token28] = ACTIONS(677), - [aux_sym_comparison_operator_token29] = ACTIONS(675), - [aux_sym_comparison_operator_token30] = ACTIONS(675), - [aux_sym_comparison_operator_token31] = ACTIONS(675), - [aux_sym_comparison_operator_token32] = ACTIONS(675), - [aux_sym_comparison_operator_token33] = ACTIONS(675), - [aux_sym_comparison_operator_token34] = ACTIONS(677), - [aux_sym_comparison_operator_token35] = ACTIONS(675), - [aux_sym_comparison_operator_token36] = ACTIONS(675), - [aux_sym_comparison_operator_token37] = ACTIONS(675), - [aux_sym_comparison_operator_token38] = ACTIONS(675), - [aux_sym_comparison_operator_token39] = ACTIONS(675), - [aux_sym_comparison_operator_token40] = ACTIONS(675), - [aux_sym_comparison_operator_token41] = ACTIONS(675), - [aux_sym_comparison_operator_token42] = ACTIONS(675), - [aux_sym_comparison_operator_token43] = ACTIONS(675), - [aux_sym_comparison_operator_token44] = ACTIONS(675), - [aux_sym_comparison_operator_token45] = ACTIONS(675), - [aux_sym_comparison_operator_token46] = ACTIONS(675), - [aux_sym_comparison_operator_token47] = ACTIONS(675), - [aux_sym_comparison_operator_token48] = ACTIONS(675), - [aux_sym_comparison_operator_token49] = ACTIONS(675), - [aux_sym_comparison_operator_token50] = ACTIONS(675), - [aux_sym_format_operator_token1] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(675), - [anon_sym_COMMA] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_PERCENT] = ACTIONS(677), - [aux_sym_logical_expression_token1] = ACTIONS(675), - [aux_sym_logical_expression_token2] = ACTIONS(675), - [aux_sym_logical_expression_token3] = ACTIONS(675), - [aux_sym_bitwise_expression_token1] = ACTIONS(675), - [aux_sym_bitwise_expression_token2] = ACTIONS(675), - [aux_sym_bitwise_expression_token3] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(677), - [anon_sym_BSLASH] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_DOT_DOT] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_DOT2] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(675), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(675), - [sym__statement_terminator] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_2_GT] = ACTIONS(607), + [anon_sym_2_GT_GT] = ACTIONS(605), + [anon_sym_3_GT] = ACTIONS(607), + [anon_sym_3_GT_GT] = ACTIONS(605), + [anon_sym_4_GT] = ACTIONS(607), + [anon_sym_4_GT_GT] = ACTIONS(605), + [anon_sym_5_GT] = ACTIONS(607), + [anon_sym_5_GT_GT] = ACTIONS(605), + [anon_sym_6_GT] = ACTIONS(607), + [anon_sym_6_GT_GT] = ACTIONS(605), + [anon_sym_STAR_GT] = ACTIONS(607), + [anon_sym_STAR_GT_GT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_STAR_GT_AMP1] = ACTIONS(605), + [anon_sym_2_GT_AMP1] = ACTIONS(605), + [anon_sym_3_GT_AMP1] = ACTIONS(605), + [anon_sym_4_GT_AMP1] = ACTIONS(605), + [anon_sym_5_GT_AMP1] = ACTIONS(605), + [anon_sym_6_GT_AMP1] = ACTIONS(605), + [anon_sym_STAR_GT_AMP2] = ACTIONS(605), + [anon_sym_1_GT_AMP2] = ACTIONS(605), + [anon_sym_3_GT_AMP2] = ACTIONS(605), + [anon_sym_4_GT_AMP2] = ACTIONS(605), + [anon_sym_5_GT_AMP2] = ACTIONS(605), + [anon_sym_6_GT_AMP2] = ACTIONS(605), + [aux_sym_comparison_operator_token1] = ACTIONS(605), + [aux_sym_comparison_operator_token2] = ACTIONS(605), + [aux_sym_comparison_operator_token3] = ACTIONS(605), + [aux_sym_comparison_operator_token4] = ACTIONS(605), + [aux_sym_comparison_operator_token5] = ACTIONS(605), + [aux_sym_comparison_operator_token6] = ACTIONS(605), + [aux_sym_comparison_operator_token7] = ACTIONS(605), + [aux_sym_comparison_operator_token8] = ACTIONS(605), + [aux_sym_comparison_operator_token9] = ACTIONS(605), + [aux_sym_comparison_operator_token10] = ACTIONS(605), + [aux_sym_comparison_operator_token11] = ACTIONS(605), + [aux_sym_comparison_operator_token12] = ACTIONS(605), + [aux_sym_comparison_operator_token13] = ACTIONS(605), + [aux_sym_comparison_operator_token14] = ACTIONS(605), + [aux_sym_comparison_operator_token15] = ACTIONS(605), + [aux_sym_comparison_operator_token16] = ACTIONS(605), + [aux_sym_comparison_operator_token17] = ACTIONS(605), + [aux_sym_comparison_operator_token18] = ACTIONS(605), + [aux_sym_comparison_operator_token19] = ACTIONS(605), + [aux_sym_comparison_operator_token20] = ACTIONS(605), + [aux_sym_comparison_operator_token21] = ACTIONS(605), + [aux_sym_comparison_operator_token22] = ACTIONS(605), + [aux_sym_comparison_operator_token23] = ACTIONS(605), + [aux_sym_comparison_operator_token24] = ACTIONS(605), + [aux_sym_comparison_operator_token25] = ACTIONS(605), + [aux_sym_comparison_operator_token26] = ACTIONS(605), + [aux_sym_comparison_operator_token27] = ACTIONS(605), + [aux_sym_comparison_operator_token28] = ACTIONS(607), + [aux_sym_comparison_operator_token29] = ACTIONS(605), + [aux_sym_comparison_operator_token30] = ACTIONS(605), + [aux_sym_comparison_operator_token31] = ACTIONS(605), + [aux_sym_comparison_operator_token32] = ACTIONS(605), + [aux_sym_comparison_operator_token33] = ACTIONS(605), + [aux_sym_comparison_operator_token34] = ACTIONS(607), + [aux_sym_comparison_operator_token35] = ACTIONS(605), + [aux_sym_comparison_operator_token36] = ACTIONS(605), + [aux_sym_comparison_operator_token37] = ACTIONS(605), + [aux_sym_comparison_operator_token38] = ACTIONS(605), + [aux_sym_comparison_operator_token39] = ACTIONS(605), + [aux_sym_comparison_operator_token40] = ACTIONS(605), + [aux_sym_comparison_operator_token41] = ACTIONS(605), + [aux_sym_comparison_operator_token42] = ACTIONS(605), + [aux_sym_comparison_operator_token43] = ACTIONS(605), + [aux_sym_comparison_operator_token44] = ACTIONS(605), + [aux_sym_comparison_operator_token45] = ACTIONS(605), + [aux_sym_comparison_operator_token46] = ACTIONS(605), + [aux_sym_comparison_operator_token47] = ACTIONS(605), + [aux_sym_comparison_operator_token48] = ACTIONS(605), + [aux_sym_comparison_operator_token49] = ACTIONS(605), + [aux_sym_comparison_operator_token50] = ACTIONS(605), + [aux_sym_format_operator_token1] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(607), + [aux_sym_logical_expression_token1] = ACTIONS(605), + [aux_sym_logical_expression_token2] = ACTIONS(605), + [aux_sym_logical_expression_token3] = ACTIONS(605), + [aux_sym_bitwise_expression_token1] = ACTIONS(605), + [aux_sym_bitwise_expression_token2] = ACTIONS(605), + [aux_sym_bitwise_expression_token3] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_BSLASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_DOT2] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(605), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(605), + [sym__statement_terminator] = ACTIONS(605), }, - [153] = { + [155] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_2_GT] = ACTIONS(611), - [anon_sym_2_GT_GT] = ACTIONS(609), - [anon_sym_3_GT] = ACTIONS(611), - [anon_sym_3_GT_GT] = ACTIONS(609), - [anon_sym_4_GT] = ACTIONS(611), - [anon_sym_4_GT_GT] = ACTIONS(609), - [anon_sym_5_GT] = ACTIONS(611), - [anon_sym_5_GT_GT] = ACTIONS(609), - [anon_sym_6_GT] = ACTIONS(611), - [anon_sym_6_GT_GT] = ACTIONS(609), - [anon_sym_STAR_GT] = ACTIONS(611), - [anon_sym_STAR_GT_GT] = ACTIONS(609), - [anon_sym_LT] = ACTIONS(611), - [anon_sym_STAR_GT_AMP1] = ACTIONS(609), - [anon_sym_2_GT_AMP1] = ACTIONS(609), - [anon_sym_3_GT_AMP1] = ACTIONS(609), - [anon_sym_4_GT_AMP1] = ACTIONS(609), - [anon_sym_5_GT_AMP1] = ACTIONS(609), - [anon_sym_6_GT_AMP1] = ACTIONS(609), - [anon_sym_STAR_GT_AMP2] = ACTIONS(609), - [anon_sym_1_GT_AMP2] = ACTIONS(609), - [anon_sym_3_GT_AMP2] = ACTIONS(609), - [anon_sym_4_GT_AMP2] = ACTIONS(609), - [anon_sym_5_GT_AMP2] = ACTIONS(609), - [anon_sym_6_GT_AMP2] = ACTIONS(609), - [aux_sym_comparison_operator_token1] = ACTIONS(609), - [aux_sym_comparison_operator_token2] = ACTIONS(609), - [aux_sym_comparison_operator_token3] = ACTIONS(609), - [aux_sym_comparison_operator_token4] = ACTIONS(609), - [aux_sym_comparison_operator_token5] = ACTIONS(609), - [aux_sym_comparison_operator_token6] = ACTIONS(609), - [aux_sym_comparison_operator_token7] = ACTIONS(609), - [aux_sym_comparison_operator_token8] = ACTIONS(609), - [aux_sym_comparison_operator_token9] = ACTIONS(609), - [aux_sym_comparison_operator_token10] = ACTIONS(609), - [aux_sym_comparison_operator_token11] = ACTIONS(609), - [aux_sym_comparison_operator_token12] = ACTIONS(609), - [aux_sym_comparison_operator_token13] = ACTIONS(609), - [aux_sym_comparison_operator_token14] = ACTIONS(609), - [aux_sym_comparison_operator_token15] = ACTIONS(609), - [aux_sym_comparison_operator_token16] = ACTIONS(609), - [aux_sym_comparison_operator_token17] = ACTIONS(609), - [aux_sym_comparison_operator_token18] = ACTIONS(609), - [aux_sym_comparison_operator_token19] = ACTIONS(609), - [aux_sym_comparison_operator_token20] = ACTIONS(609), - [aux_sym_comparison_operator_token21] = ACTIONS(609), - [aux_sym_comparison_operator_token22] = ACTIONS(609), - [aux_sym_comparison_operator_token23] = ACTIONS(609), - [aux_sym_comparison_operator_token24] = ACTIONS(609), - [aux_sym_comparison_operator_token25] = ACTIONS(609), - [aux_sym_comparison_operator_token26] = ACTIONS(609), - [aux_sym_comparison_operator_token27] = ACTIONS(609), - [aux_sym_comparison_operator_token28] = ACTIONS(611), - [aux_sym_comparison_operator_token29] = ACTIONS(609), - [aux_sym_comparison_operator_token30] = ACTIONS(609), - [aux_sym_comparison_operator_token31] = ACTIONS(609), - [aux_sym_comparison_operator_token32] = ACTIONS(609), - [aux_sym_comparison_operator_token33] = ACTIONS(609), - [aux_sym_comparison_operator_token34] = ACTIONS(611), - [aux_sym_comparison_operator_token35] = ACTIONS(609), - [aux_sym_comparison_operator_token36] = ACTIONS(609), - [aux_sym_comparison_operator_token37] = ACTIONS(609), - [aux_sym_comparison_operator_token38] = ACTIONS(609), - [aux_sym_comparison_operator_token39] = ACTIONS(609), - [aux_sym_comparison_operator_token40] = ACTIONS(609), - [aux_sym_comparison_operator_token41] = ACTIONS(609), - [aux_sym_comparison_operator_token42] = ACTIONS(609), - [aux_sym_comparison_operator_token43] = ACTIONS(609), - [aux_sym_comparison_operator_token44] = ACTIONS(609), - [aux_sym_comparison_operator_token45] = ACTIONS(609), - [aux_sym_comparison_operator_token46] = ACTIONS(609), - [aux_sym_comparison_operator_token47] = ACTIONS(609), - [aux_sym_comparison_operator_token48] = ACTIONS(609), - [aux_sym_comparison_operator_token49] = ACTIONS(609), - [aux_sym_comparison_operator_token50] = ACTIONS(609), - [aux_sym_format_operator_token1] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_PERCENT] = ACTIONS(611), - [aux_sym_logical_expression_token1] = ACTIONS(609), - [aux_sym_logical_expression_token2] = ACTIONS(609), - [aux_sym_logical_expression_token3] = ACTIONS(609), - [aux_sym_bitwise_expression_token1] = ACTIONS(609), - [aux_sym_bitwise_expression_token2] = ACTIONS(609), - [aux_sym_bitwise_expression_token3] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_BSLASH] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_DOT_DOT] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_DOT2] = ACTIONS(611), - [anon_sym_COLON_COLON] = ACTIONS(609), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(609), - [sym__statement_terminator] = ACTIONS(609), - }, - [154] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(635), - [anon_sym_BANG_EQ] = ACTIONS(635), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(635), - [anon_sym_2_GT] = ACTIONS(637), - [anon_sym_2_GT_GT] = ACTIONS(635), - [anon_sym_3_GT] = ACTIONS(637), - [anon_sym_3_GT_GT] = ACTIONS(635), - [anon_sym_4_GT] = ACTIONS(637), - [anon_sym_4_GT_GT] = ACTIONS(635), - [anon_sym_5_GT] = ACTIONS(637), - [anon_sym_5_GT_GT] = ACTIONS(635), - [anon_sym_6_GT] = ACTIONS(637), - [anon_sym_6_GT_GT] = ACTIONS(635), - [anon_sym_STAR_GT] = ACTIONS(637), - [anon_sym_STAR_GT_GT] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_STAR_GT_AMP1] = ACTIONS(635), - [anon_sym_2_GT_AMP1] = ACTIONS(635), - [anon_sym_3_GT_AMP1] = ACTIONS(635), - [anon_sym_4_GT_AMP1] = ACTIONS(635), - [anon_sym_5_GT_AMP1] = ACTIONS(635), - [anon_sym_6_GT_AMP1] = ACTIONS(635), - [anon_sym_STAR_GT_AMP2] = ACTIONS(635), - [anon_sym_1_GT_AMP2] = ACTIONS(635), - [anon_sym_3_GT_AMP2] = ACTIONS(635), - [anon_sym_4_GT_AMP2] = ACTIONS(635), - [anon_sym_5_GT_AMP2] = ACTIONS(635), - [anon_sym_6_GT_AMP2] = ACTIONS(635), - [aux_sym_comparison_operator_token1] = ACTIONS(635), - [aux_sym_comparison_operator_token2] = ACTIONS(635), - [aux_sym_comparison_operator_token3] = ACTIONS(635), - [aux_sym_comparison_operator_token4] = ACTIONS(635), - [aux_sym_comparison_operator_token5] = ACTIONS(635), - [aux_sym_comparison_operator_token6] = ACTIONS(635), - [aux_sym_comparison_operator_token7] = ACTIONS(635), - [aux_sym_comparison_operator_token8] = ACTIONS(635), - [aux_sym_comparison_operator_token9] = ACTIONS(635), - [aux_sym_comparison_operator_token10] = ACTIONS(635), - [aux_sym_comparison_operator_token11] = ACTIONS(635), - [aux_sym_comparison_operator_token12] = ACTIONS(635), - [aux_sym_comparison_operator_token13] = ACTIONS(635), - [aux_sym_comparison_operator_token14] = ACTIONS(635), - [aux_sym_comparison_operator_token15] = ACTIONS(635), - [aux_sym_comparison_operator_token16] = ACTIONS(635), - [aux_sym_comparison_operator_token17] = ACTIONS(635), - [aux_sym_comparison_operator_token18] = ACTIONS(635), - [aux_sym_comparison_operator_token19] = ACTIONS(635), - [aux_sym_comparison_operator_token20] = ACTIONS(635), - [aux_sym_comparison_operator_token21] = ACTIONS(635), - [aux_sym_comparison_operator_token22] = ACTIONS(635), - [aux_sym_comparison_operator_token23] = ACTIONS(635), - [aux_sym_comparison_operator_token24] = ACTIONS(635), - [aux_sym_comparison_operator_token25] = ACTIONS(635), - [aux_sym_comparison_operator_token26] = ACTIONS(635), - [aux_sym_comparison_operator_token27] = ACTIONS(635), - [aux_sym_comparison_operator_token28] = ACTIONS(637), - [aux_sym_comparison_operator_token29] = ACTIONS(635), - [aux_sym_comparison_operator_token30] = ACTIONS(635), - [aux_sym_comparison_operator_token31] = ACTIONS(635), - [aux_sym_comparison_operator_token32] = ACTIONS(635), - [aux_sym_comparison_operator_token33] = ACTIONS(635), - [aux_sym_comparison_operator_token34] = ACTIONS(637), - [aux_sym_comparison_operator_token35] = ACTIONS(635), - [aux_sym_comparison_operator_token36] = ACTIONS(635), - [aux_sym_comparison_operator_token37] = ACTIONS(635), - [aux_sym_comparison_operator_token38] = ACTIONS(635), - [aux_sym_comparison_operator_token39] = ACTIONS(635), - [aux_sym_comparison_operator_token40] = ACTIONS(635), - [aux_sym_comparison_operator_token41] = ACTIONS(635), - [aux_sym_comparison_operator_token42] = ACTIONS(635), - [aux_sym_comparison_operator_token43] = ACTIONS(635), - [aux_sym_comparison_operator_token44] = ACTIONS(635), - [aux_sym_comparison_operator_token45] = ACTIONS(635), - [aux_sym_comparison_operator_token46] = ACTIONS(635), - [aux_sym_comparison_operator_token47] = ACTIONS(635), - [aux_sym_comparison_operator_token48] = ACTIONS(635), - [aux_sym_comparison_operator_token49] = ACTIONS(635), - [aux_sym_comparison_operator_token50] = ACTIONS(635), - [aux_sym_format_operator_token1] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(635), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PERCENT] = ACTIONS(637), - [aux_sym_logical_expression_token1] = ACTIONS(635), - [aux_sym_logical_expression_token2] = ACTIONS(635), - [aux_sym_logical_expression_token3] = ACTIONS(635), - [aux_sym_bitwise_expression_token1] = ACTIONS(635), - [aux_sym_bitwise_expression_token2] = ACTIONS(635), - [aux_sym_bitwise_expression_token3] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(635), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(635), - [anon_sym_PLUS_PLUS] = ACTIONS(635), - [anon_sym_DASH_DASH] = ACTIONS(635), - [anon_sym_DOT2] = ACTIONS(637), - [anon_sym_COLON_COLON] = ACTIONS(635), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(635), - [sym__statement_terminator] = ACTIONS(635), - }, - [155] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(745), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(749), [anon_sym_DOT2] = ACTIONS(757), [anon_sym_COLON_COLON] = ACTIONS(759), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), - [sym__statement_terminator] = ACTIONS(651), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), }, [156] = { [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(737), [anon_sym_DOT2] = ACTIONS(761), [anon_sym_COLON_COLON] = ACTIONS(763), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), + [sym__statement_terminator] = ACTIONS(695), }, [157] = { - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_PLUS_EQ] = ACTIONS(655), - [anon_sym_STAR_EQ] = ACTIONS(655), - [anon_sym_SLASH_EQ] = ACTIONS(655), - [anon_sym_PERCENT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(655), - [anon_sym_2_GT] = ACTIONS(657), - [anon_sym_2_GT_GT] = ACTIONS(655), - [anon_sym_3_GT] = ACTIONS(657), - [anon_sym_3_GT_GT] = ACTIONS(655), - [anon_sym_4_GT] = ACTIONS(657), - [anon_sym_4_GT_GT] = ACTIONS(655), - [anon_sym_5_GT] = ACTIONS(657), - [anon_sym_5_GT_GT] = ACTIONS(655), - [anon_sym_6_GT] = ACTIONS(657), - [anon_sym_6_GT_GT] = ACTIONS(655), - [anon_sym_STAR_GT] = ACTIONS(657), - [anon_sym_STAR_GT_GT] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_STAR_GT_AMP1] = ACTIONS(655), - [anon_sym_2_GT_AMP1] = ACTIONS(655), - [anon_sym_3_GT_AMP1] = ACTIONS(655), - [anon_sym_4_GT_AMP1] = ACTIONS(655), - [anon_sym_5_GT_AMP1] = ACTIONS(655), - [anon_sym_6_GT_AMP1] = ACTIONS(655), - [anon_sym_STAR_GT_AMP2] = ACTIONS(655), - [anon_sym_1_GT_AMP2] = ACTIONS(655), - [anon_sym_3_GT_AMP2] = ACTIONS(655), - [anon_sym_4_GT_AMP2] = ACTIONS(655), - [anon_sym_5_GT_AMP2] = ACTIONS(655), - [anon_sym_6_GT_AMP2] = ACTIONS(655), - [aux_sym_comparison_operator_token1] = ACTIONS(655), - [aux_sym_comparison_operator_token2] = ACTIONS(655), - [aux_sym_comparison_operator_token3] = ACTIONS(655), - [aux_sym_comparison_operator_token4] = ACTIONS(655), - [aux_sym_comparison_operator_token5] = ACTIONS(655), - [aux_sym_comparison_operator_token6] = ACTIONS(655), - [aux_sym_comparison_operator_token7] = ACTIONS(655), - [aux_sym_comparison_operator_token8] = ACTIONS(655), - [aux_sym_comparison_operator_token9] = ACTIONS(655), - [aux_sym_comparison_operator_token10] = ACTIONS(655), - [aux_sym_comparison_operator_token11] = ACTIONS(655), - [aux_sym_comparison_operator_token12] = ACTIONS(655), - [aux_sym_comparison_operator_token13] = ACTIONS(655), - [aux_sym_comparison_operator_token14] = ACTIONS(655), - [aux_sym_comparison_operator_token15] = ACTIONS(655), - [aux_sym_comparison_operator_token16] = ACTIONS(655), - [aux_sym_comparison_operator_token17] = ACTIONS(655), - [aux_sym_comparison_operator_token18] = ACTIONS(655), - [aux_sym_comparison_operator_token19] = ACTIONS(655), - [aux_sym_comparison_operator_token20] = ACTIONS(655), - [aux_sym_comparison_operator_token21] = ACTIONS(655), - [aux_sym_comparison_operator_token22] = ACTIONS(655), - [aux_sym_comparison_operator_token23] = ACTIONS(655), - [aux_sym_comparison_operator_token24] = ACTIONS(655), - [aux_sym_comparison_operator_token25] = ACTIONS(655), - [aux_sym_comparison_operator_token26] = ACTIONS(655), - [aux_sym_comparison_operator_token27] = ACTIONS(655), - [aux_sym_comparison_operator_token28] = ACTIONS(657), - [aux_sym_comparison_operator_token29] = ACTIONS(655), - [aux_sym_comparison_operator_token30] = ACTIONS(655), - [aux_sym_comparison_operator_token31] = ACTIONS(655), - [aux_sym_comparison_operator_token32] = ACTIONS(655), - [aux_sym_comparison_operator_token33] = ACTIONS(655), - [aux_sym_comparison_operator_token34] = ACTIONS(657), - [aux_sym_comparison_operator_token35] = ACTIONS(655), - [aux_sym_comparison_operator_token36] = ACTIONS(655), - [aux_sym_comparison_operator_token37] = ACTIONS(655), - [aux_sym_comparison_operator_token38] = ACTIONS(655), - [aux_sym_comparison_operator_token39] = ACTIONS(655), - [aux_sym_comparison_operator_token40] = ACTIONS(655), - [aux_sym_comparison_operator_token41] = ACTIONS(655), - [aux_sym_comparison_operator_token42] = ACTIONS(655), - [aux_sym_comparison_operator_token43] = ACTIONS(655), - [aux_sym_comparison_operator_token44] = ACTIONS(655), - [aux_sym_comparison_operator_token45] = ACTIONS(655), - [aux_sym_comparison_operator_token46] = ACTIONS(655), - [aux_sym_comparison_operator_token47] = ACTIONS(655), - [aux_sym_comparison_operator_token48] = ACTIONS(655), - [aux_sym_comparison_operator_token49] = ACTIONS(655), - [aux_sym_comparison_operator_token50] = ACTIONS(655), - [aux_sym_format_operator_token1] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PERCENT] = ACTIONS(657), - [aux_sym_logical_expression_token1] = ACTIONS(655), - [aux_sym_logical_expression_token2] = ACTIONS(655), - [aux_sym_logical_expression_token3] = ACTIONS(655), - [aux_sym_bitwise_expression_token1] = ACTIONS(655), - [aux_sym_bitwise_expression_token2] = ACTIONS(655), - [aux_sym_bitwise_expression_token3] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(655), - [anon_sym_RBRACK] = ACTIONS(655), - }, - [158] = { + [aux_sym_array_literal_expression_repeat1] = STATE(163), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(765), [anon_sym_BANG_EQ] = ACTIONS(765), @@ -45716,6 +46598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(765), [anon_sym_SLASH_EQ] = ACTIONS(765), [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), [anon_sym_GT] = ACTIONS(767), [anon_sym_GT_GT] = ACTIONS(765), [anon_sym_2_GT] = ACTIONS(767), @@ -45795,7 +46678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token50] = ACTIONS(765), [aux_sym_format_operator_token1] = ACTIONS(765), [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(769), [anon_sym_PIPE] = ACTIONS(765), [anon_sym_PERCENT] = ACTIONS(767), [aux_sym_logical_expression_token1] = ACTIONS(765), @@ -45810,2082 +46693,2207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(765), [anon_sym_STAR] = ACTIONS(767), [anon_sym_DOT_DOT] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(765), + }, + [158] = { + [aux_sym_array_literal_expression_repeat1] = STATE(158), + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_2_GT] = ACTIONS(773), + [anon_sym_2_GT_GT] = ACTIONS(771), + [anon_sym_3_GT] = ACTIONS(773), + [anon_sym_3_GT_GT] = ACTIONS(771), + [anon_sym_4_GT] = ACTIONS(773), + [anon_sym_4_GT_GT] = ACTIONS(771), + [anon_sym_5_GT] = ACTIONS(773), + [anon_sym_5_GT_GT] = ACTIONS(771), + [anon_sym_6_GT] = ACTIONS(773), + [anon_sym_6_GT_GT] = ACTIONS(771), + [anon_sym_STAR_GT] = ACTIONS(773), + [anon_sym_STAR_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_STAR_GT_AMP1] = ACTIONS(771), + [anon_sym_2_GT_AMP1] = ACTIONS(771), + [anon_sym_3_GT_AMP1] = ACTIONS(771), + [anon_sym_4_GT_AMP1] = ACTIONS(771), + [anon_sym_5_GT_AMP1] = ACTIONS(771), + [anon_sym_6_GT_AMP1] = ACTIONS(771), + [anon_sym_STAR_GT_AMP2] = ACTIONS(771), + [anon_sym_1_GT_AMP2] = ACTIONS(771), + [anon_sym_3_GT_AMP2] = ACTIONS(771), + [anon_sym_4_GT_AMP2] = ACTIONS(771), + [anon_sym_5_GT_AMP2] = ACTIONS(771), + [anon_sym_6_GT_AMP2] = ACTIONS(771), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(773), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_DOT_DOT] = ACTIONS(771), }, [159] = { - [aux_sym_array_literal_expression_repeat1] = STATE(160), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_2_GT] = ACTIONS(771), - [anon_sym_2_GT_GT] = ACTIONS(769), - [anon_sym_3_GT] = ACTIONS(771), - [anon_sym_3_GT_GT] = ACTIONS(769), - [anon_sym_4_GT] = ACTIONS(771), - [anon_sym_4_GT_GT] = ACTIONS(769), - [anon_sym_5_GT] = ACTIONS(771), - [anon_sym_5_GT_GT] = ACTIONS(769), - [anon_sym_6_GT] = ACTIONS(771), - [anon_sym_6_GT_GT] = ACTIONS(769), - [anon_sym_STAR_GT] = ACTIONS(771), - [anon_sym_STAR_GT_GT] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_STAR_GT_AMP1] = ACTIONS(769), - [anon_sym_2_GT_AMP1] = ACTIONS(769), - [anon_sym_3_GT_AMP1] = ACTIONS(769), - [anon_sym_4_GT_AMP1] = ACTIONS(769), - [anon_sym_5_GT_AMP1] = ACTIONS(769), - [anon_sym_6_GT_AMP1] = ACTIONS(769), - [anon_sym_STAR_GT_AMP2] = ACTIONS(769), - [anon_sym_1_GT_AMP2] = ACTIONS(769), - [anon_sym_3_GT_AMP2] = ACTIONS(769), - [anon_sym_4_GT_AMP2] = ACTIONS(769), - [anon_sym_5_GT_AMP2] = ACTIONS(769), - [anon_sym_6_GT_AMP2] = ACTIONS(769), - [aux_sym_comparison_operator_token1] = ACTIONS(769), - [aux_sym_comparison_operator_token2] = ACTIONS(769), - [aux_sym_comparison_operator_token3] = ACTIONS(769), - [aux_sym_comparison_operator_token4] = ACTIONS(769), - [aux_sym_comparison_operator_token5] = ACTIONS(769), - [aux_sym_comparison_operator_token6] = ACTIONS(769), - [aux_sym_comparison_operator_token7] = ACTIONS(769), - [aux_sym_comparison_operator_token8] = ACTIONS(769), - [aux_sym_comparison_operator_token9] = ACTIONS(769), - [aux_sym_comparison_operator_token10] = ACTIONS(769), - [aux_sym_comparison_operator_token11] = ACTIONS(769), - [aux_sym_comparison_operator_token12] = ACTIONS(769), - [aux_sym_comparison_operator_token13] = ACTIONS(769), - [aux_sym_comparison_operator_token14] = ACTIONS(769), - [aux_sym_comparison_operator_token15] = ACTIONS(769), - [aux_sym_comparison_operator_token16] = ACTIONS(769), - [aux_sym_comparison_operator_token17] = ACTIONS(769), - [aux_sym_comparison_operator_token18] = ACTIONS(769), - [aux_sym_comparison_operator_token19] = ACTIONS(769), - [aux_sym_comparison_operator_token20] = ACTIONS(769), - [aux_sym_comparison_operator_token21] = ACTIONS(769), - [aux_sym_comparison_operator_token22] = ACTIONS(769), - [aux_sym_comparison_operator_token23] = ACTIONS(769), - [aux_sym_comparison_operator_token24] = ACTIONS(769), - [aux_sym_comparison_operator_token25] = ACTIONS(769), - [aux_sym_comparison_operator_token26] = ACTIONS(769), - [aux_sym_comparison_operator_token27] = ACTIONS(769), - [aux_sym_comparison_operator_token28] = ACTIONS(771), - [aux_sym_comparison_operator_token29] = ACTIONS(769), - [aux_sym_comparison_operator_token30] = ACTIONS(769), - [aux_sym_comparison_operator_token31] = ACTIONS(769), - [aux_sym_comparison_operator_token32] = ACTIONS(769), - [aux_sym_comparison_operator_token33] = ACTIONS(769), - [aux_sym_comparison_operator_token34] = ACTIONS(771), - [aux_sym_comparison_operator_token35] = ACTIONS(769), - [aux_sym_comparison_operator_token36] = ACTIONS(769), - [aux_sym_comparison_operator_token37] = ACTIONS(769), - [aux_sym_comparison_operator_token38] = ACTIONS(769), - [aux_sym_comparison_operator_token39] = ACTIONS(769), - [aux_sym_comparison_operator_token40] = ACTIONS(769), - [aux_sym_comparison_operator_token41] = ACTIONS(769), - [aux_sym_comparison_operator_token42] = ACTIONS(769), - [aux_sym_comparison_operator_token43] = ACTIONS(769), - [aux_sym_comparison_operator_token44] = ACTIONS(769), - [aux_sym_comparison_operator_token45] = ACTIONS(769), - [aux_sym_comparison_operator_token46] = ACTIONS(769), - [aux_sym_comparison_operator_token47] = ACTIONS(769), - [aux_sym_comparison_operator_token48] = ACTIONS(769), - [aux_sym_comparison_operator_token49] = ACTIONS(769), - [aux_sym_comparison_operator_token50] = ACTIONS(769), - [aux_sym_format_operator_token1] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(771), - [aux_sym_logical_expression_token1] = ACTIONS(769), - [aux_sym_logical_expression_token2] = ACTIONS(769), - [aux_sym_logical_expression_token3] = ACTIONS(769), - [aux_sym_bitwise_expression_token1] = ACTIONS(769), - [aux_sym_bitwise_expression_token2] = ACTIONS(769), - [aux_sym_bitwise_expression_token3] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(769), - [sym__statement_terminator] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(707), + [anon_sym_STAR_EQ] = ACTIONS(707), + [anon_sym_SLASH_EQ] = ACTIONS(707), + [anon_sym_PERCENT_EQ] = ACTIONS(707), + [anon_sym_DASH_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_2_GT] = ACTIONS(709), + [anon_sym_2_GT_GT] = ACTIONS(707), + [anon_sym_3_GT] = ACTIONS(709), + [anon_sym_3_GT_GT] = ACTIONS(707), + [anon_sym_4_GT] = ACTIONS(709), + [anon_sym_4_GT_GT] = ACTIONS(707), + [anon_sym_5_GT] = ACTIONS(709), + [anon_sym_5_GT_GT] = ACTIONS(707), + [anon_sym_6_GT] = ACTIONS(709), + [anon_sym_6_GT_GT] = ACTIONS(707), + [anon_sym_STAR_GT] = ACTIONS(709), + [anon_sym_STAR_GT_GT] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_STAR_GT_AMP1] = ACTIONS(707), + [anon_sym_2_GT_AMP1] = ACTIONS(707), + [anon_sym_3_GT_AMP1] = ACTIONS(707), + [anon_sym_4_GT_AMP1] = ACTIONS(707), + [anon_sym_5_GT_AMP1] = ACTIONS(707), + [anon_sym_6_GT_AMP1] = ACTIONS(707), + [anon_sym_STAR_GT_AMP2] = ACTIONS(707), + [anon_sym_1_GT_AMP2] = ACTIONS(707), + [anon_sym_3_GT_AMP2] = ACTIONS(707), + [anon_sym_4_GT_AMP2] = ACTIONS(707), + [anon_sym_5_GT_AMP2] = ACTIONS(707), + [anon_sym_6_GT_AMP2] = ACTIONS(707), + [aux_sym_comparison_operator_token1] = ACTIONS(707), + [aux_sym_comparison_operator_token2] = ACTIONS(707), + [aux_sym_comparison_operator_token3] = ACTIONS(707), + [aux_sym_comparison_operator_token4] = ACTIONS(707), + [aux_sym_comparison_operator_token5] = ACTIONS(707), + [aux_sym_comparison_operator_token6] = ACTIONS(707), + [aux_sym_comparison_operator_token7] = ACTIONS(707), + [aux_sym_comparison_operator_token8] = ACTIONS(707), + [aux_sym_comparison_operator_token9] = ACTIONS(707), + [aux_sym_comparison_operator_token10] = ACTIONS(707), + [aux_sym_comparison_operator_token11] = ACTIONS(707), + [aux_sym_comparison_operator_token12] = ACTIONS(707), + [aux_sym_comparison_operator_token13] = ACTIONS(707), + [aux_sym_comparison_operator_token14] = ACTIONS(707), + [aux_sym_comparison_operator_token15] = ACTIONS(707), + [aux_sym_comparison_operator_token16] = ACTIONS(707), + [aux_sym_comparison_operator_token17] = ACTIONS(707), + [aux_sym_comparison_operator_token18] = ACTIONS(707), + [aux_sym_comparison_operator_token19] = ACTIONS(707), + [aux_sym_comparison_operator_token20] = ACTIONS(707), + [aux_sym_comparison_operator_token21] = ACTIONS(707), + [aux_sym_comparison_operator_token22] = ACTIONS(707), + [aux_sym_comparison_operator_token23] = ACTIONS(707), + [aux_sym_comparison_operator_token24] = ACTIONS(707), + [aux_sym_comparison_operator_token25] = ACTIONS(707), + [aux_sym_comparison_operator_token26] = ACTIONS(707), + [aux_sym_comparison_operator_token27] = ACTIONS(707), + [aux_sym_comparison_operator_token28] = ACTIONS(709), + [aux_sym_comparison_operator_token29] = ACTIONS(707), + [aux_sym_comparison_operator_token30] = ACTIONS(707), + [aux_sym_comparison_operator_token31] = ACTIONS(707), + [aux_sym_comparison_operator_token32] = ACTIONS(707), + [aux_sym_comparison_operator_token33] = ACTIONS(707), + [aux_sym_comparison_operator_token34] = ACTIONS(709), + [aux_sym_comparison_operator_token35] = ACTIONS(707), + [aux_sym_comparison_operator_token36] = ACTIONS(707), + [aux_sym_comparison_operator_token37] = ACTIONS(707), + [aux_sym_comparison_operator_token38] = ACTIONS(707), + [aux_sym_comparison_operator_token39] = ACTIONS(707), + [aux_sym_comparison_operator_token40] = ACTIONS(707), + [aux_sym_comparison_operator_token41] = ACTIONS(707), + [aux_sym_comparison_operator_token42] = ACTIONS(707), + [aux_sym_comparison_operator_token43] = ACTIONS(707), + [aux_sym_comparison_operator_token44] = ACTIONS(707), + [aux_sym_comparison_operator_token45] = ACTIONS(707), + [aux_sym_comparison_operator_token46] = ACTIONS(707), + [aux_sym_comparison_operator_token47] = ACTIONS(707), + [aux_sym_comparison_operator_token48] = ACTIONS(707), + [aux_sym_comparison_operator_token49] = ACTIONS(707), + [aux_sym_comparison_operator_token50] = ACTIONS(707), + [aux_sym_format_operator_token1] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(709), + [aux_sym_logical_expression_token1] = ACTIONS(707), + [aux_sym_logical_expression_token2] = ACTIONS(707), + [aux_sym_logical_expression_token3] = ACTIONS(707), + [aux_sym_bitwise_expression_token1] = ACTIONS(707), + [aux_sym_bitwise_expression_token2] = ACTIONS(707), + [aux_sym_bitwise_expression_token3] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_RBRACK] = ACTIONS(707), }, [160] = { - [aux_sym_array_literal_expression_repeat1] = STATE(160), + [aux_sym_array_literal_expression_repeat1] = STATE(161), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_2_GT] = ACTIONS(777), - [anon_sym_2_GT_GT] = ACTIONS(775), - [anon_sym_3_GT] = ACTIONS(777), - [anon_sym_3_GT_GT] = ACTIONS(775), - [anon_sym_4_GT] = ACTIONS(777), - [anon_sym_4_GT_GT] = ACTIONS(775), - [anon_sym_5_GT] = ACTIONS(777), - [anon_sym_5_GT_GT] = ACTIONS(775), - [anon_sym_6_GT] = ACTIONS(777), - [anon_sym_6_GT_GT] = ACTIONS(775), - [anon_sym_STAR_GT] = ACTIONS(777), - [anon_sym_STAR_GT_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_STAR_GT_AMP1] = ACTIONS(775), - [anon_sym_2_GT_AMP1] = ACTIONS(775), - [anon_sym_3_GT_AMP1] = ACTIONS(775), - [anon_sym_4_GT_AMP1] = ACTIONS(775), - [anon_sym_5_GT_AMP1] = ACTIONS(775), - [anon_sym_6_GT_AMP1] = ACTIONS(775), - [anon_sym_STAR_GT_AMP2] = ACTIONS(775), - [anon_sym_1_GT_AMP2] = ACTIONS(775), - [anon_sym_3_GT_AMP2] = ACTIONS(775), - [anon_sym_4_GT_AMP2] = ACTIONS(775), - [anon_sym_5_GT_AMP2] = ACTIONS(775), - [anon_sym_6_GT_AMP2] = ACTIONS(775), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(779), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(777), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(775), - [sym__statement_terminator] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_PLUS_EQ] = ACTIONS(765), + [anon_sym_STAR_EQ] = ACTIONS(765), + [anon_sym_SLASH_EQ] = ACTIONS(765), + [anon_sym_PERCENT_EQ] = ACTIONS(765), + [anon_sym_DASH_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_2_GT] = ACTIONS(767), + [anon_sym_2_GT_GT] = ACTIONS(765), + [anon_sym_3_GT] = ACTIONS(767), + [anon_sym_3_GT_GT] = ACTIONS(765), + [anon_sym_4_GT] = ACTIONS(767), + [anon_sym_4_GT_GT] = ACTIONS(765), + [anon_sym_5_GT] = ACTIONS(767), + [anon_sym_5_GT_GT] = ACTIONS(765), + [anon_sym_6_GT] = ACTIONS(767), + [anon_sym_6_GT_GT] = ACTIONS(765), + [anon_sym_STAR_GT] = ACTIONS(767), + [anon_sym_STAR_GT_GT] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_STAR_GT_AMP1] = ACTIONS(765), + [anon_sym_2_GT_AMP1] = ACTIONS(765), + [anon_sym_3_GT_AMP1] = ACTIONS(765), + [anon_sym_4_GT_AMP1] = ACTIONS(765), + [anon_sym_5_GT_AMP1] = ACTIONS(765), + [anon_sym_6_GT_AMP1] = ACTIONS(765), + [anon_sym_STAR_GT_AMP2] = ACTIONS(765), + [anon_sym_1_GT_AMP2] = ACTIONS(765), + [anon_sym_3_GT_AMP2] = ACTIONS(765), + [anon_sym_4_GT_AMP2] = ACTIONS(765), + [anon_sym_5_GT_AMP2] = ACTIONS(765), + [anon_sym_6_GT_AMP2] = ACTIONS(765), + [aux_sym_comparison_operator_token1] = ACTIONS(765), + [aux_sym_comparison_operator_token2] = ACTIONS(765), + [aux_sym_comparison_operator_token3] = ACTIONS(765), + [aux_sym_comparison_operator_token4] = ACTIONS(765), + [aux_sym_comparison_operator_token5] = ACTIONS(765), + [aux_sym_comparison_operator_token6] = ACTIONS(765), + [aux_sym_comparison_operator_token7] = ACTIONS(765), + [aux_sym_comparison_operator_token8] = ACTIONS(765), + [aux_sym_comparison_operator_token9] = ACTIONS(765), + [aux_sym_comparison_operator_token10] = ACTIONS(765), + [aux_sym_comparison_operator_token11] = ACTIONS(765), + [aux_sym_comparison_operator_token12] = ACTIONS(765), + [aux_sym_comparison_operator_token13] = ACTIONS(765), + [aux_sym_comparison_operator_token14] = ACTIONS(765), + [aux_sym_comparison_operator_token15] = ACTIONS(765), + [aux_sym_comparison_operator_token16] = ACTIONS(765), + [aux_sym_comparison_operator_token17] = ACTIONS(765), + [aux_sym_comparison_operator_token18] = ACTIONS(765), + [aux_sym_comparison_operator_token19] = ACTIONS(765), + [aux_sym_comparison_operator_token20] = ACTIONS(765), + [aux_sym_comparison_operator_token21] = ACTIONS(765), + [aux_sym_comparison_operator_token22] = ACTIONS(765), + [aux_sym_comparison_operator_token23] = ACTIONS(765), + [aux_sym_comparison_operator_token24] = ACTIONS(765), + [aux_sym_comparison_operator_token25] = ACTIONS(765), + [aux_sym_comparison_operator_token26] = ACTIONS(765), + [aux_sym_comparison_operator_token27] = ACTIONS(765), + [aux_sym_comparison_operator_token28] = ACTIONS(767), + [aux_sym_comparison_operator_token29] = ACTIONS(765), + [aux_sym_comparison_operator_token30] = ACTIONS(765), + [aux_sym_comparison_operator_token31] = ACTIONS(765), + [aux_sym_comparison_operator_token32] = ACTIONS(765), + [aux_sym_comparison_operator_token33] = ACTIONS(765), + [aux_sym_comparison_operator_token34] = ACTIONS(767), + [aux_sym_comparison_operator_token35] = ACTIONS(765), + [aux_sym_comparison_operator_token36] = ACTIONS(765), + [aux_sym_comparison_operator_token37] = ACTIONS(765), + [aux_sym_comparison_operator_token38] = ACTIONS(765), + [aux_sym_comparison_operator_token39] = ACTIONS(765), + [aux_sym_comparison_operator_token40] = ACTIONS(765), + [aux_sym_comparison_operator_token41] = ACTIONS(765), + [aux_sym_comparison_operator_token42] = ACTIONS(765), + [aux_sym_comparison_operator_token43] = ACTIONS(765), + [aux_sym_comparison_operator_token44] = ACTIONS(765), + [aux_sym_comparison_operator_token45] = ACTIONS(765), + [aux_sym_comparison_operator_token46] = ACTIONS(765), + [aux_sym_comparison_operator_token47] = ACTIONS(765), + [aux_sym_comparison_operator_token48] = ACTIONS(765), + [aux_sym_comparison_operator_token49] = ACTIONS(765), + [aux_sym_comparison_operator_token50] = ACTIONS(765), + [aux_sym_format_operator_token1] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(767), + [aux_sym_logical_expression_token1] = ACTIONS(765), + [aux_sym_logical_expression_token2] = ACTIONS(765), + [aux_sym_logical_expression_token3] = ACTIONS(765), + [aux_sym_bitwise_expression_token1] = ACTIONS(765), + [aux_sym_bitwise_expression_token2] = ACTIONS(765), + [aux_sym_bitwise_expression_token3] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_DOT_DOT] = ACTIONS(765), + [sym__statement_terminator] = ACTIONS(765), }, [161] = { + [aux_sym_array_literal_expression_repeat1] = STATE(162), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(659), - [anon_sym_2_GT] = ACTIONS(661), - [anon_sym_2_GT_GT] = ACTIONS(659), - [anon_sym_3_GT] = ACTIONS(661), - [anon_sym_3_GT_GT] = ACTIONS(659), - [anon_sym_4_GT] = ACTIONS(661), - [anon_sym_4_GT_GT] = ACTIONS(659), - [anon_sym_5_GT] = ACTIONS(661), - [anon_sym_5_GT_GT] = ACTIONS(659), - [anon_sym_6_GT] = ACTIONS(661), - [anon_sym_6_GT_GT] = ACTIONS(659), - [anon_sym_STAR_GT] = ACTIONS(661), - [anon_sym_STAR_GT_GT] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_STAR_GT_AMP1] = ACTIONS(659), - [anon_sym_2_GT_AMP1] = ACTIONS(659), - [anon_sym_3_GT_AMP1] = ACTIONS(659), - [anon_sym_4_GT_AMP1] = ACTIONS(659), - [anon_sym_5_GT_AMP1] = ACTIONS(659), - [anon_sym_6_GT_AMP1] = ACTIONS(659), - [anon_sym_STAR_GT_AMP2] = ACTIONS(659), - [anon_sym_1_GT_AMP2] = ACTIONS(659), - [anon_sym_3_GT_AMP2] = ACTIONS(659), - [anon_sym_4_GT_AMP2] = ACTIONS(659), - [anon_sym_5_GT_AMP2] = ACTIONS(659), - [anon_sym_6_GT_AMP2] = ACTIONS(659), - [aux_sym_comparison_operator_token1] = ACTIONS(659), - [aux_sym_comparison_operator_token2] = ACTIONS(659), - [aux_sym_comparison_operator_token3] = ACTIONS(659), - [aux_sym_comparison_operator_token4] = ACTIONS(659), - [aux_sym_comparison_operator_token5] = ACTIONS(659), - [aux_sym_comparison_operator_token6] = ACTIONS(659), - [aux_sym_comparison_operator_token7] = ACTIONS(659), - [aux_sym_comparison_operator_token8] = ACTIONS(659), - [aux_sym_comparison_operator_token9] = ACTIONS(659), - [aux_sym_comparison_operator_token10] = ACTIONS(659), - [aux_sym_comparison_operator_token11] = ACTIONS(659), - [aux_sym_comparison_operator_token12] = ACTIONS(659), - [aux_sym_comparison_operator_token13] = ACTIONS(659), - [aux_sym_comparison_operator_token14] = ACTIONS(659), - [aux_sym_comparison_operator_token15] = ACTIONS(659), - [aux_sym_comparison_operator_token16] = ACTIONS(659), - [aux_sym_comparison_operator_token17] = ACTIONS(659), - [aux_sym_comparison_operator_token18] = ACTIONS(659), - [aux_sym_comparison_operator_token19] = ACTIONS(659), - [aux_sym_comparison_operator_token20] = ACTIONS(659), - [aux_sym_comparison_operator_token21] = ACTIONS(659), - [aux_sym_comparison_operator_token22] = ACTIONS(659), - [aux_sym_comparison_operator_token23] = ACTIONS(659), - [aux_sym_comparison_operator_token24] = ACTIONS(659), - [aux_sym_comparison_operator_token25] = ACTIONS(659), - [aux_sym_comparison_operator_token26] = ACTIONS(659), - [aux_sym_comparison_operator_token27] = ACTIONS(659), - [aux_sym_comparison_operator_token28] = ACTIONS(661), - [aux_sym_comparison_operator_token29] = ACTIONS(659), - [aux_sym_comparison_operator_token30] = ACTIONS(659), - [aux_sym_comparison_operator_token31] = ACTIONS(659), - [aux_sym_comparison_operator_token32] = ACTIONS(659), - [aux_sym_comparison_operator_token33] = ACTIONS(659), - [aux_sym_comparison_operator_token34] = ACTIONS(661), - [aux_sym_comparison_operator_token35] = ACTIONS(659), - [aux_sym_comparison_operator_token36] = ACTIONS(659), - [aux_sym_comparison_operator_token37] = ACTIONS(659), - [aux_sym_comparison_operator_token38] = ACTIONS(659), - [aux_sym_comparison_operator_token39] = ACTIONS(659), - [aux_sym_comparison_operator_token40] = ACTIONS(659), - [aux_sym_comparison_operator_token41] = ACTIONS(659), - [aux_sym_comparison_operator_token42] = ACTIONS(659), - [aux_sym_comparison_operator_token43] = ACTIONS(659), - [aux_sym_comparison_operator_token44] = ACTIONS(659), - [aux_sym_comparison_operator_token45] = ACTIONS(659), - [aux_sym_comparison_operator_token46] = ACTIONS(659), - [aux_sym_comparison_operator_token47] = ACTIONS(659), - [aux_sym_comparison_operator_token48] = ACTIONS(659), - [aux_sym_comparison_operator_token49] = ACTIONS(659), - [aux_sym_comparison_operator_token50] = ACTIONS(659), - [aux_sym_format_operator_token1] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_PERCENT] = ACTIONS(661), - [aux_sym_logical_expression_token1] = ACTIONS(659), - [aux_sym_logical_expression_token2] = ACTIONS(659), - [aux_sym_logical_expression_token3] = ACTIONS(659), - [aux_sym_bitwise_expression_token1] = ACTIONS(659), - [aux_sym_bitwise_expression_token2] = ACTIONS(659), - [aux_sym_bitwise_expression_token3] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_PLUS_EQ] = ACTIONS(780), + [anon_sym_STAR_EQ] = ACTIONS(780), + [anon_sym_SLASH_EQ] = ACTIONS(780), + [anon_sym_PERCENT_EQ] = ACTIONS(780), + [anon_sym_DASH_EQ] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(782), + [anon_sym_GT_GT] = ACTIONS(780), + [anon_sym_2_GT] = ACTIONS(782), + [anon_sym_2_GT_GT] = ACTIONS(780), + [anon_sym_3_GT] = ACTIONS(782), + [anon_sym_3_GT_GT] = ACTIONS(780), + [anon_sym_4_GT] = ACTIONS(782), + [anon_sym_4_GT_GT] = ACTIONS(780), + [anon_sym_5_GT] = ACTIONS(782), + [anon_sym_5_GT_GT] = ACTIONS(780), + [anon_sym_6_GT] = ACTIONS(782), + [anon_sym_6_GT_GT] = ACTIONS(780), + [anon_sym_STAR_GT] = ACTIONS(782), + [anon_sym_STAR_GT_GT] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_STAR_GT_AMP1] = ACTIONS(780), + [anon_sym_2_GT_AMP1] = ACTIONS(780), + [anon_sym_3_GT_AMP1] = ACTIONS(780), + [anon_sym_4_GT_AMP1] = ACTIONS(780), + [anon_sym_5_GT_AMP1] = ACTIONS(780), + [anon_sym_6_GT_AMP1] = ACTIONS(780), + [anon_sym_STAR_GT_AMP2] = ACTIONS(780), + [anon_sym_1_GT_AMP2] = ACTIONS(780), + [anon_sym_3_GT_AMP2] = ACTIONS(780), + [anon_sym_4_GT_AMP2] = ACTIONS(780), + [anon_sym_5_GT_AMP2] = ACTIONS(780), + [anon_sym_6_GT_AMP2] = ACTIONS(780), + [aux_sym_comparison_operator_token1] = ACTIONS(780), + [aux_sym_comparison_operator_token2] = ACTIONS(780), + [aux_sym_comparison_operator_token3] = ACTIONS(780), + [aux_sym_comparison_operator_token4] = ACTIONS(780), + [aux_sym_comparison_operator_token5] = ACTIONS(780), + [aux_sym_comparison_operator_token6] = ACTIONS(780), + [aux_sym_comparison_operator_token7] = ACTIONS(780), + [aux_sym_comparison_operator_token8] = ACTIONS(780), + [aux_sym_comparison_operator_token9] = ACTIONS(780), + [aux_sym_comparison_operator_token10] = ACTIONS(780), + [aux_sym_comparison_operator_token11] = ACTIONS(780), + [aux_sym_comparison_operator_token12] = ACTIONS(780), + [aux_sym_comparison_operator_token13] = ACTIONS(780), + [aux_sym_comparison_operator_token14] = ACTIONS(780), + [aux_sym_comparison_operator_token15] = ACTIONS(780), + [aux_sym_comparison_operator_token16] = ACTIONS(780), + [aux_sym_comparison_operator_token17] = ACTIONS(780), + [aux_sym_comparison_operator_token18] = ACTIONS(780), + [aux_sym_comparison_operator_token19] = ACTIONS(780), + [aux_sym_comparison_operator_token20] = ACTIONS(780), + [aux_sym_comparison_operator_token21] = ACTIONS(780), + [aux_sym_comparison_operator_token22] = ACTIONS(780), + [aux_sym_comparison_operator_token23] = ACTIONS(780), + [aux_sym_comparison_operator_token24] = ACTIONS(780), + [aux_sym_comparison_operator_token25] = ACTIONS(780), + [aux_sym_comparison_operator_token26] = ACTIONS(780), + [aux_sym_comparison_operator_token27] = ACTIONS(780), + [aux_sym_comparison_operator_token28] = ACTIONS(782), + [aux_sym_comparison_operator_token29] = ACTIONS(780), + [aux_sym_comparison_operator_token30] = ACTIONS(780), + [aux_sym_comparison_operator_token31] = ACTIONS(780), + [aux_sym_comparison_operator_token32] = ACTIONS(780), + [aux_sym_comparison_operator_token33] = ACTIONS(780), + [aux_sym_comparison_operator_token34] = ACTIONS(782), + [aux_sym_comparison_operator_token35] = ACTIONS(780), + [aux_sym_comparison_operator_token36] = ACTIONS(780), + [aux_sym_comparison_operator_token37] = ACTIONS(780), + [aux_sym_comparison_operator_token38] = ACTIONS(780), + [aux_sym_comparison_operator_token39] = ACTIONS(780), + [aux_sym_comparison_operator_token40] = ACTIONS(780), + [aux_sym_comparison_operator_token41] = ACTIONS(780), + [aux_sym_comparison_operator_token42] = ACTIONS(780), + [aux_sym_comparison_operator_token43] = ACTIONS(780), + [aux_sym_comparison_operator_token44] = ACTIONS(780), + [aux_sym_comparison_operator_token45] = ACTIONS(780), + [aux_sym_comparison_operator_token46] = ACTIONS(780), + [aux_sym_comparison_operator_token47] = ACTIONS(780), + [aux_sym_comparison_operator_token48] = ACTIONS(780), + [aux_sym_comparison_operator_token49] = ACTIONS(780), + [aux_sym_comparison_operator_token50] = ACTIONS(780), + [aux_sym_format_operator_token1] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(782), + [aux_sym_logical_expression_token1] = ACTIONS(780), + [aux_sym_logical_expression_token2] = ACTIONS(780), + [aux_sym_logical_expression_token3] = ACTIONS(780), + [aux_sym_bitwise_expression_token1] = ACTIONS(780), + [aux_sym_bitwise_expression_token2] = ACTIONS(780), + [aux_sym_bitwise_expression_token3] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(782), + [anon_sym_BSLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(780), + [sym__statement_terminator] = ACTIONS(780), }, [162] = { - [aux_sym_array_literal_expression_repeat1] = STATE(167), + [aux_sym_array_literal_expression_repeat1] = STATE(162), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_BANG_EQ] = ACTIONS(782), - [anon_sym_PLUS_EQ] = ACTIONS(782), - [anon_sym_STAR_EQ] = ACTIONS(782), - [anon_sym_SLASH_EQ] = ACTIONS(782), - [anon_sym_PERCENT_EQ] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(784), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_2_GT] = ACTIONS(784), - [anon_sym_2_GT_GT] = ACTIONS(782), - [anon_sym_3_GT] = ACTIONS(784), - [anon_sym_3_GT_GT] = ACTIONS(782), - [anon_sym_4_GT] = ACTIONS(784), - [anon_sym_4_GT_GT] = ACTIONS(782), - [anon_sym_5_GT] = ACTIONS(784), - [anon_sym_5_GT_GT] = ACTIONS(782), - [anon_sym_6_GT] = ACTIONS(784), - [anon_sym_6_GT_GT] = ACTIONS(782), - [anon_sym_STAR_GT] = ACTIONS(784), - [anon_sym_STAR_GT_GT] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(784), - [anon_sym_STAR_GT_AMP1] = ACTIONS(782), - [anon_sym_2_GT_AMP1] = ACTIONS(782), - [anon_sym_3_GT_AMP1] = ACTIONS(782), - [anon_sym_4_GT_AMP1] = ACTIONS(782), - [anon_sym_5_GT_AMP1] = ACTIONS(782), - [anon_sym_6_GT_AMP1] = ACTIONS(782), - [anon_sym_STAR_GT_AMP2] = ACTIONS(782), - [anon_sym_1_GT_AMP2] = ACTIONS(782), - [anon_sym_3_GT_AMP2] = ACTIONS(782), - [anon_sym_4_GT_AMP2] = ACTIONS(782), - [anon_sym_5_GT_AMP2] = ACTIONS(782), - [anon_sym_6_GT_AMP2] = ACTIONS(782), - [aux_sym_comparison_operator_token1] = ACTIONS(782), - [aux_sym_comparison_operator_token2] = ACTIONS(782), - [aux_sym_comparison_operator_token3] = ACTIONS(782), - [aux_sym_comparison_operator_token4] = ACTIONS(782), - [aux_sym_comparison_operator_token5] = ACTIONS(782), - [aux_sym_comparison_operator_token6] = ACTIONS(782), - [aux_sym_comparison_operator_token7] = ACTIONS(782), - [aux_sym_comparison_operator_token8] = ACTIONS(782), - [aux_sym_comparison_operator_token9] = ACTIONS(782), - [aux_sym_comparison_operator_token10] = ACTIONS(782), - [aux_sym_comparison_operator_token11] = ACTIONS(782), - [aux_sym_comparison_operator_token12] = ACTIONS(782), - [aux_sym_comparison_operator_token13] = ACTIONS(782), - [aux_sym_comparison_operator_token14] = ACTIONS(782), - [aux_sym_comparison_operator_token15] = ACTIONS(782), - [aux_sym_comparison_operator_token16] = ACTIONS(782), - [aux_sym_comparison_operator_token17] = ACTIONS(782), - [aux_sym_comparison_operator_token18] = ACTIONS(782), - [aux_sym_comparison_operator_token19] = ACTIONS(782), - [aux_sym_comparison_operator_token20] = ACTIONS(782), - [aux_sym_comparison_operator_token21] = ACTIONS(782), - [aux_sym_comparison_operator_token22] = ACTIONS(782), - [aux_sym_comparison_operator_token23] = ACTIONS(782), - [aux_sym_comparison_operator_token24] = ACTIONS(782), - [aux_sym_comparison_operator_token25] = ACTIONS(782), - [aux_sym_comparison_operator_token26] = ACTIONS(782), - [aux_sym_comparison_operator_token27] = ACTIONS(782), - [aux_sym_comparison_operator_token28] = ACTIONS(784), - [aux_sym_comparison_operator_token29] = ACTIONS(782), - [aux_sym_comparison_operator_token30] = ACTIONS(782), - [aux_sym_comparison_operator_token31] = ACTIONS(782), - [aux_sym_comparison_operator_token32] = ACTIONS(782), - [aux_sym_comparison_operator_token33] = ACTIONS(782), - [aux_sym_comparison_operator_token34] = ACTIONS(784), - [aux_sym_comparison_operator_token35] = ACTIONS(782), - [aux_sym_comparison_operator_token36] = ACTIONS(782), - [aux_sym_comparison_operator_token37] = ACTIONS(782), - [aux_sym_comparison_operator_token38] = ACTIONS(782), - [aux_sym_comparison_operator_token39] = ACTIONS(782), - [aux_sym_comparison_operator_token40] = ACTIONS(782), - [aux_sym_comparison_operator_token41] = ACTIONS(782), - [aux_sym_comparison_operator_token42] = ACTIONS(782), - [aux_sym_comparison_operator_token43] = ACTIONS(782), - [aux_sym_comparison_operator_token44] = ACTIONS(782), - [aux_sym_comparison_operator_token45] = ACTIONS(782), - [aux_sym_comparison_operator_token46] = ACTIONS(782), - [aux_sym_comparison_operator_token47] = ACTIONS(782), - [aux_sym_comparison_operator_token48] = ACTIONS(782), - [aux_sym_comparison_operator_token49] = ACTIONS(782), - [aux_sym_comparison_operator_token50] = ACTIONS(782), - [aux_sym_format_operator_token1] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(784), - [aux_sym_logical_expression_token1] = ACTIONS(782), - [aux_sym_logical_expression_token2] = ACTIONS(782), - [aux_sym_logical_expression_token3] = ACTIONS(782), - [aux_sym_bitwise_expression_token1] = ACTIONS(782), - [aux_sym_bitwise_expression_token2] = ACTIONS(782), - [aux_sym_bitwise_expression_token3] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_2_GT] = ACTIONS(773), + [anon_sym_2_GT_GT] = ACTIONS(771), + [anon_sym_3_GT] = ACTIONS(773), + [anon_sym_3_GT_GT] = ACTIONS(771), + [anon_sym_4_GT] = ACTIONS(773), + [anon_sym_4_GT_GT] = ACTIONS(771), + [anon_sym_5_GT] = ACTIONS(773), + [anon_sym_5_GT_GT] = ACTIONS(771), + [anon_sym_6_GT] = ACTIONS(773), + [anon_sym_6_GT_GT] = ACTIONS(771), + [anon_sym_STAR_GT] = ACTIONS(773), + [anon_sym_STAR_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_STAR_GT_AMP1] = ACTIONS(771), + [anon_sym_2_GT_AMP1] = ACTIONS(771), + [anon_sym_3_GT_AMP1] = ACTIONS(771), + [anon_sym_4_GT_AMP1] = ACTIONS(771), + [anon_sym_5_GT_AMP1] = ACTIONS(771), + [anon_sym_6_GT_AMP1] = ACTIONS(771), + [anon_sym_STAR_GT_AMP2] = ACTIONS(771), + [anon_sym_1_GT_AMP2] = ACTIONS(771), + [anon_sym_3_GT_AMP2] = ACTIONS(771), + [anon_sym_4_GT_AMP2] = ACTIONS(771), + [anon_sym_5_GT_AMP2] = ACTIONS(771), + [anon_sym_6_GT_AMP2] = ACTIONS(771), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(773), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_DOT_DOT] = ACTIONS(771), + [sym__statement_terminator] = ACTIONS(771), }, [163] = { + [aux_sym_array_literal_expression_repeat1] = STATE(158), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(780), + [anon_sym_BANG_EQ] = ACTIONS(780), + [anon_sym_PLUS_EQ] = ACTIONS(780), + [anon_sym_STAR_EQ] = ACTIONS(780), + [anon_sym_SLASH_EQ] = ACTIONS(780), + [anon_sym_PERCENT_EQ] = ACTIONS(780), + [anon_sym_DASH_EQ] = ACTIONS(780), + [anon_sym_GT] = ACTIONS(782), + [anon_sym_GT_GT] = ACTIONS(780), + [anon_sym_2_GT] = ACTIONS(782), + [anon_sym_2_GT_GT] = ACTIONS(780), + [anon_sym_3_GT] = ACTIONS(782), + [anon_sym_3_GT_GT] = ACTIONS(780), + [anon_sym_4_GT] = ACTIONS(782), + [anon_sym_4_GT_GT] = ACTIONS(780), + [anon_sym_5_GT] = ACTIONS(782), + [anon_sym_5_GT_GT] = ACTIONS(780), + [anon_sym_6_GT] = ACTIONS(782), + [anon_sym_6_GT_GT] = ACTIONS(780), + [anon_sym_STAR_GT] = ACTIONS(782), + [anon_sym_STAR_GT_GT] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_STAR_GT_AMP1] = ACTIONS(780), + [anon_sym_2_GT_AMP1] = ACTIONS(780), + [anon_sym_3_GT_AMP1] = ACTIONS(780), + [anon_sym_4_GT_AMP1] = ACTIONS(780), + [anon_sym_5_GT_AMP1] = ACTIONS(780), + [anon_sym_6_GT_AMP1] = ACTIONS(780), + [anon_sym_STAR_GT_AMP2] = ACTIONS(780), + [anon_sym_1_GT_AMP2] = ACTIONS(780), + [anon_sym_3_GT_AMP2] = ACTIONS(780), + [anon_sym_4_GT_AMP2] = ACTIONS(780), + [anon_sym_5_GT_AMP2] = ACTIONS(780), + [anon_sym_6_GT_AMP2] = ACTIONS(780), + [aux_sym_comparison_operator_token1] = ACTIONS(780), + [aux_sym_comparison_operator_token2] = ACTIONS(780), + [aux_sym_comparison_operator_token3] = ACTIONS(780), + [aux_sym_comparison_operator_token4] = ACTIONS(780), + [aux_sym_comparison_operator_token5] = ACTIONS(780), + [aux_sym_comparison_operator_token6] = ACTIONS(780), + [aux_sym_comparison_operator_token7] = ACTIONS(780), + [aux_sym_comparison_operator_token8] = ACTIONS(780), + [aux_sym_comparison_operator_token9] = ACTIONS(780), + [aux_sym_comparison_operator_token10] = ACTIONS(780), + [aux_sym_comparison_operator_token11] = ACTIONS(780), + [aux_sym_comparison_operator_token12] = ACTIONS(780), + [aux_sym_comparison_operator_token13] = ACTIONS(780), + [aux_sym_comparison_operator_token14] = ACTIONS(780), + [aux_sym_comparison_operator_token15] = ACTIONS(780), + [aux_sym_comparison_operator_token16] = ACTIONS(780), + [aux_sym_comparison_operator_token17] = ACTIONS(780), + [aux_sym_comparison_operator_token18] = ACTIONS(780), + [aux_sym_comparison_operator_token19] = ACTIONS(780), + [aux_sym_comparison_operator_token20] = ACTIONS(780), + [aux_sym_comparison_operator_token21] = ACTIONS(780), + [aux_sym_comparison_operator_token22] = ACTIONS(780), + [aux_sym_comparison_operator_token23] = ACTIONS(780), + [aux_sym_comparison_operator_token24] = ACTIONS(780), + [aux_sym_comparison_operator_token25] = ACTIONS(780), + [aux_sym_comparison_operator_token26] = ACTIONS(780), + [aux_sym_comparison_operator_token27] = ACTIONS(780), + [aux_sym_comparison_operator_token28] = ACTIONS(782), + [aux_sym_comparison_operator_token29] = ACTIONS(780), + [aux_sym_comparison_operator_token30] = ACTIONS(780), + [aux_sym_comparison_operator_token31] = ACTIONS(780), + [aux_sym_comparison_operator_token32] = ACTIONS(780), + [aux_sym_comparison_operator_token33] = ACTIONS(780), + [aux_sym_comparison_operator_token34] = ACTIONS(782), + [aux_sym_comparison_operator_token35] = ACTIONS(780), + [aux_sym_comparison_operator_token36] = ACTIONS(780), + [aux_sym_comparison_operator_token37] = ACTIONS(780), + [aux_sym_comparison_operator_token38] = ACTIONS(780), + [aux_sym_comparison_operator_token39] = ACTIONS(780), + [aux_sym_comparison_operator_token40] = ACTIONS(780), + [aux_sym_comparison_operator_token41] = ACTIONS(780), + [aux_sym_comparison_operator_token42] = ACTIONS(780), + [aux_sym_comparison_operator_token43] = ACTIONS(780), + [aux_sym_comparison_operator_token44] = ACTIONS(780), + [aux_sym_comparison_operator_token45] = ACTIONS(780), + [aux_sym_comparison_operator_token46] = ACTIONS(780), + [aux_sym_comparison_operator_token47] = ACTIONS(780), + [aux_sym_comparison_operator_token48] = ACTIONS(780), + [aux_sym_comparison_operator_token49] = ACTIONS(780), + [aux_sym_comparison_operator_token50] = ACTIONS(780), + [aux_sym_format_operator_token1] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(782), + [aux_sym_logical_expression_token1] = ACTIONS(780), + [aux_sym_logical_expression_token2] = ACTIONS(780), + [aux_sym_logical_expression_token3] = ACTIONS(780), + [aux_sym_bitwise_expression_token1] = ACTIONS(780), + [aux_sym_bitwise_expression_token2] = ACTIONS(780), + [aux_sym_bitwise_expression_token3] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(782), + [anon_sym_BSLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(782), + [anon_sym_DOT_DOT] = ACTIONS(780), }, [164] = { - [aux_sym_array_literal_expression_repeat1] = STATE(159), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(782), - [anon_sym_BANG_EQ] = ACTIONS(782), - [anon_sym_PLUS_EQ] = ACTIONS(782), - [anon_sym_STAR_EQ] = ACTIONS(782), - [anon_sym_SLASH_EQ] = ACTIONS(782), - [anon_sym_PERCENT_EQ] = ACTIONS(782), - [anon_sym_GT] = ACTIONS(784), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_2_GT] = ACTIONS(784), - [anon_sym_2_GT_GT] = ACTIONS(782), - [anon_sym_3_GT] = ACTIONS(784), - [anon_sym_3_GT_GT] = ACTIONS(782), - [anon_sym_4_GT] = ACTIONS(784), - [anon_sym_4_GT_GT] = ACTIONS(782), - [anon_sym_5_GT] = ACTIONS(784), - [anon_sym_5_GT_GT] = ACTIONS(782), - [anon_sym_6_GT] = ACTIONS(784), - [anon_sym_6_GT_GT] = ACTIONS(782), - [anon_sym_STAR_GT] = ACTIONS(784), - [anon_sym_STAR_GT_GT] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(784), - [anon_sym_STAR_GT_AMP1] = ACTIONS(782), - [anon_sym_2_GT_AMP1] = ACTIONS(782), - [anon_sym_3_GT_AMP1] = ACTIONS(782), - [anon_sym_4_GT_AMP1] = ACTIONS(782), - [anon_sym_5_GT_AMP1] = ACTIONS(782), - [anon_sym_6_GT_AMP1] = ACTIONS(782), - [anon_sym_STAR_GT_AMP2] = ACTIONS(782), - [anon_sym_1_GT_AMP2] = ACTIONS(782), - [anon_sym_3_GT_AMP2] = ACTIONS(782), - [anon_sym_4_GT_AMP2] = ACTIONS(782), - [anon_sym_5_GT_AMP2] = ACTIONS(782), - [anon_sym_6_GT_AMP2] = ACTIONS(782), - [aux_sym_comparison_operator_token1] = ACTIONS(782), - [aux_sym_comparison_operator_token2] = ACTIONS(782), - [aux_sym_comparison_operator_token3] = ACTIONS(782), - [aux_sym_comparison_operator_token4] = ACTIONS(782), - [aux_sym_comparison_operator_token5] = ACTIONS(782), - [aux_sym_comparison_operator_token6] = ACTIONS(782), - [aux_sym_comparison_operator_token7] = ACTIONS(782), - [aux_sym_comparison_operator_token8] = ACTIONS(782), - [aux_sym_comparison_operator_token9] = ACTIONS(782), - [aux_sym_comparison_operator_token10] = ACTIONS(782), - [aux_sym_comparison_operator_token11] = ACTIONS(782), - [aux_sym_comparison_operator_token12] = ACTIONS(782), - [aux_sym_comparison_operator_token13] = ACTIONS(782), - [aux_sym_comparison_operator_token14] = ACTIONS(782), - [aux_sym_comparison_operator_token15] = ACTIONS(782), - [aux_sym_comparison_operator_token16] = ACTIONS(782), - [aux_sym_comparison_operator_token17] = ACTIONS(782), - [aux_sym_comparison_operator_token18] = ACTIONS(782), - [aux_sym_comparison_operator_token19] = ACTIONS(782), - [aux_sym_comparison_operator_token20] = ACTIONS(782), - [aux_sym_comparison_operator_token21] = ACTIONS(782), - [aux_sym_comparison_operator_token22] = ACTIONS(782), - [aux_sym_comparison_operator_token23] = ACTIONS(782), - [aux_sym_comparison_operator_token24] = ACTIONS(782), - [aux_sym_comparison_operator_token25] = ACTIONS(782), - [aux_sym_comparison_operator_token26] = ACTIONS(782), - [aux_sym_comparison_operator_token27] = ACTIONS(782), - [aux_sym_comparison_operator_token28] = ACTIONS(784), - [aux_sym_comparison_operator_token29] = ACTIONS(782), - [aux_sym_comparison_operator_token30] = ACTIONS(782), - [aux_sym_comparison_operator_token31] = ACTIONS(782), - [aux_sym_comparison_operator_token32] = ACTIONS(782), - [aux_sym_comparison_operator_token33] = ACTIONS(782), - [aux_sym_comparison_operator_token34] = ACTIONS(784), - [aux_sym_comparison_operator_token35] = ACTIONS(782), - [aux_sym_comparison_operator_token36] = ACTIONS(782), - [aux_sym_comparison_operator_token37] = ACTIONS(782), - [aux_sym_comparison_operator_token38] = ACTIONS(782), - [aux_sym_comparison_operator_token39] = ACTIONS(782), - [aux_sym_comparison_operator_token40] = ACTIONS(782), - [aux_sym_comparison_operator_token41] = ACTIONS(782), - [aux_sym_comparison_operator_token42] = ACTIONS(782), - [aux_sym_comparison_operator_token43] = ACTIONS(782), - [aux_sym_comparison_operator_token44] = ACTIONS(782), - [aux_sym_comparison_operator_token45] = ACTIONS(782), - [aux_sym_comparison_operator_token46] = ACTIONS(782), - [aux_sym_comparison_operator_token47] = ACTIONS(782), - [aux_sym_comparison_operator_token48] = ACTIONS(782), - [aux_sym_comparison_operator_token49] = ACTIONS(782), - [aux_sym_comparison_operator_token50] = ACTIONS(782), - [aux_sym_format_operator_token1] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(784), - [aux_sym_logical_expression_token1] = ACTIONS(782), - [aux_sym_logical_expression_token2] = ACTIONS(782), - [aux_sym_logical_expression_token3] = ACTIONS(782), - [aux_sym_bitwise_expression_token1] = ACTIONS(782), - [aux_sym_bitwise_expression_token2] = ACTIONS(782), - [aux_sym_bitwise_expression_token3] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(782), - [sym__statement_terminator] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), + [anon_sym_STAR_EQ] = ACTIONS(703), + [anon_sym_SLASH_EQ] = ACTIONS(703), + [anon_sym_PERCENT_EQ] = ACTIONS(703), + [anon_sym_DASH_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(703), + [anon_sym_2_GT] = ACTIONS(705), + [anon_sym_2_GT_GT] = ACTIONS(703), + [anon_sym_3_GT] = ACTIONS(705), + [anon_sym_3_GT_GT] = ACTIONS(703), + [anon_sym_4_GT] = ACTIONS(705), + [anon_sym_4_GT_GT] = ACTIONS(703), + [anon_sym_5_GT] = ACTIONS(705), + [anon_sym_5_GT_GT] = ACTIONS(703), + [anon_sym_6_GT] = ACTIONS(705), + [anon_sym_6_GT_GT] = ACTIONS(703), + [anon_sym_STAR_GT] = ACTIONS(705), + [anon_sym_STAR_GT_GT] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_STAR_GT_AMP1] = ACTIONS(703), + [anon_sym_2_GT_AMP1] = ACTIONS(703), + [anon_sym_3_GT_AMP1] = ACTIONS(703), + [anon_sym_4_GT_AMP1] = ACTIONS(703), + [anon_sym_5_GT_AMP1] = ACTIONS(703), + [anon_sym_6_GT_AMP1] = ACTIONS(703), + [anon_sym_STAR_GT_AMP2] = ACTIONS(703), + [anon_sym_1_GT_AMP2] = ACTIONS(703), + [anon_sym_3_GT_AMP2] = ACTIONS(703), + [anon_sym_4_GT_AMP2] = ACTIONS(703), + [anon_sym_5_GT_AMP2] = ACTIONS(703), + [anon_sym_6_GT_AMP2] = ACTIONS(703), + [aux_sym_comparison_operator_token1] = ACTIONS(703), + [aux_sym_comparison_operator_token2] = ACTIONS(703), + [aux_sym_comparison_operator_token3] = ACTIONS(703), + [aux_sym_comparison_operator_token4] = ACTIONS(703), + [aux_sym_comparison_operator_token5] = ACTIONS(703), + [aux_sym_comparison_operator_token6] = ACTIONS(703), + [aux_sym_comparison_operator_token7] = ACTIONS(703), + [aux_sym_comparison_operator_token8] = ACTIONS(703), + [aux_sym_comparison_operator_token9] = ACTIONS(703), + [aux_sym_comparison_operator_token10] = ACTIONS(703), + [aux_sym_comparison_operator_token11] = ACTIONS(703), + [aux_sym_comparison_operator_token12] = ACTIONS(703), + [aux_sym_comparison_operator_token13] = ACTIONS(703), + [aux_sym_comparison_operator_token14] = ACTIONS(703), + [aux_sym_comparison_operator_token15] = ACTIONS(703), + [aux_sym_comparison_operator_token16] = ACTIONS(703), + [aux_sym_comparison_operator_token17] = ACTIONS(703), + [aux_sym_comparison_operator_token18] = ACTIONS(703), + [aux_sym_comparison_operator_token19] = ACTIONS(703), + [aux_sym_comparison_operator_token20] = ACTIONS(703), + [aux_sym_comparison_operator_token21] = ACTIONS(703), + [aux_sym_comparison_operator_token22] = ACTIONS(703), + [aux_sym_comparison_operator_token23] = ACTIONS(703), + [aux_sym_comparison_operator_token24] = ACTIONS(703), + [aux_sym_comparison_operator_token25] = ACTIONS(703), + [aux_sym_comparison_operator_token26] = ACTIONS(703), + [aux_sym_comparison_operator_token27] = ACTIONS(703), + [aux_sym_comparison_operator_token28] = ACTIONS(705), + [aux_sym_comparison_operator_token29] = ACTIONS(703), + [aux_sym_comparison_operator_token30] = ACTIONS(703), + [aux_sym_comparison_operator_token31] = ACTIONS(703), + [aux_sym_comparison_operator_token32] = ACTIONS(703), + [aux_sym_comparison_operator_token33] = ACTIONS(703), + [aux_sym_comparison_operator_token34] = ACTIONS(705), + [aux_sym_comparison_operator_token35] = ACTIONS(703), + [aux_sym_comparison_operator_token36] = ACTIONS(703), + [aux_sym_comparison_operator_token37] = ACTIONS(703), + [aux_sym_comparison_operator_token38] = ACTIONS(703), + [aux_sym_comparison_operator_token39] = ACTIONS(703), + [aux_sym_comparison_operator_token40] = ACTIONS(703), + [aux_sym_comparison_operator_token41] = ACTIONS(703), + [aux_sym_comparison_operator_token42] = ACTIONS(703), + [aux_sym_comparison_operator_token43] = ACTIONS(703), + [aux_sym_comparison_operator_token44] = ACTIONS(703), + [aux_sym_comparison_operator_token45] = ACTIONS(703), + [aux_sym_comparison_operator_token46] = ACTIONS(703), + [aux_sym_comparison_operator_token47] = ACTIONS(703), + [aux_sym_comparison_operator_token48] = ACTIONS(703), + [aux_sym_comparison_operator_token49] = ACTIONS(703), + [aux_sym_comparison_operator_token50] = ACTIONS(703), + [aux_sym_format_operator_token1] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(705), + [aux_sym_logical_expression_token1] = ACTIONS(703), + [aux_sym_logical_expression_token2] = ACTIONS(703), + [aux_sym_logical_expression_token3] = ACTIONS(703), + [aux_sym_bitwise_expression_token1] = ACTIONS(703), + [aux_sym_bitwise_expression_token2] = ACTIONS(703), + [aux_sym_bitwise_expression_token3] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_RBRACK] = ACTIONS(703), }, [165] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_2_GT] = ACTIONS(665), - [anon_sym_2_GT_GT] = ACTIONS(663), - [anon_sym_3_GT] = ACTIONS(665), - [anon_sym_3_GT_GT] = ACTIONS(663), - [anon_sym_4_GT] = ACTIONS(665), - [anon_sym_4_GT_GT] = ACTIONS(663), - [anon_sym_5_GT] = ACTIONS(665), - [anon_sym_5_GT_GT] = ACTIONS(663), - [anon_sym_6_GT] = ACTIONS(665), - [anon_sym_6_GT_GT] = ACTIONS(663), - [anon_sym_STAR_GT] = ACTIONS(665), - [anon_sym_STAR_GT_GT] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_STAR_GT_AMP1] = ACTIONS(663), - [anon_sym_2_GT_AMP1] = ACTIONS(663), - [anon_sym_3_GT_AMP1] = ACTIONS(663), - [anon_sym_4_GT_AMP1] = ACTIONS(663), - [anon_sym_5_GT_AMP1] = ACTIONS(663), - [anon_sym_6_GT_AMP1] = ACTIONS(663), - [anon_sym_STAR_GT_AMP2] = ACTIONS(663), - [anon_sym_1_GT_AMP2] = ACTIONS(663), - [anon_sym_3_GT_AMP2] = ACTIONS(663), - [anon_sym_4_GT_AMP2] = ACTIONS(663), - [anon_sym_5_GT_AMP2] = ACTIONS(663), - [anon_sym_6_GT_AMP2] = ACTIONS(663), - [aux_sym_comparison_operator_token1] = ACTIONS(663), - [aux_sym_comparison_operator_token2] = ACTIONS(663), - [aux_sym_comparison_operator_token3] = ACTIONS(663), - [aux_sym_comparison_operator_token4] = ACTIONS(663), - [aux_sym_comparison_operator_token5] = ACTIONS(663), - [aux_sym_comparison_operator_token6] = ACTIONS(663), - [aux_sym_comparison_operator_token7] = ACTIONS(663), - [aux_sym_comparison_operator_token8] = ACTIONS(663), - [aux_sym_comparison_operator_token9] = ACTIONS(663), - [aux_sym_comparison_operator_token10] = ACTIONS(663), - [aux_sym_comparison_operator_token11] = ACTIONS(663), - [aux_sym_comparison_operator_token12] = ACTIONS(663), - [aux_sym_comparison_operator_token13] = ACTIONS(663), - [aux_sym_comparison_operator_token14] = ACTIONS(663), - [aux_sym_comparison_operator_token15] = ACTIONS(663), - [aux_sym_comparison_operator_token16] = ACTIONS(663), - [aux_sym_comparison_operator_token17] = ACTIONS(663), - [aux_sym_comparison_operator_token18] = ACTIONS(663), - [aux_sym_comparison_operator_token19] = ACTIONS(663), - [aux_sym_comparison_operator_token20] = ACTIONS(663), - [aux_sym_comparison_operator_token21] = ACTIONS(663), - [aux_sym_comparison_operator_token22] = ACTIONS(663), - [aux_sym_comparison_operator_token23] = ACTIONS(663), - [aux_sym_comparison_operator_token24] = ACTIONS(663), - [aux_sym_comparison_operator_token25] = ACTIONS(663), - [aux_sym_comparison_operator_token26] = ACTIONS(663), - [aux_sym_comparison_operator_token27] = ACTIONS(663), - [aux_sym_comparison_operator_token28] = ACTIONS(665), - [aux_sym_comparison_operator_token29] = ACTIONS(663), - [aux_sym_comparison_operator_token30] = ACTIONS(663), - [aux_sym_comparison_operator_token31] = ACTIONS(663), - [aux_sym_comparison_operator_token32] = ACTIONS(663), - [aux_sym_comparison_operator_token33] = ACTIONS(663), - [aux_sym_comparison_operator_token34] = ACTIONS(665), - [aux_sym_comparison_operator_token35] = ACTIONS(663), - [aux_sym_comparison_operator_token36] = ACTIONS(663), - [aux_sym_comparison_operator_token37] = ACTIONS(663), - [aux_sym_comparison_operator_token38] = ACTIONS(663), - [aux_sym_comparison_operator_token39] = ACTIONS(663), - [aux_sym_comparison_operator_token40] = ACTIONS(663), - [aux_sym_comparison_operator_token41] = ACTIONS(663), - [aux_sym_comparison_operator_token42] = ACTIONS(663), - [aux_sym_comparison_operator_token43] = ACTIONS(663), - [aux_sym_comparison_operator_token44] = ACTIONS(663), - [aux_sym_comparison_operator_token45] = ACTIONS(663), - [aux_sym_comparison_operator_token46] = ACTIONS(663), - [aux_sym_comparison_operator_token47] = ACTIONS(663), - [aux_sym_comparison_operator_token48] = ACTIONS(663), - [aux_sym_comparison_operator_token49] = ACTIONS(663), - [aux_sym_comparison_operator_token50] = ACTIONS(663), - [aux_sym_format_operator_token1] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(665), - [aux_sym_logical_expression_token1] = ACTIONS(663), - [aux_sym_logical_expression_token2] = ACTIONS(663), - [aux_sym_logical_expression_token3] = ACTIONS(663), - [aux_sym_bitwise_expression_token1] = ACTIONS(663), - [aux_sym_bitwise_expression_token2] = ACTIONS(663), - [aux_sym_bitwise_expression_token3] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_PLUS_EQ] = ACTIONS(787), + [anon_sym_STAR_EQ] = ACTIONS(787), + [anon_sym_SLASH_EQ] = ACTIONS(787), + [anon_sym_PERCENT_EQ] = ACTIONS(787), + [anon_sym_DASH_EQ] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(787), + [anon_sym_2_GT] = ACTIONS(789), + [anon_sym_2_GT_GT] = ACTIONS(787), + [anon_sym_3_GT] = ACTIONS(789), + [anon_sym_3_GT_GT] = ACTIONS(787), + [anon_sym_4_GT] = ACTIONS(789), + [anon_sym_4_GT_GT] = ACTIONS(787), + [anon_sym_5_GT] = ACTIONS(789), + [anon_sym_5_GT_GT] = ACTIONS(787), + [anon_sym_6_GT] = ACTIONS(789), + [anon_sym_6_GT_GT] = ACTIONS(787), + [anon_sym_STAR_GT] = ACTIONS(789), + [anon_sym_STAR_GT_GT] = ACTIONS(787), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_STAR_GT_AMP1] = ACTIONS(787), + [anon_sym_2_GT_AMP1] = ACTIONS(787), + [anon_sym_3_GT_AMP1] = ACTIONS(787), + [anon_sym_4_GT_AMP1] = ACTIONS(787), + [anon_sym_5_GT_AMP1] = ACTIONS(787), + [anon_sym_6_GT_AMP1] = ACTIONS(787), + [anon_sym_STAR_GT_AMP2] = ACTIONS(787), + [anon_sym_1_GT_AMP2] = ACTIONS(787), + [anon_sym_3_GT_AMP2] = ACTIONS(787), + [anon_sym_4_GT_AMP2] = ACTIONS(787), + [anon_sym_5_GT_AMP2] = ACTIONS(787), + [anon_sym_6_GT_AMP2] = ACTIONS(787), + [aux_sym_comparison_operator_token1] = ACTIONS(787), + [aux_sym_comparison_operator_token2] = ACTIONS(787), + [aux_sym_comparison_operator_token3] = ACTIONS(787), + [aux_sym_comparison_operator_token4] = ACTIONS(787), + [aux_sym_comparison_operator_token5] = ACTIONS(787), + [aux_sym_comparison_operator_token6] = ACTIONS(787), + [aux_sym_comparison_operator_token7] = ACTIONS(787), + [aux_sym_comparison_operator_token8] = ACTIONS(787), + [aux_sym_comparison_operator_token9] = ACTIONS(787), + [aux_sym_comparison_operator_token10] = ACTIONS(787), + [aux_sym_comparison_operator_token11] = ACTIONS(787), + [aux_sym_comparison_operator_token12] = ACTIONS(787), + [aux_sym_comparison_operator_token13] = ACTIONS(787), + [aux_sym_comparison_operator_token14] = ACTIONS(787), + [aux_sym_comparison_operator_token15] = ACTIONS(787), + [aux_sym_comparison_operator_token16] = ACTIONS(787), + [aux_sym_comparison_operator_token17] = ACTIONS(787), + [aux_sym_comparison_operator_token18] = ACTIONS(787), + [aux_sym_comparison_operator_token19] = ACTIONS(787), + [aux_sym_comparison_operator_token20] = ACTIONS(787), + [aux_sym_comparison_operator_token21] = ACTIONS(787), + [aux_sym_comparison_operator_token22] = ACTIONS(787), + [aux_sym_comparison_operator_token23] = ACTIONS(787), + [aux_sym_comparison_operator_token24] = ACTIONS(787), + [aux_sym_comparison_operator_token25] = ACTIONS(787), + [aux_sym_comparison_operator_token26] = ACTIONS(787), + [aux_sym_comparison_operator_token27] = ACTIONS(787), + [aux_sym_comparison_operator_token28] = ACTIONS(789), + [aux_sym_comparison_operator_token29] = ACTIONS(787), + [aux_sym_comparison_operator_token30] = ACTIONS(787), + [aux_sym_comparison_operator_token31] = ACTIONS(787), + [aux_sym_comparison_operator_token32] = ACTIONS(787), + [aux_sym_comparison_operator_token33] = ACTIONS(787), + [aux_sym_comparison_operator_token34] = ACTIONS(789), + [aux_sym_comparison_operator_token35] = ACTIONS(787), + [aux_sym_comparison_operator_token36] = ACTIONS(787), + [aux_sym_comparison_operator_token37] = ACTIONS(787), + [aux_sym_comparison_operator_token38] = ACTIONS(787), + [aux_sym_comparison_operator_token39] = ACTIONS(787), + [aux_sym_comparison_operator_token40] = ACTIONS(787), + [aux_sym_comparison_operator_token41] = ACTIONS(787), + [aux_sym_comparison_operator_token42] = ACTIONS(787), + [aux_sym_comparison_operator_token43] = ACTIONS(787), + [aux_sym_comparison_operator_token44] = ACTIONS(787), + [aux_sym_comparison_operator_token45] = ACTIONS(787), + [aux_sym_comparison_operator_token46] = ACTIONS(787), + [aux_sym_comparison_operator_token47] = ACTIONS(787), + [aux_sym_comparison_operator_token48] = ACTIONS(787), + [aux_sym_comparison_operator_token49] = ACTIONS(787), + [aux_sym_comparison_operator_token50] = ACTIONS(787), + [aux_sym_format_operator_token1] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(789), + [aux_sym_logical_expression_token1] = ACTIONS(787), + [aux_sym_logical_expression_token2] = ACTIONS(787), + [aux_sym_logical_expression_token3] = ACTIONS(787), + [aux_sym_bitwise_expression_token1] = ACTIONS(787), + [aux_sym_bitwise_expression_token2] = ACTIONS(787), + [aux_sym_bitwise_expression_token3] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_BSLASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), }, [166] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_PLUS_EQ] = ACTIONS(729), - [anon_sym_STAR_EQ] = ACTIONS(729), - [anon_sym_SLASH_EQ] = ACTIONS(729), - [anon_sym_PERCENT_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_2_GT] = ACTIONS(731), - [anon_sym_2_GT_GT] = ACTIONS(729), - [anon_sym_3_GT] = ACTIONS(731), - [anon_sym_3_GT_GT] = ACTIONS(729), - [anon_sym_4_GT] = ACTIONS(731), - [anon_sym_4_GT_GT] = ACTIONS(729), - [anon_sym_5_GT] = ACTIONS(731), - [anon_sym_5_GT_GT] = ACTIONS(729), - [anon_sym_6_GT] = ACTIONS(731), - [anon_sym_6_GT_GT] = ACTIONS(729), - [anon_sym_STAR_GT] = ACTIONS(731), - [anon_sym_STAR_GT_GT] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_STAR_GT_AMP1] = ACTIONS(729), - [anon_sym_2_GT_AMP1] = ACTIONS(729), - [anon_sym_3_GT_AMP1] = ACTIONS(729), - [anon_sym_4_GT_AMP1] = ACTIONS(729), - [anon_sym_5_GT_AMP1] = ACTIONS(729), - [anon_sym_6_GT_AMP1] = ACTIONS(729), - [anon_sym_STAR_GT_AMP2] = ACTIONS(729), - [anon_sym_1_GT_AMP2] = ACTIONS(729), - [anon_sym_3_GT_AMP2] = ACTIONS(729), - [anon_sym_4_GT_AMP2] = ACTIONS(729), - [anon_sym_5_GT_AMP2] = ACTIONS(729), - [anon_sym_6_GT_AMP2] = ACTIONS(729), - [aux_sym_comparison_operator_token1] = ACTIONS(729), - [aux_sym_comparison_operator_token2] = ACTIONS(729), - [aux_sym_comparison_operator_token3] = ACTIONS(729), - [aux_sym_comparison_operator_token4] = ACTIONS(729), - [aux_sym_comparison_operator_token5] = ACTIONS(729), - [aux_sym_comparison_operator_token6] = ACTIONS(729), - [aux_sym_comparison_operator_token7] = ACTIONS(729), - [aux_sym_comparison_operator_token8] = ACTIONS(729), - [aux_sym_comparison_operator_token9] = ACTIONS(729), - [aux_sym_comparison_operator_token10] = ACTIONS(729), - [aux_sym_comparison_operator_token11] = ACTIONS(729), - [aux_sym_comparison_operator_token12] = ACTIONS(729), - [aux_sym_comparison_operator_token13] = ACTIONS(729), - [aux_sym_comparison_operator_token14] = ACTIONS(729), - [aux_sym_comparison_operator_token15] = ACTIONS(729), - [aux_sym_comparison_operator_token16] = ACTIONS(729), - [aux_sym_comparison_operator_token17] = ACTIONS(729), - [aux_sym_comparison_operator_token18] = ACTIONS(729), - [aux_sym_comparison_operator_token19] = ACTIONS(729), - [aux_sym_comparison_operator_token20] = ACTIONS(729), - [aux_sym_comparison_operator_token21] = ACTIONS(729), - [aux_sym_comparison_operator_token22] = ACTIONS(729), - [aux_sym_comparison_operator_token23] = ACTIONS(729), - [aux_sym_comparison_operator_token24] = ACTIONS(729), - [aux_sym_comparison_operator_token25] = ACTIONS(729), - [aux_sym_comparison_operator_token26] = ACTIONS(729), - [aux_sym_comparison_operator_token27] = ACTIONS(729), - [aux_sym_comparison_operator_token28] = ACTIONS(731), - [aux_sym_comparison_operator_token29] = ACTIONS(729), - [aux_sym_comparison_operator_token30] = ACTIONS(729), - [aux_sym_comparison_operator_token31] = ACTIONS(729), - [aux_sym_comparison_operator_token32] = ACTIONS(729), - [aux_sym_comparison_operator_token33] = ACTIONS(729), - [aux_sym_comparison_operator_token34] = ACTIONS(731), - [aux_sym_comparison_operator_token35] = ACTIONS(729), - [aux_sym_comparison_operator_token36] = ACTIONS(729), - [aux_sym_comparison_operator_token37] = ACTIONS(729), - [aux_sym_comparison_operator_token38] = ACTIONS(729), - [aux_sym_comparison_operator_token39] = ACTIONS(729), - [aux_sym_comparison_operator_token40] = ACTIONS(729), - [aux_sym_comparison_operator_token41] = ACTIONS(729), - [aux_sym_comparison_operator_token42] = ACTIONS(729), - [aux_sym_comparison_operator_token43] = ACTIONS(729), - [aux_sym_comparison_operator_token44] = ACTIONS(729), - [aux_sym_comparison_operator_token45] = ACTIONS(729), - [aux_sym_comparison_operator_token46] = ACTIONS(729), - [aux_sym_comparison_operator_token47] = ACTIONS(729), - [aux_sym_comparison_operator_token48] = ACTIONS(729), - [aux_sym_comparison_operator_token49] = ACTIONS(729), - [aux_sym_comparison_operator_token50] = ACTIONS(729), - [aux_sym_format_operator_token1] = ACTIONS(729), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(731), - [aux_sym_logical_expression_token1] = ACTIONS(729), - [aux_sym_logical_expression_token2] = ACTIONS(729), - [aux_sym_logical_expression_token3] = ACTIONS(729), - [aux_sym_bitwise_expression_token1] = ACTIONS(729), - [aux_sym_bitwise_expression_token2] = ACTIONS(729), - [aux_sym_bitwise_expression_token3] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_DOT_DOT] = ACTIONS(729), - [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_2_GT] = ACTIONS(773), + [anon_sym_2_GT_GT] = ACTIONS(771), + [anon_sym_3_GT] = ACTIONS(773), + [anon_sym_3_GT_GT] = ACTIONS(771), + [anon_sym_4_GT] = ACTIONS(773), + [anon_sym_4_GT_GT] = ACTIONS(771), + [anon_sym_5_GT] = ACTIONS(773), + [anon_sym_5_GT_GT] = ACTIONS(771), + [anon_sym_6_GT] = ACTIONS(773), + [anon_sym_6_GT_GT] = ACTIONS(771), + [anon_sym_STAR_GT] = ACTIONS(773), + [anon_sym_STAR_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_STAR_GT_AMP1] = ACTIONS(771), + [anon_sym_2_GT_AMP1] = ACTIONS(771), + [anon_sym_3_GT_AMP1] = ACTIONS(771), + [anon_sym_4_GT_AMP1] = ACTIONS(771), + [anon_sym_5_GT_AMP1] = ACTIONS(771), + [anon_sym_6_GT_AMP1] = ACTIONS(771), + [anon_sym_STAR_GT_AMP2] = ACTIONS(771), + [anon_sym_1_GT_AMP2] = ACTIONS(771), + [anon_sym_3_GT_AMP2] = ACTIONS(771), + [anon_sym_4_GT_AMP2] = ACTIONS(771), + [anon_sym_5_GT_AMP2] = ACTIONS(771), + [anon_sym_6_GT_AMP2] = ACTIONS(771), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(773), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_DOT_DOT] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(771), }, [167] = { - [aux_sym_array_literal_expression_repeat1] = STATE(171), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_PLUS_EQ] = ACTIONS(769), - [anon_sym_STAR_EQ] = ACTIONS(769), - [anon_sym_SLASH_EQ] = ACTIONS(769), - [anon_sym_PERCENT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_2_GT] = ACTIONS(771), - [anon_sym_2_GT_GT] = ACTIONS(769), - [anon_sym_3_GT] = ACTIONS(771), - [anon_sym_3_GT_GT] = ACTIONS(769), - [anon_sym_4_GT] = ACTIONS(771), - [anon_sym_4_GT_GT] = ACTIONS(769), - [anon_sym_5_GT] = ACTIONS(771), - [anon_sym_5_GT_GT] = ACTIONS(769), - [anon_sym_6_GT] = ACTIONS(771), - [anon_sym_6_GT_GT] = ACTIONS(769), - [anon_sym_STAR_GT] = ACTIONS(771), - [anon_sym_STAR_GT_GT] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_STAR_GT_AMP1] = ACTIONS(769), - [anon_sym_2_GT_AMP1] = ACTIONS(769), - [anon_sym_3_GT_AMP1] = ACTIONS(769), - [anon_sym_4_GT_AMP1] = ACTIONS(769), - [anon_sym_5_GT_AMP1] = ACTIONS(769), - [anon_sym_6_GT_AMP1] = ACTIONS(769), - [anon_sym_STAR_GT_AMP2] = ACTIONS(769), - [anon_sym_1_GT_AMP2] = ACTIONS(769), - [anon_sym_3_GT_AMP2] = ACTIONS(769), - [anon_sym_4_GT_AMP2] = ACTIONS(769), - [anon_sym_5_GT_AMP2] = ACTIONS(769), - [anon_sym_6_GT_AMP2] = ACTIONS(769), - [aux_sym_comparison_operator_token1] = ACTIONS(769), - [aux_sym_comparison_operator_token2] = ACTIONS(769), - [aux_sym_comparison_operator_token3] = ACTIONS(769), - [aux_sym_comparison_operator_token4] = ACTIONS(769), - [aux_sym_comparison_operator_token5] = ACTIONS(769), - [aux_sym_comparison_operator_token6] = ACTIONS(769), - [aux_sym_comparison_operator_token7] = ACTIONS(769), - [aux_sym_comparison_operator_token8] = ACTIONS(769), - [aux_sym_comparison_operator_token9] = ACTIONS(769), - [aux_sym_comparison_operator_token10] = ACTIONS(769), - [aux_sym_comparison_operator_token11] = ACTIONS(769), - [aux_sym_comparison_operator_token12] = ACTIONS(769), - [aux_sym_comparison_operator_token13] = ACTIONS(769), - [aux_sym_comparison_operator_token14] = ACTIONS(769), - [aux_sym_comparison_operator_token15] = ACTIONS(769), - [aux_sym_comparison_operator_token16] = ACTIONS(769), - [aux_sym_comparison_operator_token17] = ACTIONS(769), - [aux_sym_comparison_operator_token18] = ACTIONS(769), - [aux_sym_comparison_operator_token19] = ACTIONS(769), - [aux_sym_comparison_operator_token20] = ACTIONS(769), - [aux_sym_comparison_operator_token21] = ACTIONS(769), - [aux_sym_comparison_operator_token22] = ACTIONS(769), - [aux_sym_comparison_operator_token23] = ACTIONS(769), - [aux_sym_comparison_operator_token24] = ACTIONS(769), - [aux_sym_comparison_operator_token25] = ACTIONS(769), - [aux_sym_comparison_operator_token26] = ACTIONS(769), - [aux_sym_comparison_operator_token27] = ACTIONS(769), - [aux_sym_comparison_operator_token28] = ACTIONS(771), - [aux_sym_comparison_operator_token29] = ACTIONS(769), - [aux_sym_comparison_operator_token30] = ACTIONS(769), - [aux_sym_comparison_operator_token31] = ACTIONS(769), - [aux_sym_comparison_operator_token32] = ACTIONS(769), - [aux_sym_comparison_operator_token33] = ACTIONS(769), - [aux_sym_comparison_operator_token34] = ACTIONS(771), - [aux_sym_comparison_operator_token35] = ACTIONS(769), - [aux_sym_comparison_operator_token36] = ACTIONS(769), - [aux_sym_comparison_operator_token37] = ACTIONS(769), - [aux_sym_comparison_operator_token38] = ACTIONS(769), - [aux_sym_comparison_operator_token39] = ACTIONS(769), - [aux_sym_comparison_operator_token40] = ACTIONS(769), - [aux_sym_comparison_operator_token41] = ACTIONS(769), - [aux_sym_comparison_operator_token42] = ACTIONS(769), - [aux_sym_comparison_operator_token43] = ACTIONS(769), - [aux_sym_comparison_operator_token44] = ACTIONS(769), - [aux_sym_comparison_operator_token45] = ACTIONS(769), - [aux_sym_comparison_operator_token46] = ACTIONS(769), - [aux_sym_comparison_operator_token47] = ACTIONS(769), - [aux_sym_comparison_operator_token48] = ACTIONS(769), - [aux_sym_comparison_operator_token49] = ACTIONS(769), - [aux_sym_comparison_operator_token50] = ACTIONS(769), - [aux_sym_format_operator_token1] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(771), - [aux_sym_logical_expression_token1] = ACTIONS(769), - [aux_sym_logical_expression_token2] = ACTIONS(769), - [aux_sym_logical_expression_token3] = ACTIONS(769), - [aux_sym_bitwise_expression_token1] = ACTIONS(769), - [aux_sym_bitwise_expression_token2] = ACTIONS(769), - [aux_sym_bitwise_expression_token3] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_2_GT] = ACTIONS(717), + [anon_sym_2_GT_GT] = ACTIONS(715), + [anon_sym_3_GT] = ACTIONS(717), + [anon_sym_3_GT_GT] = ACTIONS(715), + [anon_sym_4_GT] = ACTIONS(717), + [anon_sym_4_GT_GT] = ACTIONS(715), + [anon_sym_5_GT] = ACTIONS(717), + [anon_sym_5_GT_GT] = ACTIONS(715), + [anon_sym_6_GT] = ACTIONS(717), + [anon_sym_6_GT_GT] = ACTIONS(715), + [anon_sym_STAR_GT] = ACTIONS(717), + [anon_sym_STAR_GT_GT] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_STAR_GT_AMP1] = ACTIONS(715), + [anon_sym_2_GT_AMP1] = ACTIONS(715), + [anon_sym_3_GT_AMP1] = ACTIONS(715), + [anon_sym_4_GT_AMP1] = ACTIONS(715), + [anon_sym_5_GT_AMP1] = ACTIONS(715), + [anon_sym_6_GT_AMP1] = ACTIONS(715), + [anon_sym_STAR_GT_AMP2] = ACTIONS(715), + [anon_sym_1_GT_AMP2] = ACTIONS(715), + [anon_sym_3_GT_AMP2] = ACTIONS(715), + [anon_sym_4_GT_AMP2] = ACTIONS(715), + [anon_sym_5_GT_AMP2] = ACTIONS(715), + [anon_sym_6_GT_AMP2] = ACTIONS(715), + [aux_sym_comparison_operator_token1] = ACTIONS(715), + [aux_sym_comparison_operator_token2] = ACTIONS(715), + [aux_sym_comparison_operator_token3] = ACTIONS(715), + [aux_sym_comparison_operator_token4] = ACTIONS(715), + [aux_sym_comparison_operator_token5] = ACTIONS(715), + [aux_sym_comparison_operator_token6] = ACTIONS(715), + [aux_sym_comparison_operator_token7] = ACTIONS(715), + [aux_sym_comparison_operator_token8] = ACTIONS(715), + [aux_sym_comparison_operator_token9] = ACTIONS(715), + [aux_sym_comparison_operator_token10] = ACTIONS(715), + [aux_sym_comparison_operator_token11] = ACTIONS(715), + [aux_sym_comparison_operator_token12] = ACTIONS(715), + [aux_sym_comparison_operator_token13] = ACTIONS(715), + [aux_sym_comparison_operator_token14] = ACTIONS(715), + [aux_sym_comparison_operator_token15] = ACTIONS(715), + [aux_sym_comparison_operator_token16] = ACTIONS(715), + [aux_sym_comparison_operator_token17] = ACTIONS(715), + [aux_sym_comparison_operator_token18] = ACTIONS(715), + [aux_sym_comparison_operator_token19] = ACTIONS(715), + [aux_sym_comparison_operator_token20] = ACTIONS(715), + [aux_sym_comparison_operator_token21] = ACTIONS(715), + [aux_sym_comparison_operator_token22] = ACTIONS(715), + [aux_sym_comparison_operator_token23] = ACTIONS(715), + [aux_sym_comparison_operator_token24] = ACTIONS(715), + [aux_sym_comparison_operator_token25] = ACTIONS(715), + [aux_sym_comparison_operator_token26] = ACTIONS(715), + [aux_sym_comparison_operator_token27] = ACTIONS(715), + [aux_sym_comparison_operator_token28] = ACTIONS(717), + [aux_sym_comparison_operator_token29] = ACTIONS(715), + [aux_sym_comparison_operator_token30] = ACTIONS(715), + [aux_sym_comparison_operator_token31] = ACTIONS(715), + [aux_sym_comparison_operator_token32] = ACTIONS(715), + [aux_sym_comparison_operator_token33] = ACTIONS(715), + [aux_sym_comparison_operator_token34] = ACTIONS(717), + [aux_sym_comparison_operator_token35] = ACTIONS(715), + [aux_sym_comparison_operator_token36] = ACTIONS(715), + [aux_sym_comparison_operator_token37] = ACTIONS(715), + [aux_sym_comparison_operator_token38] = ACTIONS(715), + [aux_sym_comparison_operator_token39] = ACTIONS(715), + [aux_sym_comparison_operator_token40] = ACTIONS(715), + [aux_sym_comparison_operator_token41] = ACTIONS(715), + [aux_sym_comparison_operator_token42] = ACTIONS(715), + [aux_sym_comparison_operator_token43] = ACTIONS(715), + [aux_sym_comparison_operator_token44] = ACTIONS(715), + [aux_sym_comparison_operator_token45] = ACTIONS(715), + [aux_sym_comparison_operator_token46] = ACTIONS(715), + [aux_sym_comparison_operator_token47] = ACTIONS(715), + [aux_sym_comparison_operator_token48] = ACTIONS(715), + [aux_sym_comparison_operator_token49] = ACTIONS(715), + [aux_sym_comparison_operator_token50] = ACTIONS(715), + [aux_sym_format_operator_token1] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(717), + [aux_sym_logical_expression_token1] = ACTIONS(715), + [aux_sym_logical_expression_token2] = ACTIONS(715), + [aux_sym_logical_expression_token3] = ACTIONS(715), + [aux_sym_bitwise_expression_token1] = ACTIONS(715), + [aux_sym_bitwise_expression_token2] = ACTIONS(715), + [aux_sym_bitwise_expression_token3] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(715), + [anon_sym_RBRACK] = ACTIONS(715), }, [168] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_2_GT] = ACTIONS(673), - [anon_sym_2_GT_GT] = ACTIONS(671), - [anon_sym_3_GT] = ACTIONS(673), - [anon_sym_3_GT_GT] = ACTIONS(671), - [anon_sym_4_GT] = ACTIONS(673), - [anon_sym_4_GT_GT] = ACTIONS(671), - [anon_sym_5_GT] = ACTIONS(673), - [anon_sym_5_GT_GT] = ACTIONS(671), - [anon_sym_6_GT] = ACTIONS(673), - [anon_sym_6_GT_GT] = ACTIONS(671), - [anon_sym_STAR_GT] = ACTIONS(673), - [anon_sym_STAR_GT_GT] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_STAR_GT_AMP1] = ACTIONS(671), - [anon_sym_2_GT_AMP1] = ACTIONS(671), - [anon_sym_3_GT_AMP1] = ACTIONS(671), - [anon_sym_4_GT_AMP1] = ACTIONS(671), - [anon_sym_5_GT_AMP1] = ACTIONS(671), - [anon_sym_6_GT_AMP1] = ACTIONS(671), - [anon_sym_STAR_GT_AMP2] = ACTIONS(671), - [anon_sym_1_GT_AMP2] = ACTIONS(671), - [anon_sym_3_GT_AMP2] = ACTIONS(671), - [anon_sym_4_GT_AMP2] = ACTIONS(671), - [anon_sym_5_GT_AMP2] = ACTIONS(671), - [anon_sym_6_GT_AMP2] = ACTIONS(671), - [aux_sym_comparison_operator_token1] = ACTIONS(671), - [aux_sym_comparison_operator_token2] = ACTIONS(671), - [aux_sym_comparison_operator_token3] = ACTIONS(671), - [aux_sym_comparison_operator_token4] = ACTIONS(671), - [aux_sym_comparison_operator_token5] = ACTIONS(671), - [aux_sym_comparison_operator_token6] = ACTIONS(671), - [aux_sym_comparison_operator_token7] = ACTIONS(671), - [aux_sym_comparison_operator_token8] = ACTIONS(671), - [aux_sym_comparison_operator_token9] = ACTIONS(671), - [aux_sym_comparison_operator_token10] = ACTIONS(671), - [aux_sym_comparison_operator_token11] = ACTIONS(671), - [aux_sym_comparison_operator_token12] = ACTIONS(671), - [aux_sym_comparison_operator_token13] = ACTIONS(671), - [aux_sym_comparison_operator_token14] = ACTIONS(671), - [aux_sym_comparison_operator_token15] = ACTIONS(671), - [aux_sym_comparison_operator_token16] = ACTIONS(671), - [aux_sym_comparison_operator_token17] = ACTIONS(671), - [aux_sym_comparison_operator_token18] = ACTIONS(671), - [aux_sym_comparison_operator_token19] = ACTIONS(671), - [aux_sym_comparison_operator_token20] = ACTIONS(671), - [aux_sym_comparison_operator_token21] = ACTIONS(671), - [aux_sym_comparison_operator_token22] = ACTIONS(671), - [aux_sym_comparison_operator_token23] = ACTIONS(671), - [aux_sym_comparison_operator_token24] = ACTIONS(671), - [aux_sym_comparison_operator_token25] = ACTIONS(671), - [aux_sym_comparison_operator_token26] = ACTIONS(671), - [aux_sym_comparison_operator_token27] = ACTIONS(671), - [aux_sym_comparison_operator_token28] = ACTIONS(673), - [aux_sym_comparison_operator_token29] = ACTIONS(671), - [aux_sym_comparison_operator_token30] = ACTIONS(671), - [aux_sym_comparison_operator_token31] = ACTIONS(671), - [aux_sym_comparison_operator_token32] = ACTIONS(671), - [aux_sym_comparison_operator_token33] = ACTIONS(671), - [aux_sym_comparison_operator_token34] = ACTIONS(673), - [aux_sym_comparison_operator_token35] = ACTIONS(671), - [aux_sym_comparison_operator_token36] = ACTIONS(671), - [aux_sym_comparison_operator_token37] = ACTIONS(671), - [aux_sym_comparison_operator_token38] = ACTIONS(671), - [aux_sym_comparison_operator_token39] = ACTIONS(671), - [aux_sym_comparison_operator_token40] = ACTIONS(671), - [aux_sym_comparison_operator_token41] = ACTIONS(671), - [aux_sym_comparison_operator_token42] = ACTIONS(671), - [aux_sym_comparison_operator_token43] = ACTIONS(671), - [aux_sym_comparison_operator_token44] = ACTIONS(671), - [aux_sym_comparison_operator_token45] = ACTIONS(671), - [aux_sym_comparison_operator_token46] = ACTIONS(671), - [aux_sym_comparison_operator_token47] = ACTIONS(671), - [aux_sym_comparison_operator_token48] = ACTIONS(671), - [aux_sym_comparison_operator_token49] = ACTIONS(671), - [aux_sym_comparison_operator_token50] = ACTIONS(671), - [aux_sym_format_operator_token1] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(673), - [aux_sym_logical_expression_token1] = ACTIONS(671), - [aux_sym_logical_expression_token2] = ACTIONS(671), - [aux_sym_logical_expression_token3] = ACTIONS(671), - [aux_sym_bitwise_expression_token1] = ACTIONS(671), - [aux_sym_bitwise_expression_token2] = ACTIONS(671), - [aux_sym_bitwise_expression_token3] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(671), - [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_BANG_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_2_GT] = ACTIONS(713), + [anon_sym_2_GT_GT] = ACTIONS(711), + [anon_sym_3_GT] = ACTIONS(713), + [anon_sym_3_GT_GT] = ACTIONS(711), + [anon_sym_4_GT] = ACTIONS(713), + [anon_sym_4_GT_GT] = ACTIONS(711), + [anon_sym_5_GT] = ACTIONS(713), + [anon_sym_5_GT_GT] = ACTIONS(711), + [anon_sym_6_GT] = ACTIONS(713), + [anon_sym_6_GT_GT] = ACTIONS(711), + [anon_sym_STAR_GT] = ACTIONS(713), + [anon_sym_STAR_GT_GT] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_STAR_GT_AMP1] = ACTIONS(711), + [anon_sym_2_GT_AMP1] = ACTIONS(711), + [anon_sym_3_GT_AMP1] = ACTIONS(711), + [anon_sym_4_GT_AMP1] = ACTIONS(711), + [anon_sym_5_GT_AMP1] = ACTIONS(711), + [anon_sym_6_GT_AMP1] = ACTIONS(711), + [anon_sym_STAR_GT_AMP2] = ACTIONS(711), + [anon_sym_1_GT_AMP2] = ACTIONS(711), + [anon_sym_3_GT_AMP2] = ACTIONS(711), + [anon_sym_4_GT_AMP2] = ACTIONS(711), + [anon_sym_5_GT_AMP2] = ACTIONS(711), + [anon_sym_6_GT_AMP2] = ACTIONS(711), + [aux_sym_comparison_operator_token1] = ACTIONS(711), + [aux_sym_comparison_operator_token2] = ACTIONS(711), + [aux_sym_comparison_operator_token3] = ACTIONS(711), + [aux_sym_comparison_operator_token4] = ACTIONS(711), + [aux_sym_comparison_operator_token5] = ACTIONS(711), + [aux_sym_comparison_operator_token6] = ACTIONS(711), + [aux_sym_comparison_operator_token7] = ACTIONS(711), + [aux_sym_comparison_operator_token8] = ACTIONS(711), + [aux_sym_comparison_operator_token9] = ACTIONS(711), + [aux_sym_comparison_operator_token10] = ACTIONS(711), + [aux_sym_comparison_operator_token11] = ACTIONS(711), + [aux_sym_comparison_operator_token12] = ACTIONS(711), + [aux_sym_comparison_operator_token13] = ACTIONS(711), + [aux_sym_comparison_operator_token14] = ACTIONS(711), + [aux_sym_comparison_operator_token15] = ACTIONS(711), + [aux_sym_comparison_operator_token16] = ACTIONS(711), + [aux_sym_comparison_operator_token17] = ACTIONS(711), + [aux_sym_comparison_operator_token18] = ACTIONS(711), + [aux_sym_comparison_operator_token19] = ACTIONS(711), + [aux_sym_comparison_operator_token20] = ACTIONS(711), + [aux_sym_comparison_operator_token21] = ACTIONS(711), + [aux_sym_comparison_operator_token22] = ACTIONS(711), + [aux_sym_comparison_operator_token23] = ACTIONS(711), + [aux_sym_comparison_operator_token24] = ACTIONS(711), + [aux_sym_comparison_operator_token25] = ACTIONS(711), + [aux_sym_comparison_operator_token26] = ACTIONS(711), + [aux_sym_comparison_operator_token27] = ACTIONS(711), + [aux_sym_comparison_operator_token28] = ACTIONS(713), + [aux_sym_comparison_operator_token29] = ACTIONS(711), + [aux_sym_comparison_operator_token30] = ACTIONS(711), + [aux_sym_comparison_operator_token31] = ACTIONS(711), + [aux_sym_comparison_operator_token32] = ACTIONS(711), + [aux_sym_comparison_operator_token33] = ACTIONS(711), + [aux_sym_comparison_operator_token34] = ACTIONS(713), + [aux_sym_comparison_operator_token35] = ACTIONS(711), + [aux_sym_comparison_operator_token36] = ACTIONS(711), + [aux_sym_comparison_operator_token37] = ACTIONS(711), + [aux_sym_comparison_operator_token38] = ACTIONS(711), + [aux_sym_comparison_operator_token39] = ACTIONS(711), + [aux_sym_comparison_operator_token40] = ACTIONS(711), + [aux_sym_comparison_operator_token41] = ACTIONS(711), + [aux_sym_comparison_operator_token42] = ACTIONS(711), + [aux_sym_comparison_operator_token43] = ACTIONS(711), + [aux_sym_comparison_operator_token44] = ACTIONS(711), + [aux_sym_comparison_operator_token45] = ACTIONS(711), + [aux_sym_comparison_operator_token46] = ACTIONS(711), + [aux_sym_comparison_operator_token47] = ACTIONS(711), + [aux_sym_comparison_operator_token48] = ACTIONS(711), + [aux_sym_comparison_operator_token49] = ACTIONS(711), + [aux_sym_comparison_operator_token50] = ACTIONS(711), + [aux_sym_format_operator_token1] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(713), + [aux_sym_logical_expression_token1] = ACTIONS(711), + [aux_sym_logical_expression_token2] = ACTIONS(711), + [aux_sym_logical_expression_token3] = ACTIONS(711), + [aux_sym_bitwise_expression_token1] = ACTIONS(711), + [aux_sym_bitwise_expression_token2] = ACTIONS(711), + [aux_sym_bitwise_expression_token3] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(711), }, [169] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_BANG_EQ] = ACTIONS(788), - [anon_sym_PLUS_EQ] = ACTIONS(788), - [anon_sym_STAR_EQ] = ACTIONS(788), - [anon_sym_SLASH_EQ] = ACTIONS(788), - [anon_sym_PERCENT_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_2_GT] = ACTIONS(790), - [anon_sym_2_GT_GT] = ACTIONS(788), - [anon_sym_3_GT] = ACTIONS(790), - [anon_sym_3_GT_GT] = ACTIONS(788), - [anon_sym_4_GT] = ACTIONS(790), - [anon_sym_4_GT_GT] = ACTIONS(788), - [anon_sym_5_GT] = ACTIONS(790), - [anon_sym_5_GT_GT] = ACTIONS(788), - [anon_sym_6_GT] = ACTIONS(790), - [anon_sym_6_GT_GT] = ACTIONS(788), - [anon_sym_STAR_GT] = ACTIONS(790), - [anon_sym_STAR_GT_GT] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_STAR_GT_AMP1] = ACTIONS(788), - [anon_sym_2_GT_AMP1] = ACTIONS(788), - [anon_sym_3_GT_AMP1] = ACTIONS(788), - [anon_sym_4_GT_AMP1] = ACTIONS(788), - [anon_sym_5_GT_AMP1] = ACTIONS(788), - [anon_sym_6_GT_AMP1] = ACTIONS(788), - [anon_sym_STAR_GT_AMP2] = ACTIONS(788), - [anon_sym_1_GT_AMP2] = ACTIONS(788), - [anon_sym_3_GT_AMP2] = ACTIONS(788), - [anon_sym_4_GT_AMP2] = ACTIONS(788), - [anon_sym_5_GT_AMP2] = ACTIONS(788), - [anon_sym_6_GT_AMP2] = ACTIONS(788), - [aux_sym_comparison_operator_token1] = ACTIONS(788), - [aux_sym_comparison_operator_token2] = ACTIONS(788), - [aux_sym_comparison_operator_token3] = ACTIONS(788), - [aux_sym_comparison_operator_token4] = ACTIONS(788), - [aux_sym_comparison_operator_token5] = ACTIONS(788), - [aux_sym_comparison_operator_token6] = ACTIONS(788), - [aux_sym_comparison_operator_token7] = ACTIONS(788), - [aux_sym_comparison_operator_token8] = ACTIONS(788), - [aux_sym_comparison_operator_token9] = ACTIONS(788), - [aux_sym_comparison_operator_token10] = ACTIONS(788), - [aux_sym_comparison_operator_token11] = ACTIONS(788), - [aux_sym_comparison_operator_token12] = ACTIONS(788), - [aux_sym_comparison_operator_token13] = ACTIONS(788), - [aux_sym_comparison_operator_token14] = ACTIONS(788), - [aux_sym_comparison_operator_token15] = ACTIONS(788), - [aux_sym_comparison_operator_token16] = ACTIONS(788), - [aux_sym_comparison_operator_token17] = ACTIONS(788), - [aux_sym_comparison_operator_token18] = ACTIONS(788), - [aux_sym_comparison_operator_token19] = ACTIONS(788), - [aux_sym_comparison_operator_token20] = ACTIONS(788), - [aux_sym_comparison_operator_token21] = ACTIONS(788), - [aux_sym_comparison_operator_token22] = ACTIONS(788), - [aux_sym_comparison_operator_token23] = ACTIONS(788), - [aux_sym_comparison_operator_token24] = ACTIONS(788), - [aux_sym_comparison_operator_token25] = ACTIONS(788), - [aux_sym_comparison_operator_token26] = ACTIONS(788), - [aux_sym_comparison_operator_token27] = ACTIONS(788), - [aux_sym_comparison_operator_token28] = ACTIONS(790), - [aux_sym_comparison_operator_token29] = ACTIONS(788), - [aux_sym_comparison_operator_token30] = ACTIONS(788), - [aux_sym_comparison_operator_token31] = ACTIONS(788), - [aux_sym_comparison_operator_token32] = ACTIONS(788), - [aux_sym_comparison_operator_token33] = ACTIONS(788), - [aux_sym_comparison_operator_token34] = ACTIONS(790), - [aux_sym_comparison_operator_token35] = ACTIONS(788), - [aux_sym_comparison_operator_token36] = ACTIONS(788), - [aux_sym_comparison_operator_token37] = ACTIONS(788), - [aux_sym_comparison_operator_token38] = ACTIONS(788), - [aux_sym_comparison_operator_token39] = ACTIONS(788), - [aux_sym_comparison_operator_token40] = ACTIONS(788), - [aux_sym_comparison_operator_token41] = ACTIONS(788), - [aux_sym_comparison_operator_token42] = ACTIONS(788), - [aux_sym_comparison_operator_token43] = ACTIONS(788), - [aux_sym_comparison_operator_token44] = ACTIONS(788), - [aux_sym_comparison_operator_token45] = ACTIONS(788), - [aux_sym_comparison_operator_token46] = ACTIONS(788), - [aux_sym_comparison_operator_token47] = ACTIONS(788), - [aux_sym_comparison_operator_token48] = ACTIONS(788), - [aux_sym_comparison_operator_token49] = ACTIONS(788), - [aux_sym_comparison_operator_token50] = ACTIONS(788), - [aux_sym_format_operator_token1] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(790), - [aux_sym_logical_expression_token1] = ACTIONS(788), - [aux_sym_logical_expression_token2] = ACTIONS(788), - [aux_sym_logical_expression_token3] = ACTIONS(788), - [aux_sym_bitwise_expression_token1] = ACTIONS(788), - [aux_sym_bitwise_expression_token2] = ACTIONS(788), - [aux_sym_bitwise_expression_token3] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(790), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_BSLASH] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(790), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_RBRACK] = ACTIONS(788), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_PLUS_EQ] = ACTIONS(791), + [anon_sym_STAR_EQ] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(791), + [anon_sym_PERCENT_EQ] = ACTIONS(791), + [anon_sym_DASH_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_2_GT] = ACTIONS(793), + [anon_sym_2_GT_GT] = ACTIONS(791), + [anon_sym_3_GT] = ACTIONS(793), + [anon_sym_3_GT_GT] = ACTIONS(791), + [anon_sym_4_GT] = ACTIONS(793), + [anon_sym_4_GT_GT] = ACTIONS(791), + [anon_sym_5_GT] = ACTIONS(793), + [anon_sym_5_GT_GT] = ACTIONS(791), + [anon_sym_6_GT] = ACTIONS(793), + [anon_sym_6_GT_GT] = ACTIONS(791), + [anon_sym_STAR_GT] = ACTIONS(793), + [anon_sym_STAR_GT_GT] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_STAR_GT_AMP1] = ACTIONS(791), + [anon_sym_2_GT_AMP1] = ACTIONS(791), + [anon_sym_3_GT_AMP1] = ACTIONS(791), + [anon_sym_4_GT_AMP1] = ACTIONS(791), + [anon_sym_5_GT_AMP1] = ACTIONS(791), + [anon_sym_6_GT_AMP1] = ACTIONS(791), + [anon_sym_STAR_GT_AMP2] = ACTIONS(791), + [anon_sym_1_GT_AMP2] = ACTIONS(791), + [anon_sym_3_GT_AMP2] = ACTIONS(791), + [anon_sym_4_GT_AMP2] = ACTIONS(791), + [anon_sym_5_GT_AMP2] = ACTIONS(791), + [anon_sym_6_GT_AMP2] = ACTIONS(791), + [aux_sym_comparison_operator_token1] = ACTIONS(791), + [aux_sym_comparison_operator_token2] = ACTIONS(791), + [aux_sym_comparison_operator_token3] = ACTIONS(791), + [aux_sym_comparison_operator_token4] = ACTIONS(791), + [aux_sym_comparison_operator_token5] = ACTIONS(791), + [aux_sym_comparison_operator_token6] = ACTIONS(791), + [aux_sym_comparison_operator_token7] = ACTIONS(791), + [aux_sym_comparison_operator_token8] = ACTIONS(791), + [aux_sym_comparison_operator_token9] = ACTIONS(791), + [aux_sym_comparison_operator_token10] = ACTIONS(791), + [aux_sym_comparison_operator_token11] = ACTIONS(791), + [aux_sym_comparison_operator_token12] = ACTIONS(791), + [aux_sym_comparison_operator_token13] = ACTIONS(791), + [aux_sym_comparison_operator_token14] = ACTIONS(791), + [aux_sym_comparison_operator_token15] = ACTIONS(791), + [aux_sym_comparison_operator_token16] = ACTIONS(791), + [aux_sym_comparison_operator_token17] = ACTIONS(791), + [aux_sym_comparison_operator_token18] = ACTIONS(791), + [aux_sym_comparison_operator_token19] = ACTIONS(791), + [aux_sym_comparison_operator_token20] = ACTIONS(791), + [aux_sym_comparison_operator_token21] = ACTIONS(791), + [aux_sym_comparison_operator_token22] = ACTIONS(791), + [aux_sym_comparison_operator_token23] = ACTIONS(791), + [aux_sym_comparison_operator_token24] = ACTIONS(791), + [aux_sym_comparison_operator_token25] = ACTIONS(791), + [aux_sym_comparison_operator_token26] = ACTIONS(791), + [aux_sym_comparison_operator_token27] = ACTIONS(791), + [aux_sym_comparison_operator_token28] = ACTIONS(793), + [aux_sym_comparison_operator_token29] = ACTIONS(791), + [aux_sym_comparison_operator_token30] = ACTIONS(791), + [aux_sym_comparison_operator_token31] = ACTIONS(791), + [aux_sym_comparison_operator_token32] = ACTIONS(791), + [aux_sym_comparison_operator_token33] = ACTIONS(791), + [aux_sym_comparison_operator_token34] = ACTIONS(793), + [aux_sym_comparison_operator_token35] = ACTIONS(791), + [aux_sym_comparison_operator_token36] = ACTIONS(791), + [aux_sym_comparison_operator_token37] = ACTIONS(791), + [aux_sym_comparison_operator_token38] = ACTIONS(791), + [aux_sym_comparison_operator_token39] = ACTIONS(791), + [aux_sym_comparison_operator_token40] = ACTIONS(791), + [aux_sym_comparison_operator_token41] = ACTIONS(791), + [aux_sym_comparison_operator_token42] = ACTIONS(791), + [aux_sym_comparison_operator_token43] = ACTIONS(791), + [aux_sym_comparison_operator_token44] = ACTIONS(791), + [aux_sym_comparison_operator_token45] = ACTIONS(791), + [aux_sym_comparison_operator_token46] = ACTIONS(791), + [aux_sym_comparison_operator_token47] = ACTIONS(791), + [aux_sym_comparison_operator_token48] = ACTIONS(791), + [aux_sym_comparison_operator_token49] = ACTIONS(791), + [aux_sym_comparison_operator_token50] = ACTIONS(791), + [aux_sym_format_operator_token1] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_PERCENT] = ACTIONS(793), + [aux_sym_logical_expression_token1] = ACTIONS(791), + [aux_sym_logical_expression_token2] = ACTIONS(791), + [aux_sym_logical_expression_token3] = ACTIONS(791), + [aux_sym_bitwise_expression_token1] = ACTIONS(791), + [aux_sym_bitwise_expression_token2] = ACTIONS(791), + [aux_sym_bitwise_expression_token3] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_BSLASH] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_DOT_DOT] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(791), }, [170] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_2_GT] = ACTIONS(777), - [anon_sym_2_GT_GT] = ACTIONS(775), - [anon_sym_3_GT] = ACTIONS(777), - [anon_sym_3_GT_GT] = ACTIONS(775), - [anon_sym_4_GT] = ACTIONS(777), - [anon_sym_4_GT_GT] = ACTIONS(775), - [anon_sym_5_GT] = ACTIONS(777), - [anon_sym_5_GT_GT] = ACTIONS(775), - [anon_sym_6_GT] = ACTIONS(777), - [anon_sym_6_GT_GT] = ACTIONS(775), - [anon_sym_STAR_GT] = ACTIONS(777), - [anon_sym_STAR_GT_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_STAR_GT_AMP1] = ACTIONS(775), - [anon_sym_2_GT_AMP1] = ACTIONS(775), - [anon_sym_3_GT_AMP1] = ACTIONS(775), - [anon_sym_4_GT_AMP1] = ACTIONS(775), - [anon_sym_5_GT_AMP1] = ACTIONS(775), - [anon_sym_6_GT_AMP1] = ACTIONS(775), - [anon_sym_STAR_GT_AMP2] = ACTIONS(775), - [anon_sym_1_GT_AMP2] = ACTIONS(775), - [anon_sym_3_GT_AMP2] = ACTIONS(775), - [anon_sym_4_GT_AMP2] = ACTIONS(775), - [anon_sym_5_GT_AMP2] = ACTIONS(775), - [anon_sym_6_GT_AMP2] = ACTIONS(775), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(777), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(695), }, [171] = { - [aux_sym_array_literal_expression_repeat1] = STATE(171), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_2_GT] = ACTIONS(777), - [anon_sym_2_GT_GT] = ACTIONS(775), - [anon_sym_3_GT] = ACTIONS(777), - [anon_sym_3_GT_GT] = ACTIONS(775), - [anon_sym_4_GT] = ACTIONS(777), - [anon_sym_4_GT_GT] = ACTIONS(775), - [anon_sym_5_GT] = ACTIONS(777), - [anon_sym_5_GT_GT] = ACTIONS(775), - [anon_sym_6_GT] = ACTIONS(777), - [anon_sym_6_GT_GT] = ACTIONS(775), - [anon_sym_STAR_GT] = ACTIONS(777), - [anon_sym_STAR_GT_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_STAR_GT_AMP1] = ACTIONS(775), - [anon_sym_2_GT_AMP1] = ACTIONS(775), - [anon_sym_3_GT_AMP1] = ACTIONS(775), - [anon_sym_4_GT_AMP1] = ACTIONS(775), - [anon_sym_5_GT_AMP1] = ACTIONS(775), - [anon_sym_6_GT_AMP1] = ACTIONS(775), - [anon_sym_STAR_GT_AMP2] = ACTIONS(775), - [anon_sym_1_GT_AMP2] = ACTIONS(775), - [anon_sym_3_GT_AMP2] = ACTIONS(775), - [anon_sym_4_GT_AMP2] = ACTIONS(775), - [anon_sym_5_GT_AMP2] = ACTIONS(775), - [anon_sym_6_GT_AMP2] = ACTIONS(775), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(777), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [anon_sym_PLUS_EQ] = ACTIONS(699), + [anon_sym_STAR_EQ] = ACTIONS(699), + [anon_sym_SLASH_EQ] = ACTIONS(699), + [anon_sym_PERCENT_EQ] = ACTIONS(699), + [anon_sym_DASH_EQ] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_2_GT] = ACTIONS(701), + [anon_sym_2_GT_GT] = ACTIONS(699), + [anon_sym_3_GT] = ACTIONS(701), + [anon_sym_3_GT_GT] = ACTIONS(699), + [anon_sym_4_GT] = ACTIONS(701), + [anon_sym_4_GT_GT] = ACTIONS(699), + [anon_sym_5_GT] = ACTIONS(701), + [anon_sym_5_GT_GT] = ACTIONS(699), + [anon_sym_6_GT] = ACTIONS(701), + [anon_sym_6_GT_GT] = ACTIONS(699), + [anon_sym_STAR_GT] = ACTIONS(701), + [anon_sym_STAR_GT_GT] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_STAR_GT_AMP1] = ACTIONS(699), + [anon_sym_2_GT_AMP1] = ACTIONS(699), + [anon_sym_3_GT_AMP1] = ACTIONS(699), + [anon_sym_4_GT_AMP1] = ACTIONS(699), + [anon_sym_5_GT_AMP1] = ACTIONS(699), + [anon_sym_6_GT_AMP1] = ACTIONS(699), + [anon_sym_STAR_GT_AMP2] = ACTIONS(699), + [anon_sym_1_GT_AMP2] = ACTIONS(699), + [anon_sym_3_GT_AMP2] = ACTIONS(699), + [anon_sym_4_GT_AMP2] = ACTIONS(699), + [anon_sym_5_GT_AMP2] = ACTIONS(699), + [anon_sym_6_GT_AMP2] = ACTIONS(699), + [aux_sym_comparison_operator_token1] = ACTIONS(699), + [aux_sym_comparison_operator_token2] = ACTIONS(699), + [aux_sym_comparison_operator_token3] = ACTIONS(699), + [aux_sym_comparison_operator_token4] = ACTIONS(699), + [aux_sym_comparison_operator_token5] = ACTIONS(699), + [aux_sym_comparison_operator_token6] = ACTIONS(699), + [aux_sym_comparison_operator_token7] = ACTIONS(699), + [aux_sym_comparison_operator_token8] = ACTIONS(699), + [aux_sym_comparison_operator_token9] = ACTIONS(699), + [aux_sym_comparison_operator_token10] = ACTIONS(699), + [aux_sym_comparison_operator_token11] = ACTIONS(699), + [aux_sym_comparison_operator_token12] = ACTIONS(699), + [aux_sym_comparison_operator_token13] = ACTIONS(699), + [aux_sym_comparison_operator_token14] = ACTIONS(699), + [aux_sym_comparison_operator_token15] = ACTIONS(699), + [aux_sym_comparison_operator_token16] = ACTIONS(699), + [aux_sym_comparison_operator_token17] = ACTIONS(699), + [aux_sym_comparison_operator_token18] = ACTIONS(699), + [aux_sym_comparison_operator_token19] = ACTIONS(699), + [aux_sym_comparison_operator_token20] = ACTIONS(699), + [aux_sym_comparison_operator_token21] = ACTIONS(699), + [aux_sym_comparison_operator_token22] = ACTIONS(699), + [aux_sym_comparison_operator_token23] = ACTIONS(699), + [aux_sym_comparison_operator_token24] = ACTIONS(699), + [aux_sym_comparison_operator_token25] = ACTIONS(699), + [aux_sym_comparison_operator_token26] = ACTIONS(699), + [aux_sym_comparison_operator_token27] = ACTIONS(699), + [aux_sym_comparison_operator_token28] = ACTIONS(701), + [aux_sym_comparison_operator_token29] = ACTIONS(699), + [aux_sym_comparison_operator_token30] = ACTIONS(699), + [aux_sym_comparison_operator_token31] = ACTIONS(699), + [aux_sym_comparison_operator_token32] = ACTIONS(699), + [aux_sym_comparison_operator_token33] = ACTIONS(699), + [aux_sym_comparison_operator_token34] = ACTIONS(701), + [aux_sym_comparison_operator_token35] = ACTIONS(699), + [aux_sym_comparison_operator_token36] = ACTIONS(699), + [aux_sym_comparison_operator_token37] = ACTIONS(699), + [aux_sym_comparison_operator_token38] = ACTIONS(699), + [aux_sym_comparison_operator_token39] = ACTIONS(699), + [aux_sym_comparison_operator_token40] = ACTIONS(699), + [aux_sym_comparison_operator_token41] = ACTIONS(699), + [aux_sym_comparison_operator_token42] = ACTIONS(699), + [aux_sym_comparison_operator_token43] = ACTIONS(699), + [aux_sym_comparison_operator_token44] = ACTIONS(699), + [aux_sym_comparison_operator_token45] = ACTIONS(699), + [aux_sym_comparison_operator_token46] = ACTIONS(699), + [aux_sym_comparison_operator_token47] = ACTIONS(699), + [aux_sym_comparison_operator_token48] = ACTIONS(699), + [aux_sym_comparison_operator_token49] = ACTIONS(699), + [aux_sym_comparison_operator_token50] = ACTIONS(699), + [aux_sym_format_operator_token1] = ACTIONS(699), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_PERCENT] = ACTIONS(701), + [aux_sym_logical_expression_token1] = ACTIONS(699), + [aux_sym_logical_expression_token2] = ACTIONS(699), + [aux_sym_logical_expression_token3] = ACTIONS(699), + [aux_sym_bitwise_expression_token1] = ACTIONS(699), + [aux_sym_bitwise_expression_token2] = ACTIONS(699), + [aux_sym_bitwise_expression_token3] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_BSLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(699), }, [172] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(659), - [anon_sym_BANG_EQ] = ACTIONS(659), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(659), - [anon_sym_2_GT] = ACTIONS(661), - [anon_sym_2_GT_GT] = ACTIONS(659), - [anon_sym_3_GT] = ACTIONS(661), - [anon_sym_3_GT_GT] = ACTIONS(659), - [anon_sym_4_GT] = ACTIONS(661), - [anon_sym_4_GT_GT] = ACTIONS(659), - [anon_sym_5_GT] = ACTIONS(661), - [anon_sym_5_GT_GT] = ACTIONS(659), - [anon_sym_6_GT] = ACTIONS(661), - [anon_sym_6_GT_GT] = ACTIONS(659), - [anon_sym_STAR_GT] = ACTIONS(661), - [anon_sym_STAR_GT_GT] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_STAR_GT_AMP1] = ACTIONS(659), - [anon_sym_2_GT_AMP1] = ACTIONS(659), - [anon_sym_3_GT_AMP1] = ACTIONS(659), - [anon_sym_4_GT_AMP1] = ACTIONS(659), - [anon_sym_5_GT_AMP1] = ACTIONS(659), - [anon_sym_6_GT_AMP1] = ACTIONS(659), - [anon_sym_STAR_GT_AMP2] = ACTIONS(659), - [anon_sym_1_GT_AMP2] = ACTIONS(659), - [anon_sym_3_GT_AMP2] = ACTIONS(659), - [anon_sym_4_GT_AMP2] = ACTIONS(659), - [anon_sym_5_GT_AMP2] = ACTIONS(659), - [anon_sym_6_GT_AMP2] = ACTIONS(659), - [aux_sym_comparison_operator_token1] = ACTIONS(659), - [aux_sym_comparison_operator_token2] = ACTIONS(659), - [aux_sym_comparison_operator_token3] = ACTIONS(659), - [aux_sym_comparison_operator_token4] = ACTIONS(659), - [aux_sym_comparison_operator_token5] = ACTIONS(659), - [aux_sym_comparison_operator_token6] = ACTIONS(659), - [aux_sym_comparison_operator_token7] = ACTIONS(659), - [aux_sym_comparison_operator_token8] = ACTIONS(659), - [aux_sym_comparison_operator_token9] = ACTIONS(659), - [aux_sym_comparison_operator_token10] = ACTIONS(659), - [aux_sym_comparison_operator_token11] = ACTIONS(659), - [aux_sym_comparison_operator_token12] = ACTIONS(659), - [aux_sym_comparison_operator_token13] = ACTIONS(659), - [aux_sym_comparison_operator_token14] = ACTIONS(659), - [aux_sym_comparison_operator_token15] = ACTIONS(659), - [aux_sym_comparison_operator_token16] = ACTIONS(659), - [aux_sym_comparison_operator_token17] = ACTIONS(659), - [aux_sym_comparison_operator_token18] = ACTIONS(659), - [aux_sym_comparison_operator_token19] = ACTIONS(659), - [aux_sym_comparison_operator_token20] = ACTIONS(659), - [aux_sym_comparison_operator_token21] = ACTIONS(659), - [aux_sym_comparison_operator_token22] = ACTIONS(659), - [aux_sym_comparison_operator_token23] = ACTIONS(659), - [aux_sym_comparison_operator_token24] = ACTIONS(659), - [aux_sym_comparison_operator_token25] = ACTIONS(659), - [aux_sym_comparison_operator_token26] = ACTIONS(659), - [aux_sym_comparison_operator_token27] = ACTIONS(659), - [aux_sym_comparison_operator_token28] = ACTIONS(661), - [aux_sym_comparison_operator_token29] = ACTIONS(659), - [aux_sym_comparison_operator_token30] = ACTIONS(659), - [aux_sym_comparison_operator_token31] = ACTIONS(659), - [aux_sym_comparison_operator_token32] = ACTIONS(659), - [aux_sym_comparison_operator_token33] = ACTIONS(659), - [aux_sym_comparison_operator_token34] = ACTIONS(661), - [aux_sym_comparison_operator_token35] = ACTIONS(659), - [aux_sym_comparison_operator_token36] = ACTIONS(659), - [aux_sym_comparison_operator_token37] = ACTIONS(659), - [aux_sym_comparison_operator_token38] = ACTIONS(659), - [aux_sym_comparison_operator_token39] = ACTIONS(659), - [aux_sym_comparison_operator_token40] = ACTIONS(659), - [aux_sym_comparison_operator_token41] = ACTIONS(659), - [aux_sym_comparison_operator_token42] = ACTIONS(659), - [aux_sym_comparison_operator_token43] = ACTIONS(659), - [aux_sym_comparison_operator_token44] = ACTIONS(659), - [aux_sym_comparison_operator_token45] = ACTIONS(659), - [aux_sym_comparison_operator_token46] = ACTIONS(659), - [aux_sym_comparison_operator_token47] = ACTIONS(659), - [aux_sym_comparison_operator_token48] = ACTIONS(659), - [aux_sym_comparison_operator_token49] = ACTIONS(659), - [aux_sym_comparison_operator_token50] = ACTIONS(659), - [aux_sym_format_operator_token1] = ACTIONS(659), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_PERCENT] = ACTIONS(661), - [aux_sym_logical_expression_token1] = ACTIONS(659), - [aux_sym_logical_expression_token2] = ACTIONS(659), - [aux_sym_logical_expression_token3] = ACTIONS(659), - [aux_sym_bitwise_expression_token1] = ACTIONS(659), - [aux_sym_bitwise_expression_token2] = ACTIONS(659), - [aux_sym_bitwise_expression_token3] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_BSLASH] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_DOT_DOT] = ACTIONS(659), - [sym__statement_terminator] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_BANG_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [anon_sym_STAR_EQ] = ACTIONS(695), + [anon_sym_SLASH_EQ] = ACTIONS(695), + [anon_sym_PERCENT_EQ] = ACTIONS(695), + [anon_sym_DASH_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_2_GT] = ACTIONS(697), + [anon_sym_2_GT_GT] = ACTIONS(695), + [anon_sym_3_GT] = ACTIONS(697), + [anon_sym_3_GT_GT] = ACTIONS(695), + [anon_sym_4_GT] = ACTIONS(697), + [anon_sym_4_GT_GT] = ACTIONS(695), + [anon_sym_5_GT] = ACTIONS(697), + [anon_sym_5_GT_GT] = ACTIONS(695), + [anon_sym_6_GT] = ACTIONS(697), + [anon_sym_6_GT_GT] = ACTIONS(695), + [anon_sym_STAR_GT] = ACTIONS(697), + [anon_sym_STAR_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_STAR_GT_AMP1] = ACTIONS(695), + [anon_sym_2_GT_AMP1] = ACTIONS(695), + [anon_sym_3_GT_AMP1] = ACTIONS(695), + [anon_sym_4_GT_AMP1] = ACTIONS(695), + [anon_sym_5_GT_AMP1] = ACTIONS(695), + [anon_sym_6_GT_AMP1] = ACTIONS(695), + [anon_sym_STAR_GT_AMP2] = ACTIONS(695), + [anon_sym_1_GT_AMP2] = ACTIONS(695), + [anon_sym_3_GT_AMP2] = ACTIONS(695), + [anon_sym_4_GT_AMP2] = ACTIONS(695), + [anon_sym_5_GT_AMP2] = ACTIONS(695), + [anon_sym_6_GT_AMP2] = ACTIONS(695), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(697), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(695), + [sym__statement_terminator] = ACTIONS(695), }, [173] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_PLUS_EQ] = ACTIONS(729), - [anon_sym_STAR_EQ] = ACTIONS(729), - [anon_sym_SLASH_EQ] = ACTIONS(729), - [anon_sym_PERCENT_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(729), - [anon_sym_2_GT] = ACTIONS(731), - [anon_sym_2_GT_GT] = ACTIONS(729), - [anon_sym_3_GT] = ACTIONS(731), - [anon_sym_3_GT_GT] = ACTIONS(729), - [anon_sym_4_GT] = ACTIONS(731), - [anon_sym_4_GT_GT] = ACTIONS(729), - [anon_sym_5_GT] = ACTIONS(731), - [anon_sym_5_GT_GT] = ACTIONS(729), - [anon_sym_6_GT] = ACTIONS(731), - [anon_sym_6_GT_GT] = ACTIONS(729), - [anon_sym_STAR_GT] = ACTIONS(731), - [anon_sym_STAR_GT_GT] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_STAR_GT_AMP1] = ACTIONS(729), - [anon_sym_2_GT_AMP1] = ACTIONS(729), - [anon_sym_3_GT_AMP1] = ACTIONS(729), - [anon_sym_4_GT_AMP1] = ACTIONS(729), - [anon_sym_5_GT_AMP1] = ACTIONS(729), - [anon_sym_6_GT_AMP1] = ACTIONS(729), - [anon_sym_STAR_GT_AMP2] = ACTIONS(729), - [anon_sym_1_GT_AMP2] = ACTIONS(729), - [anon_sym_3_GT_AMP2] = ACTIONS(729), - [anon_sym_4_GT_AMP2] = ACTIONS(729), - [anon_sym_5_GT_AMP2] = ACTIONS(729), - [anon_sym_6_GT_AMP2] = ACTIONS(729), - [aux_sym_comparison_operator_token1] = ACTIONS(729), - [aux_sym_comparison_operator_token2] = ACTIONS(729), - [aux_sym_comparison_operator_token3] = ACTIONS(729), - [aux_sym_comparison_operator_token4] = ACTIONS(729), - [aux_sym_comparison_operator_token5] = ACTIONS(729), - [aux_sym_comparison_operator_token6] = ACTIONS(729), - [aux_sym_comparison_operator_token7] = ACTIONS(729), - [aux_sym_comparison_operator_token8] = ACTIONS(729), - [aux_sym_comparison_operator_token9] = ACTIONS(729), - [aux_sym_comparison_operator_token10] = ACTIONS(729), - [aux_sym_comparison_operator_token11] = ACTIONS(729), - [aux_sym_comparison_operator_token12] = ACTIONS(729), - [aux_sym_comparison_operator_token13] = ACTIONS(729), - [aux_sym_comparison_operator_token14] = ACTIONS(729), - [aux_sym_comparison_operator_token15] = ACTIONS(729), - [aux_sym_comparison_operator_token16] = ACTIONS(729), - [aux_sym_comparison_operator_token17] = ACTIONS(729), - [aux_sym_comparison_operator_token18] = ACTIONS(729), - [aux_sym_comparison_operator_token19] = ACTIONS(729), - [aux_sym_comparison_operator_token20] = ACTIONS(729), - [aux_sym_comparison_operator_token21] = ACTIONS(729), - [aux_sym_comparison_operator_token22] = ACTIONS(729), - [aux_sym_comparison_operator_token23] = ACTIONS(729), - [aux_sym_comparison_operator_token24] = ACTIONS(729), - [aux_sym_comparison_operator_token25] = ACTIONS(729), - [aux_sym_comparison_operator_token26] = ACTIONS(729), - [aux_sym_comparison_operator_token27] = ACTIONS(729), - [aux_sym_comparison_operator_token28] = ACTIONS(731), - [aux_sym_comparison_operator_token29] = ACTIONS(729), - [aux_sym_comparison_operator_token30] = ACTIONS(729), - [aux_sym_comparison_operator_token31] = ACTIONS(729), - [aux_sym_comparison_operator_token32] = ACTIONS(729), - [aux_sym_comparison_operator_token33] = ACTIONS(729), - [aux_sym_comparison_operator_token34] = ACTIONS(731), - [aux_sym_comparison_operator_token35] = ACTIONS(729), - [aux_sym_comparison_operator_token36] = ACTIONS(729), - [aux_sym_comparison_operator_token37] = ACTIONS(729), - [aux_sym_comparison_operator_token38] = ACTIONS(729), - [aux_sym_comparison_operator_token39] = ACTIONS(729), - [aux_sym_comparison_operator_token40] = ACTIONS(729), - [aux_sym_comparison_operator_token41] = ACTIONS(729), - [aux_sym_comparison_operator_token42] = ACTIONS(729), - [aux_sym_comparison_operator_token43] = ACTIONS(729), - [aux_sym_comparison_operator_token44] = ACTIONS(729), - [aux_sym_comparison_operator_token45] = ACTIONS(729), - [aux_sym_comparison_operator_token46] = ACTIONS(729), - [aux_sym_comparison_operator_token47] = ACTIONS(729), - [aux_sym_comparison_operator_token48] = ACTIONS(729), - [aux_sym_comparison_operator_token49] = ACTIONS(729), - [aux_sym_comparison_operator_token50] = ACTIONS(729), - [aux_sym_format_operator_token1] = ACTIONS(729), - [anon_sym_COMMA] = ACTIONS(729), - [anon_sym_PIPE] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(731), - [aux_sym_logical_expression_token1] = ACTIONS(729), - [aux_sym_logical_expression_token2] = ACTIONS(729), - [aux_sym_logical_expression_token3] = ACTIONS(729), - [aux_sym_bitwise_expression_token1] = ACTIONS(729), - [aux_sym_bitwise_expression_token2] = ACTIONS(729), - [aux_sym_bitwise_expression_token3] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_BSLASH] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_DOT_DOT] = ACTIONS(729), - [sym__statement_terminator] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_BANG_EQ] = ACTIONS(771), + [anon_sym_PLUS_EQ] = ACTIONS(771), + [anon_sym_STAR_EQ] = ACTIONS(771), + [anon_sym_SLASH_EQ] = ACTIONS(771), + [anon_sym_PERCENT_EQ] = ACTIONS(771), + [anon_sym_DASH_EQ] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_2_GT] = ACTIONS(773), + [anon_sym_2_GT_GT] = ACTIONS(771), + [anon_sym_3_GT] = ACTIONS(773), + [anon_sym_3_GT_GT] = ACTIONS(771), + [anon_sym_4_GT] = ACTIONS(773), + [anon_sym_4_GT_GT] = ACTIONS(771), + [anon_sym_5_GT] = ACTIONS(773), + [anon_sym_5_GT_GT] = ACTIONS(771), + [anon_sym_6_GT] = ACTIONS(773), + [anon_sym_6_GT_GT] = ACTIONS(771), + [anon_sym_STAR_GT] = ACTIONS(773), + [anon_sym_STAR_GT_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_STAR_GT_AMP1] = ACTIONS(771), + [anon_sym_2_GT_AMP1] = ACTIONS(771), + [anon_sym_3_GT_AMP1] = ACTIONS(771), + [anon_sym_4_GT_AMP1] = ACTIONS(771), + [anon_sym_5_GT_AMP1] = ACTIONS(771), + [anon_sym_6_GT_AMP1] = ACTIONS(771), + [anon_sym_STAR_GT_AMP2] = ACTIONS(771), + [anon_sym_1_GT_AMP2] = ACTIONS(771), + [anon_sym_3_GT_AMP2] = ACTIONS(771), + [anon_sym_4_GT_AMP2] = ACTIONS(771), + [anon_sym_5_GT_AMP2] = ACTIONS(771), + [anon_sym_6_GT_AMP2] = ACTIONS(771), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(773), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_DOT_DOT] = ACTIONS(771), + [sym__statement_terminator] = ACTIONS(771), }, [174] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(775), - [anon_sym_STAR_EQ] = ACTIONS(775), - [anon_sym_SLASH_EQ] = ACTIONS(775), - [anon_sym_PERCENT_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_2_GT] = ACTIONS(777), - [anon_sym_2_GT_GT] = ACTIONS(775), - [anon_sym_3_GT] = ACTIONS(777), - [anon_sym_3_GT_GT] = ACTIONS(775), - [anon_sym_4_GT] = ACTIONS(777), - [anon_sym_4_GT_GT] = ACTIONS(775), - [anon_sym_5_GT] = ACTIONS(777), - [anon_sym_5_GT_GT] = ACTIONS(775), - [anon_sym_6_GT] = ACTIONS(777), - [anon_sym_6_GT_GT] = ACTIONS(775), - [anon_sym_STAR_GT] = ACTIONS(777), - [anon_sym_STAR_GT_GT] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_STAR_GT_AMP1] = ACTIONS(775), - [anon_sym_2_GT_AMP1] = ACTIONS(775), - [anon_sym_3_GT_AMP1] = ACTIONS(775), - [anon_sym_4_GT_AMP1] = ACTIONS(775), - [anon_sym_5_GT_AMP1] = ACTIONS(775), - [anon_sym_6_GT_AMP1] = ACTIONS(775), - [anon_sym_STAR_GT_AMP2] = ACTIONS(775), - [anon_sym_1_GT_AMP2] = ACTIONS(775), - [anon_sym_3_GT_AMP2] = ACTIONS(775), - [anon_sym_4_GT_AMP2] = ACTIONS(775), - [anon_sym_5_GT_AMP2] = ACTIONS(775), - [anon_sym_6_GT_AMP2] = ACTIONS(775), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(777), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(775), - [sym__statement_terminator] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_BANG_EQ] = ACTIONS(711), + [anon_sym_PLUS_EQ] = ACTIONS(711), + [anon_sym_STAR_EQ] = ACTIONS(711), + [anon_sym_SLASH_EQ] = ACTIONS(711), + [anon_sym_PERCENT_EQ] = ACTIONS(711), + [anon_sym_DASH_EQ] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_GT_GT] = ACTIONS(711), + [anon_sym_2_GT] = ACTIONS(713), + [anon_sym_2_GT_GT] = ACTIONS(711), + [anon_sym_3_GT] = ACTIONS(713), + [anon_sym_3_GT_GT] = ACTIONS(711), + [anon_sym_4_GT] = ACTIONS(713), + [anon_sym_4_GT_GT] = ACTIONS(711), + [anon_sym_5_GT] = ACTIONS(713), + [anon_sym_5_GT_GT] = ACTIONS(711), + [anon_sym_6_GT] = ACTIONS(713), + [anon_sym_6_GT_GT] = ACTIONS(711), + [anon_sym_STAR_GT] = ACTIONS(713), + [anon_sym_STAR_GT_GT] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_STAR_GT_AMP1] = ACTIONS(711), + [anon_sym_2_GT_AMP1] = ACTIONS(711), + [anon_sym_3_GT_AMP1] = ACTIONS(711), + [anon_sym_4_GT_AMP1] = ACTIONS(711), + [anon_sym_5_GT_AMP1] = ACTIONS(711), + [anon_sym_6_GT_AMP1] = ACTIONS(711), + [anon_sym_STAR_GT_AMP2] = ACTIONS(711), + [anon_sym_1_GT_AMP2] = ACTIONS(711), + [anon_sym_3_GT_AMP2] = ACTIONS(711), + [anon_sym_4_GT_AMP2] = ACTIONS(711), + [anon_sym_5_GT_AMP2] = ACTIONS(711), + [anon_sym_6_GT_AMP2] = ACTIONS(711), + [aux_sym_comparison_operator_token1] = ACTIONS(711), + [aux_sym_comparison_operator_token2] = ACTIONS(711), + [aux_sym_comparison_operator_token3] = ACTIONS(711), + [aux_sym_comparison_operator_token4] = ACTIONS(711), + [aux_sym_comparison_operator_token5] = ACTIONS(711), + [aux_sym_comparison_operator_token6] = ACTIONS(711), + [aux_sym_comparison_operator_token7] = ACTIONS(711), + [aux_sym_comparison_operator_token8] = ACTIONS(711), + [aux_sym_comparison_operator_token9] = ACTIONS(711), + [aux_sym_comparison_operator_token10] = ACTIONS(711), + [aux_sym_comparison_operator_token11] = ACTIONS(711), + [aux_sym_comparison_operator_token12] = ACTIONS(711), + [aux_sym_comparison_operator_token13] = ACTIONS(711), + [aux_sym_comparison_operator_token14] = ACTIONS(711), + [aux_sym_comparison_operator_token15] = ACTIONS(711), + [aux_sym_comparison_operator_token16] = ACTIONS(711), + [aux_sym_comparison_operator_token17] = ACTIONS(711), + [aux_sym_comparison_operator_token18] = ACTIONS(711), + [aux_sym_comparison_operator_token19] = ACTIONS(711), + [aux_sym_comparison_operator_token20] = ACTIONS(711), + [aux_sym_comparison_operator_token21] = ACTIONS(711), + [aux_sym_comparison_operator_token22] = ACTIONS(711), + [aux_sym_comparison_operator_token23] = ACTIONS(711), + [aux_sym_comparison_operator_token24] = ACTIONS(711), + [aux_sym_comparison_operator_token25] = ACTIONS(711), + [aux_sym_comparison_operator_token26] = ACTIONS(711), + [aux_sym_comparison_operator_token27] = ACTIONS(711), + [aux_sym_comparison_operator_token28] = ACTIONS(713), + [aux_sym_comparison_operator_token29] = ACTIONS(711), + [aux_sym_comparison_operator_token30] = ACTIONS(711), + [aux_sym_comparison_operator_token31] = ACTIONS(711), + [aux_sym_comparison_operator_token32] = ACTIONS(711), + [aux_sym_comparison_operator_token33] = ACTIONS(711), + [aux_sym_comparison_operator_token34] = ACTIONS(713), + [aux_sym_comparison_operator_token35] = ACTIONS(711), + [aux_sym_comparison_operator_token36] = ACTIONS(711), + [aux_sym_comparison_operator_token37] = ACTIONS(711), + [aux_sym_comparison_operator_token38] = ACTIONS(711), + [aux_sym_comparison_operator_token39] = ACTIONS(711), + [aux_sym_comparison_operator_token40] = ACTIONS(711), + [aux_sym_comparison_operator_token41] = ACTIONS(711), + [aux_sym_comparison_operator_token42] = ACTIONS(711), + [aux_sym_comparison_operator_token43] = ACTIONS(711), + [aux_sym_comparison_operator_token44] = ACTIONS(711), + [aux_sym_comparison_operator_token45] = ACTIONS(711), + [aux_sym_comparison_operator_token46] = ACTIONS(711), + [aux_sym_comparison_operator_token47] = ACTIONS(711), + [aux_sym_comparison_operator_token48] = ACTIONS(711), + [aux_sym_comparison_operator_token49] = ACTIONS(711), + [aux_sym_comparison_operator_token50] = ACTIONS(711), + [aux_sym_format_operator_token1] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_PERCENT] = ACTIONS(713), + [aux_sym_logical_expression_token1] = ACTIONS(711), + [aux_sym_logical_expression_token2] = ACTIONS(711), + [aux_sym_logical_expression_token3] = ACTIONS(711), + [aux_sym_bitwise_expression_token1] = ACTIONS(711), + [aux_sym_bitwise_expression_token2] = ACTIONS(711), + [aux_sym_bitwise_expression_token3] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(711), + [sym__statement_terminator] = ACTIONS(711), }, [175] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_2_GT] = ACTIONS(673), - [anon_sym_2_GT_GT] = ACTIONS(671), - [anon_sym_3_GT] = ACTIONS(673), - [anon_sym_3_GT_GT] = ACTIONS(671), - [anon_sym_4_GT] = ACTIONS(673), - [anon_sym_4_GT_GT] = ACTIONS(671), - [anon_sym_5_GT] = ACTIONS(673), - [anon_sym_5_GT_GT] = ACTIONS(671), - [anon_sym_6_GT] = ACTIONS(673), - [anon_sym_6_GT_GT] = ACTIONS(671), - [anon_sym_STAR_GT] = ACTIONS(673), - [anon_sym_STAR_GT_GT] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_STAR_GT_AMP1] = ACTIONS(671), - [anon_sym_2_GT_AMP1] = ACTIONS(671), - [anon_sym_3_GT_AMP1] = ACTIONS(671), - [anon_sym_4_GT_AMP1] = ACTIONS(671), - [anon_sym_5_GT_AMP1] = ACTIONS(671), - [anon_sym_6_GT_AMP1] = ACTIONS(671), - [anon_sym_STAR_GT_AMP2] = ACTIONS(671), - [anon_sym_1_GT_AMP2] = ACTIONS(671), - [anon_sym_3_GT_AMP2] = ACTIONS(671), - [anon_sym_4_GT_AMP2] = ACTIONS(671), - [anon_sym_5_GT_AMP2] = ACTIONS(671), - [anon_sym_6_GT_AMP2] = ACTIONS(671), - [aux_sym_comparison_operator_token1] = ACTIONS(671), - [aux_sym_comparison_operator_token2] = ACTIONS(671), - [aux_sym_comparison_operator_token3] = ACTIONS(671), - [aux_sym_comparison_operator_token4] = ACTIONS(671), - [aux_sym_comparison_operator_token5] = ACTIONS(671), - [aux_sym_comparison_operator_token6] = ACTIONS(671), - [aux_sym_comparison_operator_token7] = ACTIONS(671), - [aux_sym_comparison_operator_token8] = ACTIONS(671), - [aux_sym_comparison_operator_token9] = ACTIONS(671), - [aux_sym_comparison_operator_token10] = ACTIONS(671), - [aux_sym_comparison_operator_token11] = ACTIONS(671), - [aux_sym_comparison_operator_token12] = ACTIONS(671), - [aux_sym_comparison_operator_token13] = ACTIONS(671), - [aux_sym_comparison_operator_token14] = ACTIONS(671), - [aux_sym_comparison_operator_token15] = ACTIONS(671), - [aux_sym_comparison_operator_token16] = ACTIONS(671), - [aux_sym_comparison_operator_token17] = ACTIONS(671), - [aux_sym_comparison_operator_token18] = ACTIONS(671), - [aux_sym_comparison_operator_token19] = ACTIONS(671), - [aux_sym_comparison_operator_token20] = ACTIONS(671), - [aux_sym_comparison_operator_token21] = ACTIONS(671), - [aux_sym_comparison_operator_token22] = ACTIONS(671), - [aux_sym_comparison_operator_token23] = ACTIONS(671), - [aux_sym_comparison_operator_token24] = ACTIONS(671), - [aux_sym_comparison_operator_token25] = ACTIONS(671), - [aux_sym_comparison_operator_token26] = ACTIONS(671), - [aux_sym_comparison_operator_token27] = ACTIONS(671), - [aux_sym_comparison_operator_token28] = ACTIONS(673), - [aux_sym_comparison_operator_token29] = ACTIONS(671), - [aux_sym_comparison_operator_token30] = ACTIONS(671), - [aux_sym_comparison_operator_token31] = ACTIONS(671), - [aux_sym_comparison_operator_token32] = ACTIONS(671), - [aux_sym_comparison_operator_token33] = ACTIONS(671), - [aux_sym_comparison_operator_token34] = ACTIONS(673), - [aux_sym_comparison_operator_token35] = ACTIONS(671), - [aux_sym_comparison_operator_token36] = ACTIONS(671), - [aux_sym_comparison_operator_token37] = ACTIONS(671), - [aux_sym_comparison_operator_token38] = ACTIONS(671), - [aux_sym_comparison_operator_token39] = ACTIONS(671), - [aux_sym_comparison_operator_token40] = ACTIONS(671), - [aux_sym_comparison_operator_token41] = ACTIONS(671), - [aux_sym_comparison_operator_token42] = ACTIONS(671), - [aux_sym_comparison_operator_token43] = ACTIONS(671), - [aux_sym_comparison_operator_token44] = ACTIONS(671), - [aux_sym_comparison_operator_token45] = ACTIONS(671), - [aux_sym_comparison_operator_token46] = ACTIONS(671), - [aux_sym_comparison_operator_token47] = ACTIONS(671), - [aux_sym_comparison_operator_token48] = ACTIONS(671), - [aux_sym_comparison_operator_token49] = ACTIONS(671), - [aux_sym_comparison_operator_token50] = ACTIONS(671), - [aux_sym_format_operator_token1] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(673), - [aux_sym_logical_expression_token1] = ACTIONS(671), - [aux_sym_logical_expression_token2] = ACTIONS(671), - [aux_sym_logical_expression_token3] = ACTIONS(671), - [aux_sym_bitwise_expression_token1] = ACTIONS(671), - [aux_sym_bitwise_expression_token2] = ACTIONS(671), - [aux_sym_bitwise_expression_token3] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(673), - [anon_sym_BSLASH] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(671), - [sym__statement_terminator] = ACTIONS(671), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_BANG_EQ] = ACTIONS(715), + [anon_sym_PLUS_EQ] = ACTIONS(715), + [anon_sym_STAR_EQ] = ACTIONS(715), + [anon_sym_SLASH_EQ] = ACTIONS(715), + [anon_sym_PERCENT_EQ] = ACTIONS(715), + [anon_sym_DASH_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(715), + [anon_sym_2_GT] = ACTIONS(717), + [anon_sym_2_GT_GT] = ACTIONS(715), + [anon_sym_3_GT] = ACTIONS(717), + [anon_sym_3_GT_GT] = ACTIONS(715), + [anon_sym_4_GT] = ACTIONS(717), + [anon_sym_4_GT_GT] = ACTIONS(715), + [anon_sym_5_GT] = ACTIONS(717), + [anon_sym_5_GT_GT] = ACTIONS(715), + [anon_sym_6_GT] = ACTIONS(717), + [anon_sym_6_GT_GT] = ACTIONS(715), + [anon_sym_STAR_GT] = ACTIONS(717), + [anon_sym_STAR_GT_GT] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_STAR_GT_AMP1] = ACTIONS(715), + [anon_sym_2_GT_AMP1] = ACTIONS(715), + [anon_sym_3_GT_AMP1] = ACTIONS(715), + [anon_sym_4_GT_AMP1] = ACTIONS(715), + [anon_sym_5_GT_AMP1] = ACTIONS(715), + [anon_sym_6_GT_AMP1] = ACTIONS(715), + [anon_sym_STAR_GT_AMP2] = ACTIONS(715), + [anon_sym_1_GT_AMP2] = ACTIONS(715), + [anon_sym_3_GT_AMP2] = ACTIONS(715), + [anon_sym_4_GT_AMP2] = ACTIONS(715), + [anon_sym_5_GT_AMP2] = ACTIONS(715), + [anon_sym_6_GT_AMP2] = ACTIONS(715), + [aux_sym_comparison_operator_token1] = ACTIONS(715), + [aux_sym_comparison_operator_token2] = ACTIONS(715), + [aux_sym_comparison_operator_token3] = ACTIONS(715), + [aux_sym_comparison_operator_token4] = ACTIONS(715), + [aux_sym_comparison_operator_token5] = ACTIONS(715), + [aux_sym_comparison_operator_token6] = ACTIONS(715), + [aux_sym_comparison_operator_token7] = ACTIONS(715), + [aux_sym_comparison_operator_token8] = ACTIONS(715), + [aux_sym_comparison_operator_token9] = ACTIONS(715), + [aux_sym_comparison_operator_token10] = ACTIONS(715), + [aux_sym_comparison_operator_token11] = ACTIONS(715), + [aux_sym_comparison_operator_token12] = ACTIONS(715), + [aux_sym_comparison_operator_token13] = ACTIONS(715), + [aux_sym_comparison_operator_token14] = ACTIONS(715), + [aux_sym_comparison_operator_token15] = ACTIONS(715), + [aux_sym_comparison_operator_token16] = ACTIONS(715), + [aux_sym_comparison_operator_token17] = ACTIONS(715), + [aux_sym_comparison_operator_token18] = ACTIONS(715), + [aux_sym_comparison_operator_token19] = ACTIONS(715), + [aux_sym_comparison_operator_token20] = ACTIONS(715), + [aux_sym_comparison_operator_token21] = ACTIONS(715), + [aux_sym_comparison_operator_token22] = ACTIONS(715), + [aux_sym_comparison_operator_token23] = ACTIONS(715), + [aux_sym_comparison_operator_token24] = ACTIONS(715), + [aux_sym_comparison_operator_token25] = ACTIONS(715), + [aux_sym_comparison_operator_token26] = ACTIONS(715), + [aux_sym_comparison_operator_token27] = ACTIONS(715), + [aux_sym_comparison_operator_token28] = ACTIONS(717), + [aux_sym_comparison_operator_token29] = ACTIONS(715), + [aux_sym_comparison_operator_token30] = ACTIONS(715), + [aux_sym_comparison_operator_token31] = ACTIONS(715), + [aux_sym_comparison_operator_token32] = ACTIONS(715), + [aux_sym_comparison_operator_token33] = ACTIONS(715), + [aux_sym_comparison_operator_token34] = ACTIONS(717), + [aux_sym_comparison_operator_token35] = ACTIONS(715), + [aux_sym_comparison_operator_token36] = ACTIONS(715), + [aux_sym_comparison_operator_token37] = ACTIONS(715), + [aux_sym_comparison_operator_token38] = ACTIONS(715), + [aux_sym_comparison_operator_token39] = ACTIONS(715), + [aux_sym_comparison_operator_token40] = ACTIONS(715), + [aux_sym_comparison_operator_token41] = ACTIONS(715), + [aux_sym_comparison_operator_token42] = ACTIONS(715), + [aux_sym_comparison_operator_token43] = ACTIONS(715), + [aux_sym_comparison_operator_token44] = ACTIONS(715), + [aux_sym_comparison_operator_token45] = ACTIONS(715), + [aux_sym_comparison_operator_token46] = ACTIONS(715), + [aux_sym_comparison_operator_token47] = ACTIONS(715), + [aux_sym_comparison_operator_token48] = ACTIONS(715), + [aux_sym_comparison_operator_token49] = ACTIONS(715), + [aux_sym_comparison_operator_token50] = ACTIONS(715), + [aux_sym_format_operator_token1] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(717), + [aux_sym_logical_expression_token1] = ACTIONS(715), + [aux_sym_logical_expression_token2] = ACTIONS(715), + [aux_sym_logical_expression_token3] = ACTIONS(715), + [aux_sym_bitwise_expression_token1] = ACTIONS(715), + [aux_sym_bitwise_expression_token2] = ACTIONS(715), + [aux_sym_bitwise_expression_token3] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_BSLASH] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(715), + [sym__statement_terminator] = ACTIONS(715), }, [176] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(655), - [anon_sym_BANG_EQ] = ACTIONS(655), - [anon_sym_PLUS_EQ] = ACTIONS(655), - [anon_sym_STAR_EQ] = ACTIONS(655), - [anon_sym_SLASH_EQ] = ACTIONS(655), - [anon_sym_PERCENT_EQ] = ACTIONS(655), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(655), - [anon_sym_2_GT] = ACTIONS(657), - [anon_sym_2_GT_GT] = ACTIONS(655), - [anon_sym_3_GT] = ACTIONS(657), - [anon_sym_3_GT_GT] = ACTIONS(655), - [anon_sym_4_GT] = ACTIONS(657), - [anon_sym_4_GT_GT] = ACTIONS(655), - [anon_sym_5_GT] = ACTIONS(657), - [anon_sym_5_GT_GT] = ACTIONS(655), - [anon_sym_6_GT] = ACTIONS(657), - [anon_sym_6_GT_GT] = ACTIONS(655), - [anon_sym_STAR_GT] = ACTIONS(657), - [anon_sym_STAR_GT_GT] = ACTIONS(655), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_STAR_GT_AMP1] = ACTIONS(655), - [anon_sym_2_GT_AMP1] = ACTIONS(655), - [anon_sym_3_GT_AMP1] = ACTIONS(655), - [anon_sym_4_GT_AMP1] = ACTIONS(655), - [anon_sym_5_GT_AMP1] = ACTIONS(655), - [anon_sym_6_GT_AMP1] = ACTIONS(655), - [anon_sym_STAR_GT_AMP2] = ACTIONS(655), - [anon_sym_1_GT_AMP2] = ACTIONS(655), - [anon_sym_3_GT_AMP2] = ACTIONS(655), - [anon_sym_4_GT_AMP2] = ACTIONS(655), - [anon_sym_5_GT_AMP2] = ACTIONS(655), - [anon_sym_6_GT_AMP2] = ACTIONS(655), - [aux_sym_comparison_operator_token1] = ACTIONS(655), - [aux_sym_comparison_operator_token2] = ACTIONS(655), - [aux_sym_comparison_operator_token3] = ACTIONS(655), - [aux_sym_comparison_operator_token4] = ACTIONS(655), - [aux_sym_comparison_operator_token5] = ACTIONS(655), - [aux_sym_comparison_operator_token6] = ACTIONS(655), - [aux_sym_comparison_operator_token7] = ACTIONS(655), - [aux_sym_comparison_operator_token8] = ACTIONS(655), - [aux_sym_comparison_operator_token9] = ACTIONS(655), - [aux_sym_comparison_operator_token10] = ACTIONS(655), - [aux_sym_comparison_operator_token11] = ACTIONS(655), - [aux_sym_comparison_operator_token12] = ACTIONS(655), - [aux_sym_comparison_operator_token13] = ACTIONS(655), - [aux_sym_comparison_operator_token14] = ACTIONS(655), - [aux_sym_comparison_operator_token15] = ACTIONS(655), - [aux_sym_comparison_operator_token16] = ACTIONS(655), - [aux_sym_comparison_operator_token17] = ACTIONS(655), - [aux_sym_comparison_operator_token18] = ACTIONS(655), - [aux_sym_comparison_operator_token19] = ACTIONS(655), - [aux_sym_comparison_operator_token20] = ACTIONS(655), - [aux_sym_comparison_operator_token21] = ACTIONS(655), - [aux_sym_comparison_operator_token22] = ACTIONS(655), - [aux_sym_comparison_operator_token23] = ACTIONS(655), - [aux_sym_comparison_operator_token24] = ACTIONS(655), - [aux_sym_comparison_operator_token25] = ACTIONS(655), - [aux_sym_comparison_operator_token26] = ACTIONS(655), - [aux_sym_comparison_operator_token27] = ACTIONS(655), - [aux_sym_comparison_operator_token28] = ACTIONS(657), - [aux_sym_comparison_operator_token29] = ACTIONS(655), - [aux_sym_comparison_operator_token30] = ACTIONS(655), - [aux_sym_comparison_operator_token31] = ACTIONS(655), - [aux_sym_comparison_operator_token32] = ACTIONS(655), - [aux_sym_comparison_operator_token33] = ACTIONS(655), - [aux_sym_comparison_operator_token34] = ACTIONS(657), - [aux_sym_comparison_operator_token35] = ACTIONS(655), - [aux_sym_comparison_operator_token36] = ACTIONS(655), - [aux_sym_comparison_operator_token37] = ACTIONS(655), - [aux_sym_comparison_operator_token38] = ACTIONS(655), - [aux_sym_comparison_operator_token39] = ACTIONS(655), - [aux_sym_comparison_operator_token40] = ACTIONS(655), - [aux_sym_comparison_operator_token41] = ACTIONS(655), - [aux_sym_comparison_operator_token42] = ACTIONS(655), - [aux_sym_comparison_operator_token43] = ACTIONS(655), - [aux_sym_comparison_operator_token44] = ACTIONS(655), - [aux_sym_comparison_operator_token45] = ACTIONS(655), - [aux_sym_comparison_operator_token46] = ACTIONS(655), - [aux_sym_comparison_operator_token47] = ACTIONS(655), - [aux_sym_comparison_operator_token48] = ACTIONS(655), - [aux_sym_comparison_operator_token49] = ACTIONS(655), - [aux_sym_comparison_operator_token50] = ACTIONS(655), - [aux_sym_format_operator_token1] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PERCENT] = ACTIONS(657), - [aux_sym_logical_expression_token1] = ACTIONS(655), - [aux_sym_logical_expression_token2] = ACTIONS(655), - [aux_sym_logical_expression_token3] = ACTIONS(655), - [aux_sym_bitwise_expression_token1] = ACTIONS(655), - [aux_sym_bitwise_expression_token2] = ACTIONS(655), - [aux_sym_bitwise_expression_token3] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_SLASH] = ACTIONS(657), - [anon_sym_BSLASH] = ACTIONS(655), - [anon_sym_STAR] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(655), - [sym__statement_terminator] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_PLUS_EQ] = ACTIONS(707), + [anon_sym_STAR_EQ] = ACTIONS(707), + [anon_sym_SLASH_EQ] = ACTIONS(707), + [anon_sym_PERCENT_EQ] = ACTIONS(707), + [anon_sym_DASH_EQ] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_2_GT] = ACTIONS(709), + [anon_sym_2_GT_GT] = ACTIONS(707), + [anon_sym_3_GT] = ACTIONS(709), + [anon_sym_3_GT_GT] = ACTIONS(707), + [anon_sym_4_GT] = ACTIONS(709), + [anon_sym_4_GT_GT] = ACTIONS(707), + [anon_sym_5_GT] = ACTIONS(709), + [anon_sym_5_GT_GT] = ACTIONS(707), + [anon_sym_6_GT] = ACTIONS(709), + [anon_sym_6_GT_GT] = ACTIONS(707), + [anon_sym_STAR_GT] = ACTIONS(709), + [anon_sym_STAR_GT_GT] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(709), + [anon_sym_STAR_GT_AMP1] = ACTIONS(707), + [anon_sym_2_GT_AMP1] = ACTIONS(707), + [anon_sym_3_GT_AMP1] = ACTIONS(707), + [anon_sym_4_GT_AMP1] = ACTIONS(707), + [anon_sym_5_GT_AMP1] = ACTIONS(707), + [anon_sym_6_GT_AMP1] = ACTIONS(707), + [anon_sym_STAR_GT_AMP2] = ACTIONS(707), + [anon_sym_1_GT_AMP2] = ACTIONS(707), + [anon_sym_3_GT_AMP2] = ACTIONS(707), + [anon_sym_4_GT_AMP2] = ACTIONS(707), + [anon_sym_5_GT_AMP2] = ACTIONS(707), + [anon_sym_6_GT_AMP2] = ACTIONS(707), + [aux_sym_comparison_operator_token1] = ACTIONS(707), + [aux_sym_comparison_operator_token2] = ACTIONS(707), + [aux_sym_comparison_operator_token3] = ACTIONS(707), + [aux_sym_comparison_operator_token4] = ACTIONS(707), + [aux_sym_comparison_operator_token5] = ACTIONS(707), + [aux_sym_comparison_operator_token6] = ACTIONS(707), + [aux_sym_comparison_operator_token7] = ACTIONS(707), + [aux_sym_comparison_operator_token8] = ACTIONS(707), + [aux_sym_comparison_operator_token9] = ACTIONS(707), + [aux_sym_comparison_operator_token10] = ACTIONS(707), + [aux_sym_comparison_operator_token11] = ACTIONS(707), + [aux_sym_comparison_operator_token12] = ACTIONS(707), + [aux_sym_comparison_operator_token13] = ACTIONS(707), + [aux_sym_comparison_operator_token14] = ACTIONS(707), + [aux_sym_comparison_operator_token15] = ACTIONS(707), + [aux_sym_comparison_operator_token16] = ACTIONS(707), + [aux_sym_comparison_operator_token17] = ACTIONS(707), + [aux_sym_comparison_operator_token18] = ACTIONS(707), + [aux_sym_comparison_operator_token19] = ACTIONS(707), + [aux_sym_comparison_operator_token20] = ACTIONS(707), + [aux_sym_comparison_operator_token21] = ACTIONS(707), + [aux_sym_comparison_operator_token22] = ACTIONS(707), + [aux_sym_comparison_operator_token23] = ACTIONS(707), + [aux_sym_comparison_operator_token24] = ACTIONS(707), + [aux_sym_comparison_operator_token25] = ACTIONS(707), + [aux_sym_comparison_operator_token26] = ACTIONS(707), + [aux_sym_comparison_operator_token27] = ACTIONS(707), + [aux_sym_comparison_operator_token28] = ACTIONS(709), + [aux_sym_comparison_operator_token29] = ACTIONS(707), + [aux_sym_comparison_operator_token30] = ACTIONS(707), + [aux_sym_comparison_operator_token31] = ACTIONS(707), + [aux_sym_comparison_operator_token32] = ACTIONS(707), + [aux_sym_comparison_operator_token33] = ACTIONS(707), + [aux_sym_comparison_operator_token34] = ACTIONS(709), + [aux_sym_comparison_operator_token35] = ACTIONS(707), + [aux_sym_comparison_operator_token36] = ACTIONS(707), + [aux_sym_comparison_operator_token37] = ACTIONS(707), + [aux_sym_comparison_operator_token38] = ACTIONS(707), + [aux_sym_comparison_operator_token39] = ACTIONS(707), + [aux_sym_comparison_operator_token40] = ACTIONS(707), + [aux_sym_comparison_operator_token41] = ACTIONS(707), + [aux_sym_comparison_operator_token42] = ACTIONS(707), + [aux_sym_comparison_operator_token43] = ACTIONS(707), + [aux_sym_comparison_operator_token44] = ACTIONS(707), + [aux_sym_comparison_operator_token45] = ACTIONS(707), + [aux_sym_comparison_operator_token46] = ACTIONS(707), + [aux_sym_comparison_operator_token47] = ACTIONS(707), + [aux_sym_comparison_operator_token48] = ACTIONS(707), + [aux_sym_comparison_operator_token49] = ACTIONS(707), + [aux_sym_comparison_operator_token50] = ACTIONS(707), + [aux_sym_format_operator_token1] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_PERCENT] = ACTIONS(709), + [aux_sym_logical_expression_token1] = ACTIONS(707), + [aux_sym_logical_expression_token2] = ACTIONS(707), + [aux_sym_logical_expression_token3] = ACTIONS(707), + [aux_sym_bitwise_expression_token1] = ACTIONS(707), + [aux_sym_bitwise_expression_token2] = ACTIONS(707), + [aux_sym_bitwise_expression_token3] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_DOT_DOT] = ACTIONS(707), + [sym__statement_terminator] = ACTIONS(707), }, [177] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(663), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_2_GT] = ACTIONS(665), - [anon_sym_2_GT_GT] = ACTIONS(663), - [anon_sym_3_GT] = ACTIONS(665), - [anon_sym_3_GT_GT] = ACTIONS(663), - [anon_sym_4_GT] = ACTIONS(665), - [anon_sym_4_GT_GT] = ACTIONS(663), - [anon_sym_5_GT] = ACTIONS(665), - [anon_sym_5_GT_GT] = ACTIONS(663), - [anon_sym_6_GT] = ACTIONS(665), - [anon_sym_6_GT_GT] = ACTIONS(663), - [anon_sym_STAR_GT] = ACTIONS(665), - [anon_sym_STAR_GT_GT] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_STAR_GT_AMP1] = ACTIONS(663), - [anon_sym_2_GT_AMP1] = ACTIONS(663), - [anon_sym_3_GT_AMP1] = ACTIONS(663), - [anon_sym_4_GT_AMP1] = ACTIONS(663), - [anon_sym_5_GT_AMP1] = ACTIONS(663), - [anon_sym_6_GT_AMP1] = ACTIONS(663), - [anon_sym_STAR_GT_AMP2] = ACTIONS(663), - [anon_sym_1_GT_AMP2] = ACTIONS(663), - [anon_sym_3_GT_AMP2] = ACTIONS(663), - [anon_sym_4_GT_AMP2] = ACTIONS(663), - [anon_sym_5_GT_AMP2] = ACTIONS(663), - [anon_sym_6_GT_AMP2] = ACTIONS(663), - [aux_sym_comparison_operator_token1] = ACTIONS(663), - [aux_sym_comparison_operator_token2] = ACTIONS(663), - [aux_sym_comparison_operator_token3] = ACTIONS(663), - [aux_sym_comparison_operator_token4] = ACTIONS(663), - [aux_sym_comparison_operator_token5] = ACTIONS(663), - [aux_sym_comparison_operator_token6] = ACTIONS(663), - [aux_sym_comparison_operator_token7] = ACTIONS(663), - [aux_sym_comparison_operator_token8] = ACTIONS(663), - [aux_sym_comparison_operator_token9] = ACTIONS(663), - [aux_sym_comparison_operator_token10] = ACTIONS(663), - [aux_sym_comparison_operator_token11] = ACTIONS(663), - [aux_sym_comparison_operator_token12] = ACTIONS(663), - [aux_sym_comparison_operator_token13] = ACTIONS(663), - [aux_sym_comparison_operator_token14] = ACTIONS(663), - [aux_sym_comparison_operator_token15] = ACTIONS(663), - [aux_sym_comparison_operator_token16] = ACTIONS(663), - [aux_sym_comparison_operator_token17] = ACTIONS(663), - [aux_sym_comparison_operator_token18] = ACTIONS(663), - [aux_sym_comparison_operator_token19] = ACTIONS(663), - [aux_sym_comparison_operator_token20] = ACTIONS(663), - [aux_sym_comparison_operator_token21] = ACTIONS(663), - [aux_sym_comparison_operator_token22] = ACTIONS(663), - [aux_sym_comparison_operator_token23] = ACTIONS(663), - [aux_sym_comparison_operator_token24] = ACTIONS(663), - [aux_sym_comparison_operator_token25] = ACTIONS(663), - [aux_sym_comparison_operator_token26] = ACTIONS(663), - [aux_sym_comparison_operator_token27] = ACTIONS(663), - [aux_sym_comparison_operator_token28] = ACTIONS(665), - [aux_sym_comparison_operator_token29] = ACTIONS(663), - [aux_sym_comparison_operator_token30] = ACTIONS(663), - [aux_sym_comparison_operator_token31] = ACTIONS(663), - [aux_sym_comparison_operator_token32] = ACTIONS(663), - [aux_sym_comparison_operator_token33] = ACTIONS(663), - [aux_sym_comparison_operator_token34] = ACTIONS(665), - [aux_sym_comparison_operator_token35] = ACTIONS(663), - [aux_sym_comparison_operator_token36] = ACTIONS(663), - [aux_sym_comparison_operator_token37] = ACTIONS(663), - [aux_sym_comparison_operator_token38] = ACTIONS(663), - [aux_sym_comparison_operator_token39] = ACTIONS(663), - [aux_sym_comparison_operator_token40] = ACTIONS(663), - [aux_sym_comparison_operator_token41] = ACTIONS(663), - [aux_sym_comparison_operator_token42] = ACTIONS(663), - [aux_sym_comparison_operator_token43] = ACTIONS(663), - [aux_sym_comparison_operator_token44] = ACTIONS(663), - [aux_sym_comparison_operator_token45] = ACTIONS(663), - [aux_sym_comparison_operator_token46] = ACTIONS(663), - [aux_sym_comparison_operator_token47] = ACTIONS(663), - [aux_sym_comparison_operator_token48] = ACTIONS(663), - [aux_sym_comparison_operator_token49] = ACTIONS(663), - [aux_sym_comparison_operator_token50] = ACTIONS(663), - [aux_sym_format_operator_token1] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(665), - [aux_sym_logical_expression_token1] = ACTIONS(663), - [aux_sym_logical_expression_token2] = ACTIONS(663), - [aux_sym_logical_expression_token3] = ACTIONS(663), - [aux_sym_bitwise_expression_token1] = ACTIONS(663), - [aux_sym_bitwise_expression_token2] = ACTIONS(663), - [aux_sym_bitwise_expression_token3] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_BSLASH] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(663), - [sym__statement_terminator] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_BANG_EQ] = ACTIONS(703), + [anon_sym_PLUS_EQ] = ACTIONS(703), + [anon_sym_STAR_EQ] = ACTIONS(703), + [anon_sym_SLASH_EQ] = ACTIONS(703), + [anon_sym_PERCENT_EQ] = ACTIONS(703), + [anon_sym_DASH_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(703), + [anon_sym_2_GT] = ACTIONS(705), + [anon_sym_2_GT_GT] = ACTIONS(703), + [anon_sym_3_GT] = ACTIONS(705), + [anon_sym_3_GT_GT] = ACTIONS(703), + [anon_sym_4_GT] = ACTIONS(705), + [anon_sym_4_GT_GT] = ACTIONS(703), + [anon_sym_5_GT] = ACTIONS(705), + [anon_sym_5_GT_GT] = ACTIONS(703), + [anon_sym_6_GT] = ACTIONS(705), + [anon_sym_6_GT_GT] = ACTIONS(703), + [anon_sym_STAR_GT] = ACTIONS(705), + [anon_sym_STAR_GT_GT] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(705), + [anon_sym_STAR_GT_AMP1] = ACTIONS(703), + [anon_sym_2_GT_AMP1] = ACTIONS(703), + [anon_sym_3_GT_AMP1] = ACTIONS(703), + [anon_sym_4_GT_AMP1] = ACTIONS(703), + [anon_sym_5_GT_AMP1] = ACTIONS(703), + [anon_sym_6_GT_AMP1] = ACTIONS(703), + [anon_sym_STAR_GT_AMP2] = ACTIONS(703), + [anon_sym_1_GT_AMP2] = ACTIONS(703), + [anon_sym_3_GT_AMP2] = ACTIONS(703), + [anon_sym_4_GT_AMP2] = ACTIONS(703), + [anon_sym_5_GT_AMP2] = ACTIONS(703), + [anon_sym_6_GT_AMP2] = ACTIONS(703), + [aux_sym_comparison_operator_token1] = ACTIONS(703), + [aux_sym_comparison_operator_token2] = ACTIONS(703), + [aux_sym_comparison_operator_token3] = ACTIONS(703), + [aux_sym_comparison_operator_token4] = ACTIONS(703), + [aux_sym_comparison_operator_token5] = ACTIONS(703), + [aux_sym_comparison_operator_token6] = ACTIONS(703), + [aux_sym_comparison_operator_token7] = ACTIONS(703), + [aux_sym_comparison_operator_token8] = ACTIONS(703), + [aux_sym_comparison_operator_token9] = ACTIONS(703), + [aux_sym_comparison_operator_token10] = ACTIONS(703), + [aux_sym_comparison_operator_token11] = ACTIONS(703), + [aux_sym_comparison_operator_token12] = ACTIONS(703), + [aux_sym_comparison_operator_token13] = ACTIONS(703), + [aux_sym_comparison_operator_token14] = ACTIONS(703), + [aux_sym_comparison_operator_token15] = ACTIONS(703), + [aux_sym_comparison_operator_token16] = ACTIONS(703), + [aux_sym_comparison_operator_token17] = ACTIONS(703), + [aux_sym_comparison_operator_token18] = ACTIONS(703), + [aux_sym_comparison_operator_token19] = ACTIONS(703), + [aux_sym_comparison_operator_token20] = ACTIONS(703), + [aux_sym_comparison_operator_token21] = ACTIONS(703), + [aux_sym_comparison_operator_token22] = ACTIONS(703), + [aux_sym_comparison_operator_token23] = ACTIONS(703), + [aux_sym_comparison_operator_token24] = ACTIONS(703), + [aux_sym_comparison_operator_token25] = ACTIONS(703), + [aux_sym_comparison_operator_token26] = ACTIONS(703), + [aux_sym_comparison_operator_token27] = ACTIONS(703), + [aux_sym_comparison_operator_token28] = ACTIONS(705), + [aux_sym_comparison_operator_token29] = ACTIONS(703), + [aux_sym_comparison_operator_token30] = ACTIONS(703), + [aux_sym_comparison_operator_token31] = ACTIONS(703), + [aux_sym_comparison_operator_token32] = ACTIONS(703), + [aux_sym_comparison_operator_token33] = ACTIONS(703), + [aux_sym_comparison_operator_token34] = ACTIONS(705), + [aux_sym_comparison_operator_token35] = ACTIONS(703), + [aux_sym_comparison_operator_token36] = ACTIONS(703), + [aux_sym_comparison_operator_token37] = ACTIONS(703), + [aux_sym_comparison_operator_token38] = ACTIONS(703), + [aux_sym_comparison_operator_token39] = ACTIONS(703), + [aux_sym_comparison_operator_token40] = ACTIONS(703), + [aux_sym_comparison_operator_token41] = ACTIONS(703), + [aux_sym_comparison_operator_token42] = ACTIONS(703), + [aux_sym_comparison_operator_token43] = ACTIONS(703), + [aux_sym_comparison_operator_token44] = ACTIONS(703), + [aux_sym_comparison_operator_token45] = ACTIONS(703), + [aux_sym_comparison_operator_token46] = ACTIONS(703), + [aux_sym_comparison_operator_token47] = ACTIONS(703), + [aux_sym_comparison_operator_token48] = ACTIONS(703), + [aux_sym_comparison_operator_token49] = ACTIONS(703), + [aux_sym_comparison_operator_token50] = ACTIONS(703), + [aux_sym_format_operator_token1] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(705), + [aux_sym_logical_expression_token1] = ACTIONS(703), + [aux_sym_logical_expression_token2] = ACTIONS(703), + [aux_sym_logical_expression_token3] = ACTIONS(703), + [aux_sym_bitwise_expression_token1] = ACTIONS(703), + [aux_sym_bitwise_expression_token2] = ACTIONS(703), + [aux_sym_bitwise_expression_token3] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_DOT_DOT] = ACTIONS(703), + [sym__statement_terminator] = ACTIONS(703), }, [178] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(651), - [anon_sym_2_GT] = ACTIONS(653), - [anon_sym_2_GT_GT] = ACTIONS(651), - [anon_sym_3_GT] = ACTIONS(653), - [anon_sym_3_GT_GT] = ACTIONS(651), - [anon_sym_4_GT] = ACTIONS(653), - [anon_sym_4_GT_GT] = ACTIONS(651), - [anon_sym_5_GT] = ACTIONS(653), - [anon_sym_5_GT_GT] = ACTIONS(651), - [anon_sym_6_GT] = ACTIONS(653), - [anon_sym_6_GT_GT] = ACTIONS(651), - [anon_sym_STAR_GT] = ACTIONS(653), - [anon_sym_STAR_GT_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_STAR_GT_AMP1] = ACTIONS(651), - [anon_sym_2_GT_AMP1] = ACTIONS(651), - [anon_sym_3_GT_AMP1] = ACTIONS(651), - [anon_sym_4_GT_AMP1] = ACTIONS(651), - [anon_sym_5_GT_AMP1] = ACTIONS(651), - [anon_sym_6_GT_AMP1] = ACTIONS(651), - [anon_sym_STAR_GT_AMP2] = ACTIONS(651), - [anon_sym_1_GT_AMP2] = ACTIONS(651), - [anon_sym_3_GT_AMP2] = ACTIONS(651), - [anon_sym_4_GT_AMP2] = ACTIONS(651), - [anon_sym_5_GT_AMP2] = ACTIONS(651), - [anon_sym_6_GT_AMP2] = ACTIONS(651), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(653), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(651), - [sym__statement_terminator] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_BANG_EQ] = ACTIONS(699), + [anon_sym_PLUS_EQ] = ACTIONS(699), + [anon_sym_STAR_EQ] = ACTIONS(699), + [anon_sym_SLASH_EQ] = ACTIONS(699), + [anon_sym_PERCENT_EQ] = ACTIONS(699), + [anon_sym_DASH_EQ] = ACTIONS(699), + [anon_sym_GT] = ACTIONS(701), + [anon_sym_GT_GT] = ACTIONS(699), + [anon_sym_2_GT] = ACTIONS(701), + [anon_sym_2_GT_GT] = ACTIONS(699), + [anon_sym_3_GT] = ACTIONS(701), + [anon_sym_3_GT_GT] = ACTIONS(699), + [anon_sym_4_GT] = ACTIONS(701), + [anon_sym_4_GT_GT] = ACTIONS(699), + [anon_sym_5_GT] = ACTIONS(701), + [anon_sym_5_GT_GT] = ACTIONS(699), + [anon_sym_6_GT] = ACTIONS(701), + [anon_sym_6_GT_GT] = ACTIONS(699), + [anon_sym_STAR_GT] = ACTIONS(701), + [anon_sym_STAR_GT_GT] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(701), + [anon_sym_STAR_GT_AMP1] = ACTIONS(699), + [anon_sym_2_GT_AMP1] = ACTIONS(699), + [anon_sym_3_GT_AMP1] = ACTIONS(699), + [anon_sym_4_GT_AMP1] = ACTIONS(699), + [anon_sym_5_GT_AMP1] = ACTIONS(699), + [anon_sym_6_GT_AMP1] = ACTIONS(699), + [anon_sym_STAR_GT_AMP2] = ACTIONS(699), + [anon_sym_1_GT_AMP2] = ACTIONS(699), + [anon_sym_3_GT_AMP2] = ACTIONS(699), + [anon_sym_4_GT_AMP2] = ACTIONS(699), + [anon_sym_5_GT_AMP2] = ACTIONS(699), + [anon_sym_6_GT_AMP2] = ACTIONS(699), + [aux_sym_comparison_operator_token1] = ACTIONS(699), + [aux_sym_comparison_operator_token2] = ACTIONS(699), + [aux_sym_comparison_operator_token3] = ACTIONS(699), + [aux_sym_comparison_operator_token4] = ACTIONS(699), + [aux_sym_comparison_operator_token5] = ACTIONS(699), + [aux_sym_comparison_operator_token6] = ACTIONS(699), + [aux_sym_comparison_operator_token7] = ACTIONS(699), + [aux_sym_comparison_operator_token8] = ACTIONS(699), + [aux_sym_comparison_operator_token9] = ACTIONS(699), + [aux_sym_comparison_operator_token10] = ACTIONS(699), + [aux_sym_comparison_operator_token11] = ACTIONS(699), + [aux_sym_comparison_operator_token12] = ACTIONS(699), + [aux_sym_comparison_operator_token13] = ACTIONS(699), + [aux_sym_comparison_operator_token14] = ACTIONS(699), + [aux_sym_comparison_operator_token15] = ACTIONS(699), + [aux_sym_comparison_operator_token16] = ACTIONS(699), + [aux_sym_comparison_operator_token17] = ACTIONS(699), + [aux_sym_comparison_operator_token18] = ACTIONS(699), + [aux_sym_comparison_operator_token19] = ACTIONS(699), + [aux_sym_comparison_operator_token20] = ACTIONS(699), + [aux_sym_comparison_operator_token21] = ACTIONS(699), + [aux_sym_comparison_operator_token22] = ACTIONS(699), + [aux_sym_comparison_operator_token23] = ACTIONS(699), + [aux_sym_comparison_operator_token24] = ACTIONS(699), + [aux_sym_comparison_operator_token25] = ACTIONS(699), + [aux_sym_comparison_operator_token26] = ACTIONS(699), + [aux_sym_comparison_operator_token27] = ACTIONS(699), + [aux_sym_comparison_operator_token28] = ACTIONS(701), + [aux_sym_comparison_operator_token29] = ACTIONS(699), + [aux_sym_comparison_operator_token30] = ACTIONS(699), + [aux_sym_comparison_operator_token31] = ACTIONS(699), + [aux_sym_comparison_operator_token32] = ACTIONS(699), + [aux_sym_comparison_operator_token33] = ACTIONS(699), + [aux_sym_comparison_operator_token34] = ACTIONS(701), + [aux_sym_comparison_operator_token35] = ACTIONS(699), + [aux_sym_comparison_operator_token36] = ACTIONS(699), + [aux_sym_comparison_operator_token37] = ACTIONS(699), + [aux_sym_comparison_operator_token38] = ACTIONS(699), + [aux_sym_comparison_operator_token39] = ACTIONS(699), + [aux_sym_comparison_operator_token40] = ACTIONS(699), + [aux_sym_comparison_operator_token41] = ACTIONS(699), + [aux_sym_comparison_operator_token42] = ACTIONS(699), + [aux_sym_comparison_operator_token43] = ACTIONS(699), + [aux_sym_comparison_operator_token44] = ACTIONS(699), + [aux_sym_comparison_operator_token45] = ACTIONS(699), + [aux_sym_comparison_operator_token46] = ACTIONS(699), + [aux_sym_comparison_operator_token47] = ACTIONS(699), + [aux_sym_comparison_operator_token48] = ACTIONS(699), + [aux_sym_comparison_operator_token49] = ACTIONS(699), + [aux_sym_comparison_operator_token50] = ACTIONS(699), + [aux_sym_format_operator_token1] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(699), + [anon_sym_PIPE] = ACTIONS(699), + [anon_sym_PERCENT] = ACTIONS(701), + [aux_sym_logical_expression_token1] = ACTIONS(699), + [aux_sym_logical_expression_token2] = ACTIONS(699), + [aux_sym_logical_expression_token3] = ACTIONS(699), + [aux_sym_bitwise_expression_token1] = ACTIONS(699), + [aux_sym_bitwise_expression_token2] = ACTIONS(699), + [aux_sym_bitwise_expression_token3] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_SLASH] = ACTIONS(701), + [anon_sym_BSLASH] = ACTIONS(699), + [anon_sym_STAR] = ACTIONS(701), + [anon_sym_DOT_DOT] = ACTIONS(699), + [sym__statement_terminator] = ACTIONS(699), }, [179] = { + [sym_format_operator] = STATE(573), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(795), [anon_sym_BANG_EQ] = ACTIONS(795), @@ -47893,6 +48901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(795), [anon_sym_SLASH_EQ] = ACTIONS(795), [anon_sym_PERCENT_EQ] = ACTIONS(795), + [anon_sym_DASH_EQ] = ACTIONS(795), [anon_sym_GT] = ACTIONS(797), [anon_sym_GT_GT] = ACTIONS(795), [anon_sym_2_GT] = ACTIONS(797), @@ -47970,8 +48979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(795), [aux_sym_comparison_operator_token49] = ACTIONS(795), [aux_sym_comparison_operator_token50] = ACTIONS(795), - [aux_sym_format_operator_token1] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), + [aux_sym_format_operator_token1] = ACTIONS(799), [anon_sym_PIPE] = ACTIONS(795), [anon_sym_PERCENT] = ACTIONS(797), [aux_sym_logical_expression_token1] = ACTIONS(795), @@ -47985,10 +48993,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(797), [anon_sym_BSLASH] = ACTIONS(795), [anon_sym_STAR] = ACTIONS(797), - [anon_sym_DOT_DOT] = ACTIONS(799), + [sym__statement_terminator] = ACTIONS(795), }, [180] = { - [sym_format_operator] = STATE(582), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(801), [anon_sym_BANG_EQ] = ACTIONS(801), @@ -47996,6 +49003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(801), [anon_sym_SLASH_EQ] = ACTIONS(801), [anon_sym_PERCENT_EQ] = ACTIONS(801), + [anon_sym_DASH_EQ] = ACTIONS(801), [anon_sym_GT] = ACTIONS(803), [anon_sym_GT_GT] = ACTIONS(801), [anon_sym_2_GT] = ACTIONS(803), @@ -48073,8 +49081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(801), [aux_sym_comparison_operator_token49] = ACTIONS(801), [aux_sym_comparison_operator_token50] = ACTIONS(801), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(801), + [aux_sym_format_operator_token1] = ACTIONS(801), [anon_sym_PIPE] = ACTIONS(801), [anon_sym_PERCENT] = ACTIONS(803), [aux_sym_logical_expression_token1] = ACTIONS(801), @@ -48088,110 +49095,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(803), [anon_sym_BSLASH] = ACTIONS(801), [anon_sym_STAR] = ACTIONS(803), + [anon_sym_DOT_DOT] = ACTIONS(805), + [sym__statement_terminator] = ACTIONS(801), }, [181] = { - [sym_format_operator] = STATE(576), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_BANG_EQ] = ACTIONS(801), - [anon_sym_PLUS_EQ] = ACTIONS(801), - [anon_sym_STAR_EQ] = ACTIONS(801), - [anon_sym_SLASH_EQ] = ACTIONS(801), - [anon_sym_PERCENT_EQ] = ACTIONS(801), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_GT_GT] = ACTIONS(801), - [anon_sym_2_GT] = ACTIONS(803), - [anon_sym_2_GT_GT] = ACTIONS(801), - [anon_sym_3_GT] = ACTIONS(803), - [anon_sym_3_GT_GT] = ACTIONS(801), - [anon_sym_4_GT] = ACTIONS(803), - [anon_sym_4_GT_GT] = ACTIONS(801), - [anon_sym_5_GT] = ACTIONS(803), - [anon_sym_5_GT_GT] = ACTIONS(801), - [anon_sym_6_GT] = ACTIONS(803), - [anon_sym_6_GT_GT] = ACTIONS(801), - [anon_sym_STAR_GT] = ACTIONS(803), - [anon_sym_STAR_GT_GT] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_STAR_GT_AMP1] = ACTIONS(801), - [anon_sym_2_GT_AMP1] = ACTIONS(801), - [anon_sym_3_GT_AMP1] = ACTIONS(801), - [anon_sym_4_GT_AMP1] = ACTIONS(801), - [anon_sym_5_GT_AMP1] = ACTIONS(801), - [anon_sym_6_GT_AMP1] = ACTIONS(801), - [anon_sym_STAR_GT_AMP2] = ACTIONS(801), - [anon_sym_1_GT_AMP2] = ACTIONS(801), - [anon_sym_3_GT_AMP2] = ACTIONS(801), - [anon_sym_4_GT_AMP2] = ACTIONS(801), - [anon_sym_5_GT_AMP2] = ACTIONS(801), - [anon_sym_6_GT_AMP2] = ACTIONS(801), - [aux_sym_comparison_operator_token1] = ACTIONS(801), - [aux_sym_comparison_operator_token2] = ACTIONS(801), - [aux_sym_comparison_operator_token3] = ACTIONS(801), - [aux_sym_comparison_operator_token4] = ACTIONS(801), - [aux_sym_comparison_operator_token5] = ACTIONS(801), - [aux_sym_comparison_operator_token6] = ACTIONS(801), - [aux_sym_comparison_operator_token7] = ACTIONS(801), - [aux_sym_comparison_operator_token8] = ACTIONS(801), - [aux_sym_comparison_operator_token9] = ACTIONS(801), - [aux_sym_comparison_operator_token10] = ACTIONS(801), - [aux_sym_comparison_operator_token11] = ACTIONS(801), - [aux_sym_comparison_operator_token12] = ACTIONS(801), - [aux_sym_comparison_operator_token13] = ACTIONS(801), - [aux_sym_comparison_operator_token14] = ACTIONS(801), - [aux_sym_comparison_operator_token15] = ACTIONS(801), - [aux_sym_comparison_operator_token16] = ACTIONS(801), - [aux_sym_comparison_operator_token17] = ACTIONS(801), - [aux_sym_comparison_operator_token18] = ACTIONS(801), - [aux_sym_comparison_operator_token19] = ACTIONS(801), - [aux_sym_comparison_operator_token20] = ACTIONS(801), - [aux_sym_comparison_operator_token21] = ACTIONS(801), - [aux_sym_comparison_operator_token22] = ACTIONS(801), - [aux_sym_comparison_operator_token23] = ACTIONS(801), - [aux_sym_comparison_operator_token24] = ACTIONS(801), - [aux_sym_comparison_operator_token25] = ACTIONS(801), - [aux_sym_comparison_operator_token26] = ACTIONS(801), - [aux_sym_comparison_operator_token27] = ACTIONS(801), - [aux_sym_comparison_operator_token28] = ACTIONS(803), - [aux_sym_comparison_operator_token29] = ACTIONS(801), - [aux_sym_comparison_operator_token30] = ACTIONS(801), - [aux_sym_comparison_operator_token31] = ACTIONS(801), - [aux_sym_comparison_operator_token32] = ACTIONS(801), - [aux_sym_comparison_operator_token33] = ACTIONS(801), - [aux_sym_comparison_operator_token34] = ACTIONS(803), - [aux_sym_comparison_operator_token35] = ACTIONS(801), - [aux_sym_comparison_operator_token36] = ACTIONS(801), - [aux_sym_comparison_operator_token37] = ACTIONS(801), - [aux_sym_comparison_operator_token38] = ACTIONS(801), - [aux_sym_comparison_operator_token39] = ACTIONS(801), - [aux_sym_comparison_operator_token40] = ACTIONS(801), - [aux_sym_comparison_operator_token41] = ACTIONS(801), - [aux_sym_comparison_operator_token42] = ACTIONS(801), - [aux_sym_comparison_operator_token43] = ACTIONS(801), - [aux_sym_comparison_operator_token44] = ACTIONS(801), - [aux_sym_comparison_operator_token45] = ACTIONS(801), - [aux_sym_comparison_operator_token46] = ACTIONS(801), - [aux_sym_comparison_operator_token47] = ACTIONS(801), - [aux_sym_comparison_operator_token48] = ACTIONS(801), - [aux_sym_comparison_operator_token49] = ACTIONS(801), - [aux_sym_comparison_operator_token50] = ACTIONS(801), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(803), - [aux_sym_logical_expression_token1] = ACTIONS(801), - [aux_sym_logical_expression_token2] = ACTIONS(801), - [aux_sym_logical_expression_token3] = ACTIONS(801), - [aux_sym_bitwise_expression_token1] = ACTIONS(801), - [aux_sym_bitwise_expression_token2] = ACTIONS(801), - [aux_sym_bitwise_expression_token3] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [sym__statement_terminator] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_PLUS_EQ] = ACTIONS(791), + [anon_sym_STAR_EQ] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(791), + [anon_sym_PERCENT_EQ] = ACTIONS(791), + [anon_sym_DASH_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_2_GT] = ACTIONS(793), + [anon_sym_2_GT_GT] = ACTIONS(791), + [anon_sym_3_GT] = ACTIONS(793), + [anon_sym_3_GT_GT] = ACTIONS(791), + [anon_sym_4_GT] = ACTIONS(793), + [anon_sym_4_GT_GT] = ACTIONS(791), + [anon_sym_5_GT] = ACTIONS(793), + [anon_sym_5_GT_GT] = ACTIONS(791), + [anon_sym_6_GT] = ACTIONS(793), + [anon_sym_6_GT_GT] = ACTIONS(791), + [anon_sym_STAR_GT] = ACTIONS(793), + [anon_sym_STAR_GT_GT] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_STAR_GT_AMP1] = ACTIONS(791), + [anon_sym_2_GT_AMP1] = ACTIONS(791), + [anon_sym_3_GT_AMP1] = ACTIONS(791), + [anon_sym_4_GT_AMP1] = ACTIONS(791), + [anon_sym_5_GT_AMP1] = ACTIONS(791), + [anon_sym_6_GT_AMP1] = ACTIONS(791), + [anon_sym_STAR_GT_AMP2] = ACTIONS(791), + [anon_sym_1_GT_AMP2] = ACTIONS(791), + [anon_sym_3_GT_AMP2] = ACTIONS(791), + [anon_sym_4_GT_AMP2] = ACTIONS(791), + [anon_sym_5_GT_AMP2] = ACTIONS(791), + [anon_sym_6_GT_AMP2] = ACTIONS(791), + [aux_sym_comparison_operator_token1] = ACTIONS(791), + [aux_sym_comparison_operator_token2] = ACTIONS(791), + [aux_sym_comparison_operator_token3] = ACTIONS(791), + [aux_sym_comparison_operator_token4] = ACTIONS(791), + [aux_sym_comparison_operator_token5] = ACTIONS(791), + [aux_sym_comparison_operator_token6] = ACTIONS(791), + [aux_sym_comparison_operator_token7] = ACTIONS(791), + [aux_sym_comparison_operator_token8] = ACTIONS(791), + [aux_sym_comparison_operator_token9] = ACTIONS(791), + [aux_sym_comparison_operator_token10] = ACTIONS(791), + [aux_sym_comparison_operator_token11] = ACTIONS(791), + [aux_sym_comparison_operator_token12] = ACTIONS(791), + [aux_sym_comparison_operator_token13] = ACTIONS(791), + [aux_sym_comparison_operator_token14] = ACTIONS(791), + [aux_sym_comparison_operator_token15] = ACTIONS(791), + [aux_sym_comparison_operator_token16] = ACTIONS(791), + [aux_sym_comparison_operator_token17] = ACTIONS(791), + [aux_sym_comparison_operator_token18] = ACTIONS(791), + [aux_sym_comparison_operator_token19] = ACTIONS(791), + [aux_sym_comparison_operator_token20] = ACTIONS(791), + [aux_sym_comparison_operator_token21] = ACTIONS(791), + [aux_sym_comparison_operator_token22] = ACTIONS(791), + [aux_sym_comparison_operator_token23] = ACTIONS(791), + [aux_sym_comparison_operator_token24] = ACTIONS(791), + [aux_sym_comparison_operator_token25] = ACTIONS(791), + [aux_sym_comparison_operator_token26] = ACTIONS(791), + [aux_sym_comparison_operator_token27] = ACTIONS(791), + [aux_sym_comparison_operator_token28] = ACTIONS(793), + [aux_sym_comparison_operator_token29] = ACTIONS(791), + [aux_sym_comparison_operator_token30] = ACTIONS(791), + [aux_sym_comparison_operator_token31] = ACTIONS(791), + [aux_sym_comparison_operator_token32] = ACTIONS(791), + [aux_sym_comparison_operator_token33] = ACTIONS(791), + [aux_sym_comparison_operator_token34] = ACTIONS(793), + [aux_sym_comparison_operator_token35] = ACTIONS(791), + [aux_sym_comparison_operator_token36] = ACTIONS(791), + [aux_sym_comparison_operator_token37] = ACTIONS(791), + [aux_sym_comparison_operator_token38] = ACTIONS(791), + [aux_sym_comparison_operator_token39] = ACTIONS(791), + [aux_sym_comparison_operator_token40] = ACTIONS(791), + [aux_sym_comparison_operator_token41] = ACTIONS(791), + [aux_sym_comparison_operator_token42] = ACTIONS(791), + [aux_sym_comparison_operator_token43] = ACTIONS(791), + [aux_sym_comparison_operator_token44] = ACTIONS(791), + [aux_sym_comparison_operator_token45] = ACTIONS(791), + [aux_sym_comparison_operator_token46] = ACTIONS(791), + [aux_sym_comparison_operator_token47] = ACTIONS(791), + [aux_sym_comparison_operator_token48] = ACTIONS(791), + [aux_sym_comparison_operator_token49] = ACTIONS(791), + [aux_sym_comparison_operator_token50] = ACTIONS(791), + [aux_sym_format_operator_token1] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_PERCENT] = ACTIONS(793), + [aux_sym_logical_expression_token1] = ACTIONS(791), + [aux_sym_logical_expression_token2] = ACTIONS(791), + [aux_sym_logical_expression_token3] = ACTIONS(791), + [aux_sym_bitwise_expression_token1] = ACTIONS(791), + [aux_sym_bitwise_expression_token2] = ACTIONS(791), + [aux_sym_bitwise_expression_token3] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_BSLASH] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_DOT_DOT] = ACTIONS(791), + [sym__statement_terminator] = ACTIONS(791), }, [182] = { + [sym_format_operator] = STATE(578), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(795), [anon_sym_BANG_EQ] = ACTIONS(795), @@ -48199,6 +49210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(795), [anon_sym_SLASH_EQ] = ACTIONS(795), [anon_sym_PERCENT_EQ] = ACTIONS(795), + [anon_sym_DASH_EQ] = ACTIONS(795), [anon_sym_GT] = ACTIONS(797), [anon_sym_GT_GT] = ACTIONS(795), [anon_sym_2_GT] = ACTIONS(797), @@ -48276,7 +49288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(795), [aux_sym_comparison_operator_token49] = ACTIONS(795), [aux_sym_comparison_operator_token50] = ACTIONS(795), - [aux_sym_format_operator_token1] = ACTIONS(795), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(795), [anon_sym_PIPE] = ACTIONS(795), [anon_sym_PERCENT] = ACTIONS(797), [aux_sym_logical_expression_token1] = ACTIONS(795), @@ -48290,11 +49303,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(797), [anon_sym_BSLASH] = ACTIONS(795), [anon_sym_STAR] = ACTIONS(797), - [anon_sym_DOT_DOT] = ACTIONS(807), - [sym__statement_terminator] = ACTIONS(795), }, [183] = { - [sym_format_operator] = STATE(582), + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_PLUS_EQ] = ACTIONS(801), + [anon_sym_STAR_EQ] = ACTIONS(801), + [anon_sym_SLASH_EQ] = ACTIONS(801), + [anon_sym_PERCENT_EQ] = ACTIONS(801), + [anon_sym_DASH_EQ] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(801), + [anon_sym_2_GT] = ACTIONS(803), + [anon_sym_2_GT_GT] = ACTIONS(801), + [anon_sym_3_GT] = ACTIONS(803), + [anon_sym_3_GT_GT] = ACTIONS(801), + [anon_sym_4_GT] = ACTIONS(803), + [anon_sym_4_GT_GT] = ACTIONS(801), + [anon_sym_5_GT] = ACTIONS(803), + [anon_sym_5_GT_GT] = ACTIONS(801), + [anon_sym_6_GT] = ACTIONS(803), + [anon_sym_6_GT_GT] = ACTIONS(801), + [anon_sym_STAR_GT] = ACTIONS(803), + [anon_sym_STAR_GT_GT] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(803), + [anon_sym_STAR_GT_AMP1] = ACTIONS(801), + [anon_sym_2_GT_AMP1] = ACTIONS(801), + [anon_sym_3_GT_AMP1] = ACTIONS(801), + [anon_sym_4_GT_AMP1] = ACTIONS(801), + [anon_sym_5_GT_AMP1] = ACTIONS(801), + [anon_sym_6_GT_AMP1] = ACTIONS(801), + [anon_sym_STAR_GT_AMP2] = ACTIONS(801), + [anon_sym_1_GT_AMP2] = ACTIONS(801), + [anon_sym_3_GT_AMP2] = ACTIONS(801), + [anon_sym_4_GT_AMP2] = ACTIONS(801), + [anon_sym_5_GT_AMP2] = ACTIONS(801), + [anon_sym_6_GT_AMP2] = ACTIONS(801), + [aux_sym_comparison_operator_token1] = ACTIONS(801), + [aux_sym_comparison_operator_token2] = ACTIONS(801), + [aux_sym_comparison_operator_token3] = ACTIONS(801), + [aux_sym_comparison_operator_token4] = ACTIONS(801), + [aux_sym_comparison_operator_token5] = ACTIONS(801), + [aux_sym_comparison_operator_token6] = ACTIONS(801), + [aux_sym_comparison_operator_token7] = ACTIONS(801), + [aux_sym_comparison_operator_token8] = ACTIONS(801), + [aux_sym_comparison_operator_token9] = ACTIONS(801), + [aux_sym_comparison_operator_token10] = ACTIONS(801), + [aux_sym_comparison_operator_token11] = ACTIONS(801), + [aux_sym_comparison_operator_token12] = ACTIONS(801), + [aux_sym_comparison_operator_token13] = ACTIONS(801), + [aux_sym_comparison_operator_token14] = ACTIONS(801), + [aux_sym_comparison_operator_token15] = ACTIONS(801), + [aux_sym_comparison_operator_token16] = ACTIONS(801), + [aux_sym_comparison_operator_token17] = ACTIONS(801), + [aux_sym_comparison_operator_token18] = ACTIONS(801), + [aux_sym_comparison_operator_token19] = ACTIONS(801), + [aux_sym_comparison_operator_token20] = ACTIONS(801), + [aux_sym_comparison_operator_token21] = ACTIONS(801), + [aux_sym_comparison_operator_token22] = ACTIONS(801), + [aux_sym_comparison_operator_token23] = ACTIONS(801), + [aux_sym_comparison_operator_token24] = ACTIONS(801), + [aux_sym_comparison_operator_token25] = ACTIONS(801), + [aux_sym_comparison_operator_token26] = ACTIONS(801), + [aux_sym_comparison_operator_token27] = ACTIONS(801), + [aux_sym_comparison_operator_token28] = ACTIONS(803), + [aux_sym_comparison_operator_token29] = ACTIONS(801), + [aux_sym_comparison_operator_token30] = ACTIONS(801), + [aux_sym_comparison_operator_token31] = ACTIONS(801), + [aux_sym_comparison_operator_token32] = ACTIONS(801), + [aux_sym_comparison_operator_token33] = ACTIONS(801), + [aux_sym_comparison_operator_token34] = ACTIONS(803), + [aux_sym_comparison_operator_token35] = ACTIONS(801), + [aux_sym_comparison_operator_token36] = ACTIONS(801), + [aux_sym_comparison_operator_token37] = ACTIONS(801), + [aux_sym_comparison_operator_token38] = ACTIONS(801), + [aux_sym_comparison_operator_token39] = ACTIONS(801), + [aux_sym_comparison_operator_token40] = ACTIONS(801), + [aux_sym_comparison_operator_token41] = ACTIONS(801), + [aux_sym_comparison_operator_token42] = ACTIONS(801), + [aux_sym_comparison_operator_token43] = ACTIONS(801), + [aux_sym_comparison_operator_token44] = ACTIONS(801), + [aux_sym_comparison_operator_token45] = ACTIONS(801), + [aux_sym_comparison_operator_token46] = ACTIONS(801), + [aux_sym_comparison_operator_token47] = ACTIONS(801), + [aux_sym_comparison_operator_token48] = ACTIONS(801), + [aux_sym_comparison_operator_token49] = ACTIONS(801), + [aux_sym_comparison_operator_token50] = ACTIONS(801), + [aux_sym_format_operator_token1] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(803), + [aux_sym_logical_expression_token1] = ACTIONS(801), + [aux_sym_logical_expression_token2] = ACTIONS(801), + [aux_sym_logical_expression_token3] = ACTIONS(801), + [aux_sym_bitwise_expression_token1] = ACTIONS(801), + [aux_sym_bitwise_expression_token2] = ACTIONS(801), + [aux_sym_bitwise_expression_token3] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(803), + [anon_sym_BSLASH] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_DOT_DOT] = ACTIONS(807), + }, + [184] = { + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_PLUS_EQ] = ACTIONS(787), + [anon_sym_STAR_EQ] = ACTIONS(787), + [anon_sym_SLASH_EQ] = ACTIONS(787), + [anon_sym_PERCENT_EQ] = ACTIONS(787), + [anon_sym_DASH_EQ] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_GT] = ACTIONS(787), + [anon_sym_2_GT] = ACTIONS(789), + [anon_sym_2_GT_GT] = ACTIONS(787), + [anon_sym_3_GT] = ACTIONS(789), + [anon_sym_3_GT_GT] = ACTIONS(787), + [anon_sym_4_GT] = ACTIONS(789), + [anon_sym_4_GT_GT] = ACTIONS(787), + [anon_sym_5_GT] = ACTIONS(789), + [anon_sym_5_GT_GT] = ACTIONS(787), + [anon_sym_6_GT] = ACTIONS(789), + [anon_sym_6_GT_GT] = ACTIONS(787), + [anon_sym_STAR_GT] = ACTIONS(789), + [anon_sym_STAR_GT_GT] = ACTIONS(787), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_STAR_GT_AMP1] = ACTIONS(787), + [anon_sym_2_GT_AMP1] = ACTIONS(787), + [anon_sym_3_GT_AMP1] = ACTIONS(787), + [anon_sym_4_GT_AMP1] = ACTIONS(787), + [anon_sym_5_GT_AMP1] = ACTIONS(787), + [anon_sym_6_GT_AMP1] = ACTIONS(787), + [anon_sym_STAR_GT_AMP2] = ACTIONS(787), + [anon_sym_1_GT_AMP2] = ACTIONS(787), + [anon_sym_3_GT_AMP2] = ACTIONS(787), + [anon_sym_4_GT_AMP2] = ACTIONS(787), + [anon_sym_5_GT_AMP2] = ACTIONS(787), + [anon_sym_6_GT_AMP2] = ACTIONS(787), + [aux_sym_comparison_operator_token1] = ACTIONS(787), + [aux_sym_comparison_operator_token2] = ACTIONS(787), + [aux_sym_comparison_operator_token3] = ACTIONS(787), + [aux_sym_comparison_operator_token4] = ACTIONS(787), + [aux_sym_comparison_operator_token5] = ACTIONS(787), + [aux_sym_comparison_operator_token6] = ACTIONS(787), + [aux_sym_comparison_operator_token7] = ACTIONS(787), + [aux_sym_comparison_operator_token8] = ACTIONS(787), + [aux_sym_comparison_operator_token9] = ACTIONS(787), + [aux_sym_comparison_operator_token10] = ACTIONS(787), + [aux_sym_comparison_operator_token11] = ACTIONS(787), + [aux_sym_comparison_operator_token12] = ACTIONS(787), + [aux_sym_comparison_operator_token13] = ACTIONS(787), + [aux_sym_comparison_operator_token14] = ACTIONS(787), + [aux_sym_comparison_operator_token15] = ACTIONS(787), + [aux_sym_comparison_operator_token16] = ACTIONS(787), + [aux_sym_comparison_operator_token17] = ACTIONS(787), + [aux_sym_comparison_operator_token18] = ACTIONS(787), + [aux_sym_comparison_operator_token19] = ACTIONS(787), + [aux_sym_comparison_operator_token20] = ACTIONS(787), + [aux_sym_comparison_operator_token21] = ACTIONS(787), + [aux_sym_comparison_operator_token22] = ACTIONS(787), + [aux_sym_comparison_operator_token23] = ACTIONS(787), + [aux_sym_comparison_operator_token24] = ACTIONS(787), + [aux_sym_comparison_operator_token25] = ACTIONS(787), + [aux_sym_comparison_operator_token26] = ACTIONS(787), + [aux_sym_comparison_operator_token27] = ACTIONS(787), + [aux_sym_comparison_operator_token28] = ACTIONS(789), + [aux_sym_comparison_operator_token29] = ACTIONS(787), + [aux_sym_comparison_operator_token30] = ACTIONS(787), + [aux_sym_comparison_operator_token31] = ACTIONS(787), + [aux_sym_comparison_operator_token32] = ACTIONS(787), + [aux_sym_comparison_operator_token33] = ACTIONS(787), + [aux_sym_comparison_operator_token34] = ACTIONS(789), + [aux_sym_comparison_operator_token35] = ACTIONS(787), + [aux_sym_comparison_operator_token36] = ACTIONS(787), + [aux_sym_comparison_operator_token37] = ACTIONS(787), + [aux_sym_comparison_operator_token38] = ACTIONS(787), + [aux_sym_comparison_operator_token39] = ACTIONS(787), + [aux_sym_comparison_operator_token40] = ACTIONS(787), + [aux_sym_comparison_operator_token41] = ACTIONS(787), + [aux_sym_comparison_operator_token42] = ACTIONS(787), + [aux_sym_comparison_operator_token43] = ACTIONS(787), + [aux_sym_comparison_operator_token44] = ACTIONS(787), + [aux_sym_comparison_operator_token45] = ACTIONS(787), + [aux_sym_comparison_operator_token46] = ACTIONS(787), + [aux_sym_comparison_operator_token47] = ACTIONS(787), + [aux_sym_comparison_operator_token48] = ACTIONS(787), + [aux_sym_comparison_operator_token49] = ACTIONS(787), + [aux_sym_comparison_operator_token50] = ACTIONS(787), + [aux_sym_format_operator_token1] = ACTIONS(787), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(789), + [aux_sym_logical_expression_token1] = ACTIONS(787), + [aux_sym_logical_expression_token2] = ACTIONS(787), + [aux_sym_logical_expression_token3] = ACTIONS(787), + [aux_sym_bitwise_expression_token1] = ACTIONS(787), + [aux_sym_bitwise_expression_token2] = ACTIONS(787), + [aux_sym_bitwise_expression_token3] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_BSLASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_DOT_DOT] = ACTIONS(787), + [sym__statement_terminator] = ACTIONS(787), + }, + [185] = { + [sym_format_operator] = STATE(578), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(809), @@ -48302,6 +49519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(809), [anon_sym_SLASH_EQ] = ACTIONS(809), [anon_sym_PERCENT_EQ] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(809), [anon_sym_GT] = ACTIONS(811), [anon_sym_GT_GT] = ACTIONS(809), [anon_sym_2_GT] = ACTIONS(811), @@ -48379,7 +49597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(809), [aux_sym_comparison_operator_token49] = ACTIONS(809), [aux_sym_comparison_operator_token50] = ACTIONS(809), - [aux_sym_format_operator_token1] = ACTIONS(805), + [aux_sym_format_operator_token1] = ACTIONS(799), [anon_sym_RPAREN] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), [anon_sym_PERCENT] = ACTIONS(811), @@ -48395,212 +49613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(809), [anon_sym_STAR] = ACTIONS(811), }, - [184] = { - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(813), - [anon_sym_STAR_EQ] = ACTIONS(813), - [anon_sym_SLASH_EQ] = ACTIONS(813), - [anon_sym_PERCENT_EQ] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(815), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_2_GT] = ACTIONS(815), - [anon_sym_2_GT_GT] = ACTIONS(813), - [anon_sym_3_GT] = ACTIONS(815), - [anon_sym_3_GT_GT] = ACTIONS(813), - [anon_sym_4_GT] = ACTIONS(815), - [anon_sym_4_GT_GT] = ACTIONS(813), - [anon_sym_5_GT] = ACTIONS(815), - [anon_sym_5_GT_GT] = ACTIONS(813), - [anon_sym_6_GT] = ACTIONS(815), - [anon_sym_6_GT_GT] = ACTIONS(813), - [anon_sym_STAR_GT] = ACTIONS(815), - [anon_sym_STAR_GT_GT] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_STAR_GT_AMP1] = ACTIONS(813), - [anon_sym_2_GT_AMP1] = ACTIONS(813), - [anon_sym_3_GT_AMP1] = ACTIONS(813), - [anon_sym_4_GT_AMP1] = ACTIONS(813), - [anon_sym_5_GT_AMP1] = ACTIONS(813), - [anon_sym_6_GT_AMP1] = ACTIONS(813), - [anon_sym_STAR_GT_AMP2] = ACTIONS(813), - [anon_sym_1_GT_AMP2] = ACTIONS(813), - [anon_sym_3_GT_AMP2] = ACTIONS(813), - [anon_sym_4_GT_AMP2] = ACTIONS(813), - [anon_sym_5_GT_AMP2] = ACTIONS(813), - [anon_sym_6_GT_AMP2] = ACTIONS(813), - [aux_sym_comparison_operator_token1] = ACTIONS(813), - [aux_sym_comparison_operator_token2] = ACTIONS(813), - [aux_sym_comparison_operator_token3] = ACTIONS(813), - [aux_sym_comparison_operator_token4] = ACTIONS(813), - [aux_sym_comparison_operator_token5] = ACTIONS(813), - [aux_sym_comparison_operator_token6] = ACTIONS(813), - [aux_sym_comparison_operator_token7] = ACTIONS(813), - [aux_sym_comparison_operator_token8] = ACTIONS(813), - [aux_sym_comparison_operator_token9] = ACTIONS(813), - [aux_sym_comparison_operator_token10] = ACTIONS(813), - [aux_sym_comparison_operator_token11] = ACTIONS(813), - [aux_sym_comparison_operator_token12] = ACTIONS(813), - [aux_sym_comparison_operator_token13] = ACTIONS(813), - [aux_sym_comparison_operator_token14] = ACTIONS(813), - [aux_sym_comparison_operator_token15] = ACTIONS(813), - [aux_sym_comparison_operator_token16] = ACTIONS(813), - [aux_sym_comparison_operator_token17] = ACTIONS(813), - [aux_sym_comparison_operator_token18] = ACTIONS(813), - [aux_sym_comparison_operator_token19] = ACTIONS(813), - [aux_sym_comparison_operator_token20] = ACTIONS(813), - [aux_sym_comparison_operator_token21] = ACTIONS(813), - [aux_sym_comparison_operator_token22] = ACTIONS(813), - [aux_sym_comparison_operator_token23] = ACTIONS(813), - [aux_sym_comparison_operator_token24] = ACTIONS(813), - [aux_sym_comparison_operator_token25] = ACTIONS(813), - [aux_sym_comparison_operator_token26] = ACTIONS(813), - [aux_sym_comparison_operator_token27] = ACTIONS(813), - [aux_sym_comparison_operator_token28] = ACTIONS(815), - [aux_sym_comparison_operator_token29] = ACTIONS(813), - [aux_sym_comparison_operator_token30] = ACTIONS(813), - [aux_sym_comparison_operator_token31] = ACTIONS(813), - [aux_sym_comparison_operator_token32] = ACTIONS(813), - [aux_sym_comparison_operator_token33] = ACTIONS(813), - [aux_sym_comparison_operator_token34] = ACTIONS(815), - [aux_sym_comparison_operator_token35] = ACTIONS(813), - [aux_sym_comparison_operator_token36] = ACTIONS(813), - [aux_sym_comparison_operator_token37] = ACTIONS(813), - [aux_sym_comparison_operator_token38] = ACTIONS(813), - [aux_sym_comparison_operator_token39] = ACTIONS(813), - [aux_sym_comparison_operator_token40] = ACTIONS(813), - [aux_sym_comparison_operator_token41] = ACTIONS(813), - [aux_sym_comparison_operator_token42] = ACTIONS(813), - [aux_sym_comparison_operator_token43] = ACTIONS(813), - [aux_sym_comparison_operator_token44] = ACTIONS(813), - [aux_sym_comparison_operator_token45] = ACTIONS(813), - [aux_sym_comparison_operator_token46] = ACTIONS(813), - [aux_sym_comparison_operator_token47] = ACTIONS(813), - [aux_sym_comparison_operator_token48] = ACTIONS(813), - [aux_sym_comparison_operator_token49] = ACTIONS(813), - [aux_sym_comparison_operator_token50] = ACTIONS(813), - [aux_sym_format_operator_token1] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [aux_sym_logical_expression_token1] = ACTIONS(813), - [aux_sym_logical_expression_token2] = ACTIONS(813), - [aux_sym_logical_expression_token3] = ACTIONS(813), - [aux_sym_bitwise_expression_token1] = ACTIONS(813), - [aux_sym_bitwise_expression_token2] = ACTIONS(813), - [aux_sym_bitwise_expression_token3] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(815), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(815), - [anon_sym_DOT_DOT] = ACTIONS(799), - }, - [185] = { - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_PLUS_EQ] = ACTIONS(765), - [anon_sym_STAR_EQ] = ACTIONS(765), - [anon_sym_SLASH_EQ] = ACTIONS(765), - [anon_sym_PERCENT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_2_GT] = ACTIONS(767), - [anon_sym_2_GT_GT] = ACTIONS(765), - [anon_sym_3_GT] = ACTIONS(767), - [anon_sym_3_GT_GT] = ACTIONS(765), - [anon_sym_4_GT] = ACTIONS(767), - [anon_sym_4_GT_GT] = ACTIONS(765), - [anon_sym_5_GT] = ACTIONS(767), - [anon_sym_5_GT_GT] = ACTIONS(765), - [anon_sym_6_GT] = ACTIONS(767), - [anon_sym_6_GT_GT] = ACTIONS(765), - [anon_sym_STAR_GT] = ACTIONS(767), - [anon_sym_STAR_GT_GT] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_STAR_GT_AMP1] = ACTIONS(765), - [anon_sym_2_GT_AMP1] = ACTIONS(765), - [anon_sym_3_GT_AMP1] = ACTIONS(765), - [anon_sym_4_GT_AMP1] = ACTIONS(765), - [anon_sym_5_GT_AMP1] = ACTIONS(765), - [anon_sym_6_GT_AMP1] = ACTIONS(765), - [anon_sym_STAR_GT_AMP2] = ACTIONS(765), - [anon_sym_1_GT_AMP2] = ACTIONS(765), - [anon_sym_3_GT_AMP2] = ACTIONS(765), - [anon_sym_4_GT_AMP2] = ACTIONS(765), - [anon_sym_5_GT_AMP2] = ACTIONS(765), - [anon_sym_6_GT_AMP2] = ACTIONS(765), - [aux_sym_comparison_operator_token1] = ACTIONS(765), - [aux_sym_comparison_operator_token2] = ACTIONS(765), - [aux_sym_comparison_operator_token3] = ACTIONS(765), - [aux_sym_comparison_operator_token4] = ACTIONS(765), - [aux_sym_comparison_operator_token5] = ACTIONS(765), - [aux_sym_comparison_operator_token6] = ACTIONS(765), - [aux_sym_comparison_operator_token7] = ACTIONS(765), - [aux_sym_comparison_operator_token8] = ACTIONS(765), - [aux_sym_comparison_operator_token9] = ACTIONS(765), - [aux_sym_comparison_operator_token10] = ACTIONS(765), - [aux_sym_comparison_operator_token11] = ACTIONS(765), - [aux_sym_comparison_operator_token12] = ACTIONS(765), - [aux_sym_comparison_operator_token13] = ACTIONS(765), - [aux_sym_comparison_operator_token14] = ACTIONS(765), - [aux_sym_comparison_operator_token15] = ACTIONS(765), - [aux_sym_comparison_operator_token16] = ACTIONS(765), - [aux_sym_comparison_operator_token17] = ACTIONS(765), - [aux_sym_comparison_operator_token18] = ACTIONS(765), - [aux_sym_comparison_operator_token19] = ACTIONS(765), - [aux_sym_comparison_operator_token20] = ACTIONS(765), - [aux_sym_comparison_operator_token21] = ACTIONS(765), - [aux_sym_comparison_operator_token22] = ACTIONS(765), - [aux_sym_comparison_operator_token23] = ACTIONS(765), - [aux_sym_comparison_operator_token24] = ACTIONS(765), - [aux_sym_comparison_operator_token25] = ACTIONS(765), - [aux_sym_comparison_operator_token26] = ACTIONS(765), - [aux_sym_comparison_operator_token27] = ACTIONS(765), - [aux_sym_comparison_operator_token28] = ACTIONS(767), - [aux_sym_comparison_operator_token29] = ACTIONS(765), - [aux_sym_comparison_operator_token30] = ACTIONS(765), - [aux_sym_comparison_operator_token31] = ACTIONS(765), - [aux_sym_comparison_operator_token32] = ACTIONS(765), - [aux_sym_comparison_operator_token33] = ACTIONS(765), - [aux_sym_comparison_operator_token34] = ACTIONS(767), - [aux_sym_comparison_operator_token35] = ACTIONS(765), - [aux_sym_comparison_operator_token36] = ACTIONS(765), - [aux_sym_comparison_operator_token37] = ACTIONS(765), - [aux_sym_comparison_operator_token38] = ACTIONS(765), - [aux_sym_comparison_operator_token39] = ACTIONS(765), - [aux_sym_comparison_operator_token40] = ACTIONS(765), - [aux_sym_comparison_operator_token41] = ACTIONS(765), - [aux_sym_comparison_operator_token42] = ACTIONS(765), - [aux_sym_comparison_operator_token43] = ACTIONS(765), - [aux_sym_comparison_operator_token44] = ACTIONS(765), - [aux_sym_comparison_operator_token45] = ACTIONS(765), - [aux_sym_comparison_operator_token46] = ACTIONS(765), - [aux_sym_comparison_operator_token47] = ACTIONS(765), - [aux_sym_comparison_operator_token48] = ACTIONS(765), - [aux_sym_comparison_operator_token49] = ACTIONS(765), - [aux_sym_comparison_operator_token50] = ACTIONS(765), - [aux_sym_format_operator_token1] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(767), - [aux_sym_logical_expression_token1] = ACTIONS(765), - [aux_sym_logical_expression_token2] = ACTIONS(765), - [aux_sym_logical_expression_token3] = ACTIONS(765), - [aux_sym_bitwise_expression_token1] = ACTIONS(765), - [aux_sym_bitwise_expression_token2] = ACTIONS(765), - [aux_sym_bitwise_expression_token3] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_SLASH] = ACTIONS(767), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(767), - [anon_sym_DOT_DOT] = ACTIONS(765), - [sym__statement_terminator] = ACTIONS(765), - }, [186] = { - [sym_format_operator] = STATE(576), + [sym_format_operator] = STATE(573), [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(809), @@ -48608,6 +49622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(809), [anon_sym_SLASH_EQ] = ACTIONS(809), [anon_sym_PERCENT_EQ] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(809), [anon_sym_GT] = ACTIONS(811), [anon_sym_GT_GT] = ACTIONS(809), [anon_sym_2_GT] = ACTIONS(811), @@ -48685,7 +49700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(809), [aux_sym_comparison_operator_token49] = ACTIONS(809), [aux_sym_comparison_operator_token50] = ACTIONS(809), - [aux_sym_format_operator_token1] = ACTIONS(805), + [aux_sym_format_operator_token1] = ACTIONS(799), [anon_sym_PIPE] = ACTIONS(809), [anon_sym_PERCENT] = ACTIONS(811), [aux_sym_logical_expression_token1] = ACTIONS(809), @@ -48702,108 +49717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__statement_terminator] = ACTIONS(809), }, [187] = { - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_BANG_EQ] = ACTIONS(788), - [anon_sym_PLUS_EQ] = ACTIONS(788), - [anon_sym_STAR_EQ] = ACTIONS(788), - [anon_sym_SLASH_EQ] = ACTIONS(788), - [anon_sym_PERCENT_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_2_GT] = ACTIONS(790), - [anon_sym_2_GT_GT] = ACTIONS(788), - [anon_sym_3_GT] = ACTIONS(790), - [anon_sym_3_GT_GT] = ACTIONS(788), - [anon_sym_4_GT] = ACTIONS(790), - [anon_sym_4_GT_GT] = ACTIONS(788), - [anon_sym_5_GT] = ACTIONS(790), - [anon_sym_5_GT_GT] = ACTIONS(788), - [anon_sym_6_GT] = ACTIONS(790), - [anon_sym_6_GT_GT] = ACTIONS(788), - [anon_sym_STAR_GT] = ACTIONS(790), - [anon_sym_STAR_GT_GT] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_STAR_GT_AMP1] = ACTIONS(788), - [anon_sym_2_GT_AMP1] = ACTIONS(788), - [anon_sym_3_GT_AMP1] = ACTIONS(788), - [anon_sym_4_GT_AMP1] = ACTIONS(788), - [anon_sym_5_GT_AMP1] = ACTIONS(788), - [anon_sym_6_GT_AMP1] = ACTIONS(788), - [anon_sym_STAR_GT_AMP2] = ACTIONS(788), - [anon_sym_1_GT_AMP2] = ACTIONS(788), - [anon_sym_3_GT_AMP2] = ACTIONS(788), - [anon_sym_4_GT_AMP2] = ACTIONS(788), - [anon_sym_5_GT_AMP2] = ACTIONS(788), - [anon_sym_6_GT_AMP2] = ACTIONS(788), - [aux_sym_comparison_operator_token1] = ACTIONS(788), - [aux_sym_comparison_operator_token2] = ACTIONS(788), - [aux_sym_comparison_operator_token3] = ACTIONS(788), - [aux_sym_comparison_operator_token4] = ACTIONS(788), - [aux_sym_comparison_operator_token5] = ACTIONS(788), - [aux_sym_comparison_operator_token6] = ACTIONS(788), - [aux_sym_comparison_operator_token7] = ACTIONS(788), - [aux_sym_comparison_operator_token8] = ACTIONS(788), - [aux_sym_comparison_operator_token9] = ACTIONS(788), - [aux_sym_comparison_operator_token10] = ACTIONS(788), - [aux_sym_comparison_operator_token11] = ACTIONS(788), - [aux_sym_comparison_operator_token12] = ACTIONS(788), - [aux_sym_comparison_operator_token13] = ACTIONS(788), - [aux_sym_comparison_operator_token14] = ACTIONS(788), - [aux_sym_comparison_operator_token15] = ACTIONS(788), - [aux_sym_comparison_operator_token16] = ACTIONS(788), - [aux_sym_comparison_operator_token17] = ACTIONS(788), - [aux_sym_comparison_operator_token18] = ACTIONS(788), - [aux_sym_comparison_operator_token19] = ACTIONS(788), - [aux_sym_comparison_operator_token20] = ACTIONS(788), - [aux_sym_comparison_operator_token21] = ACTIONS(788), - [aux_sym_comparison_operator_token22] = ACTIONS(788), - [aux_sym_comparison_operator_token23] = ACTIONS(788), - [aux_sym_comparison_operator_token24] = ACTIONS(788), - [aux_sym_comparison_operator_token25] = ACTIONS(788), - [aux_sym_comparison_operator_token26] = ACTIONS(788), - [aux_sym_comparison_operator_token27] = ACTIONS(788), - [aux_sym_comparison_operator_token28] = ACTIONS(790), - [aux_sym_comparison_operator_token29] = ACTIONS(788), - [aux_sym_comparison_operator_token30] = ACTIONS(788), - [aux_sym_comparison_operator_token31] = ACTIONS(788), - [aux_sym_comparison_operator_token32] = ACTIONS(788), - [aux_sym_comparison_operator_token33] = ACTIONS(788), - [aux_sym_comparison_operator_token34] = ACTIONS(790), - [aux_sym_comparison_operator_token35] = ACTIONS(788), - [aux_sym_comparison_operator_token36] = ACTIONS(788), - [aux_sym_comparison_operator_token37] = ACTIONS(788), - [aux_sym_comparison_operator_token38] = ACTIONS(788), - [aux_sym_comparison_operator_token39] = ACTIONS(788), - [aux_sym_comparison_operator_token40] = ACTIONS(788), - [aux_sym_comparison_operator_token41] = ACTIONS(788), - [aux_sym_comparison_operator_token42] = ACTIONS(788), - [aux_sym_comparison_operator_token43] = ACTIONS(788), - [aux_sym_comparison_operator_token44] = ACTIONS(788), - [aux_sym_comparison_operator_token45] = ACTIONS(788), - [aux_sym_comparison_operator_token46] = ACTIONS(788), - [aux_sym_comparison_operator_token47] = ACTIONS(788), - [aux_sym_comparison_operator_token48] = ACTIONS(788), - [aux_sym_comparison_operator_token49] = ACTIONS(788), - [aux_sym_comparison_operator_token50] = ACTIONS(788), - [aux_sym_format_operator_token1] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(790), - [aux_sym_logical_expression_token1] = ACTIONS(788), - [aux_sym_logical_expression_token2] = ACTIONS(788), - [aux_sym_logical_expression_token3] = ACTIONS(788), - [aux_sym_bitwise_expression_token1] = ACTIONS(788), - [aux_sym_bitwise_expression_token2] = ACTIONS(788), - [aux_sym_bitwise_expression_token3] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(790), - [anon_sym_SLASH] = ACTIONS(790), - [anon_sym_BSLASH] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(790), - [anon_sym_DOT_DOT] = ACTIONS(788), - [sym__statement_terminator] = ACTIONS(788), - }, - [188] = { [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(813), [anon_sym_BANG_EQ] = ACTIONS(813), @@ -48811,6 +49724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(813), [anon_sym_SLASH_EQ] = ACTIONS(813), [anon_sym_PERCENT_EQ] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(813), [anon_sym_GT] = ACTIONS(815), [anon_sym_GT_GT] = ACTIONS(813), [anon_sym_2_GT] = ACTIONS(815), @@ -48889,6 +49803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token49] = ACTIONS(813), [aux_sym_comparison_operator_token50] = ACTIONS(813), [aux_sym_format_operator_token1] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), [anon_sym_PIPE] = ACTIONS(813), [anon_sym_PERCENT] = ACTIONS(815), [aux_sym_logical_expression_token1] = ACTIONS(813), @@ -48903,40 +49818,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH] = ACTIONS(813), [anon_sym_STAR] = ACTIONS(815), [anon_sym_DOT_DOT] = ACTIONS(807), - [sym__statement_terminator] = ACTIONS(813), }, - [189] = { + [188] = { [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_BANG_EQ] = ACTIONS(817), - [anon_sym_PLUS_EQ] = ACTIONS(817), - [anon_sym_STAR_EQ] = ACTIONS(817), - [anon_sym_SLASH_EQ] = ACTIONS(817), - [anon_sym_PERCENT_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_GT] = ACTIONS(817), - [anon_sym_2_GT] = ACTIONS(819), - [anon_sym_2_GT_GT] = ACTIONS(817), - [anon_sym_3_GT] = ACTIONS(819), - [anon_sym_3_GT_GT] = ACTIONS(817), - [anon_sym_4_GT] = ACTIONS(819), - [anon_sym_4_GT_GT] = ACTIONS(817), - [anon_sym_5_GT] = ACTIONS(819), - [anon_sym_5_GT_GT] = ACTIONS(817), - [anon_sym_6_GT] = ACTIONS(819), - [anon_sym_6_GT_GT] = ACTIONS(817), - [anon_sym_STAR_GT] = ACTIONS(819), - [anon_sym_STAR_GT_GT] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_STAR_GT_AMP1] = ACTIONS(817), - [anon_sym_2_GT_AMP1] = ACTIONS(817), - [anon_sym_3_GT_AMP1] = ACTIONS(817), - [anon_sym_4_GT_AMP1] = ACTIONS(817), - [anon_sym_5_GT_AMP1] = ACTIONS(817), - [anon_sym_6_GT_AMP1] = ACTIONS(817), - [anon_sym_STAR_GT_AMP2] = ACTIONS(817), - [anon_sym_1_GT_AMP2] = ACTIONS(817), - [anon_sym_3_GT_AMP2] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_PLUS_EQ] = ACTIONS(813), + [anon_sym_STAR_EQ] = ACTIONS(813), + [anon_sym_SLASH_EQ] = ACTIONS(813), + [anon_sym_PERCENT_EQ] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_2_GT] = ACTIONS(815), + [anon_sym_2_GT_GT] = ACTIONS(813), + [anon_sym_3_GT] = ACTIONS(815), + [anon_sym_3_GT_GT] = ACTIONS(813), + [anon_sym_4_GT] = ACTIONS(815), + [anon_sym_4_GT_GT] = ACTIONS(813), + [anon_sym_5_GT] = ACTIONS(815), + [anon_sym_5_GT_GT] = ACTIONS(813), + [anon_sym_6_GT] = ACTIONS(815), + [anon_sym_6_GT_GT] = ACTIONS(813), + [anon_sym_STAR_GT] = ACTIONS(815), + [anon_sym_STAR_GT_GT] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_STAR_GT_AMP1] = ACTIONS(813), + [anon_sym_2_GT_AMP1] = ACTIONS(813), + [anon_sym_3_GT_AMP1] = ACTIONS(813), + [anon_sym_4_GT_AMP1] = ACTIONS(813), + [anon_sym_5_GT_AMP1] = ACTIONS(813), + [anon_sym_6_GT_AMP1] = ACTIONS(813), + [anon_sym_STAR_GT_AMP2] = ACTIONS(813), + [anon_sym_1_GT_AMP2] = ACTIONS(813), + [anon_sym_3_GT_AMP2] = ACTIONS(813), + [anon_sym_4_GT_AMP2] = ACTIONS(813), + [anon_sym_5_GT_AMP2] = ACTIONS(813), + [anon_sym_6_GT_AMP2] = ACTIONS(813), + [aux_sym_comparison_operator_token1] = ACTIONS(813), + [aux_sym_comparison_operator_token2] = ACTIONS(813), + [aux_sym_comparison_operator_token3] = ACTIONS(813), + [aux_sym_comparison_operator_token4] = ACTIONS(813), + [aux_sym_comparison_operator_token5] = ACTIONS(813), + [aux_sym_comparison_operator_token6] = ACTIONS(813), + [aux_sym_comparison_operator_token7] = ACTIONS(813), + [aux_sym_comparison_operator_token8] = ACTIONS(813), + [aux_sym_comparison_operator_token9] = ACTIONS(813), + [aux_sym_comparison_operator_token10] = ACTIONS(813), + [aux_sym_comparison_operator_token11] = ACTIONS(813), + [aux_sym_comparison_operator_token12] = ACTIONS(813), + [aux_sym_comparison_operator_token13] = ACTIONS(813), + [aux_sym_comparison_operator_token14] = ACTIONS(813), + [aux_sym_comparison_operator_token15] = ACTIONS(813), + [aux_sym_comparison_operator_token16] = ACTIONS(813), + [aux_sym_comparison_operator_token17] = ACTIONS(813), + [aux_sym_comparison_operator_token18] = ACTIONS(813), + [aux_sym_comparison_operator_token19] = ACTIONS(813), + [aux_sym_comparison_operator_token20] = ACTIONS(813), + [aux_sym_comparison_operator_token21] = ACTIONS(813), + [aux_sym_comparison_operator_token22] = ACTIONS(813), + [aux_sym_comparison_operator_token23] = ACTIONS(813), + [aux_sym_comparison_operator_token24] = ACTIONS(813), + [aux_sym_comparison_operator_token25] = ACTIONS(813), + [aux_sym_comparison_operator_token26] = ACTIONS(813), + [aux_sym_comparison_operator_token27] = ACTIONS(813), + [aux_sym_comparison_operator_token28] = ACTIONS(815), + [aux_sym_comparison_operator_token29] = ACTIONS(813), + [aux_sym_comparison_operator_token30] = ACTIONS(813), + [aux_sym_comparison_operator_token31] = ACTIONS(813), + [aux_sym_comparison_operator_token32] = ACTIONS(813), + [aux_sym_comparison_operator_token33] = ACTIONS(813), + [aux_sym_comparison_operator_token34] = ACTIONS(815), + [aux_sym_comparison_operator_token35] = ACTIONS(813), + [aux_sym_comparison_operator_token36] = ACTIONS(813), + [aux_sym_comparison_operator_token37] = ACTIONS(813), + [aux_sym_comparison_operator_token38] = ACTIONS(813), + [aux_sym_comparison_operator_token39] = ACTIONS(813), + [aux_sym_comparison_operator_token40] = ACTIONS(813), + [aux_sym_comparison_operator_token41] = ACTIONS(813), + [aux_sym_comparison_operator_token42] = ACTIONS(813), + [aux_sym_comparison_operator_token43] = ACTIONS(813), + [aux_sym_comparison_operator_token44] = ACTIONS(813), + [aux_sym_comparison_operator_token45] = ACTIONS(813), + [aux_sym_comparison_operator_token46] = ACTIONS(813), + [aux_sym_comparison_operator_token47] = ACTIONS(813), + [aux_sym_comparison_operator_token48] = ACTIONS(813), + [aux_sym_comparison_operator_token49] = ACTIONS(813), + [aux_sym_comparison_operator_token50] = ACTIONS(813), + [aux_sym_format_operator_token1] = ACTIONS(813), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(815), + [aux_sym_logical_expression_token1] = ACTIONS(813), + [aux_sym_logical_expression_token2] = ACTIONS(813), + [aux_sym_logical_expression_token3] = ACTIONS(813), + [aux_sym_bitwise_expression_token1] = ACTIONS(813), + [aux_sym_bitwise_expression_token2] = ACTIONS(813), + [aux_sym_bitwise_expression_token3] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_BSLASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_DOT_DOT] = ACTIONS(805), + [sym__statement_terminator] = ACTIONS(813), + }, + [189] = { + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(817), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_STAR_EQ] = ACTIONS(817), + [anon_sym_SLASH_EQ] = ACTIONS(817), + [anon_sym_PERCENT_EQ] = ACTIONS(817), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_2_GT] = ACTIONS(819), + [anon_sym_2_GT_GT] = ACTIONS(817), + [anon_sym_3_GT] = ACTIONS(819), + [anon_sym_3_GT_GT] = ACTIONS(817), + [anon_sym_4_GT] = ACTIONS(819), + [anon_sym_4_GT_GT] = ACTIONS(817), + [anon_sym_5_GT] = ACTIONS(819), + [anon_sym_5_GT_GT] = ACTIONS(817), + [anon_sym_6_GT] = ACTIONS(819), + [anon_sym_6_GT_GT] = ACTIONS(817), + [anon_sym_STAR_GT] = ACTIONS(819), + [anon_sym_STAR_GT_GT] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_STAR_GT_AMP1] = ACTIONS(817), + [anon_sym_2_GT_AMP1] = ACTIONS(817), + [anon_sym_3_GT_AMP1] = ACTIONS(817), + [anon_sym_4_GT_AMP1] = ACTIONS(817), + [anon_sym_5_GT_AMP1] = ACTIONS(817), + [anon_sym_6_GT_AMP1] = ACTIONS(817), + [anon_sym_STAR_GT_AMP2] = ACTIONS(817), + [anon_sym_1_GT_AMP2] = ACTIONS(817), + [anon_sym_3_GT_AMP2] = ACTIONS(817), [anon_sym_4_GT_AMP2] = ACTIONS(817), [anon_sym_5_GT_AMP2] = ACTIONS(817), [anon_sym_6_GT_AMP2] = ACTIONS(817), @@ -49013,6 +50031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(817), [anon_sym_SLASH_EQ] = ACTIONS(817), [anon_sym_PERCENT_EQ] = ACTIONS(817), + [anon_sym_DASH_EQ] = ACTIONS(817), [anon_sym_GT] = ACTIONS(819), [anon_sym_GT_GT] = ACTIONS(817), [anon_sym_2_GT] = ACTIONS(819), @@ -49113,6 +50132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(829), [anon_sym_SLASH_EQ] = ACTIONS(829), [anon_sym_PERCENT_EQ] = ACTIONS(829), + [anon_sym_DASH_EQ] = ACTIONS(829), [anon_sym_GT] = ACTIONS(831), [anon_sym_GT_GT] = ACTIONS(829), [anon_sym_2_GT] = ACTIONS(831), @@ -49190,9 +50210,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(829), [aux_sym_comparison_operator_token49] = ACTIONS(829), [aux_sym_comparison_operator_token50] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(821), [aux_sym_logical_expression_token1] = ACTIONS(829), [aux_sym_logical_expression_token2] = ACTIONS(829), [aux_sym_logical_expression_token3] = ACTIONS(829), @@ -49201,9 +50220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token3] = ACTIONS(829), [anon_sym_PLUS] = ACTIONS(831), [anon_sym_DASH] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_BSLASH] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_BSLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(821), + [sym__statement_terminator] = ACTIONS(829), }, [192] = { [sym_comment] = ACTIONS(81), @@ -49213,6 +50233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(829), [anon_sym_SLASH_EQ] = ACTIONS(829), [anon_sym_PERCENT_EQ] = ACTIONS(829), + [anon_sym_DASH_EQ] = ACTIONS(829), [anon_sym_GT] = ACTIONS(831), [anon_sym_GT_GT] = ACTIONS(829), [anon_sym_2_GT] = ACTIONS(831), @@ -49290,8 +50311,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(829), [aux_sym_comparison_operator_token49] = ACTIONS(829), [aux_sym_comparison_operator_token50] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(825), [aux_sym_logical_expression_token1] = ACTIONS(829), [aux_sym_logical_expression_token2] = ACTIONS(829), [aux_sym_logical_expression_token3] = ACTIONS(829), @@ -49300,207 +50322,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token3] = ACTIONS(829), [anon_sym_PLUS] = ACTIONS(831), [anon_sym_DASH] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_BSLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(821), - [sym__statement_terminator] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(825), }, [193] = { [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(253), - [sym_real_literal] = ACTIONS(253), - [aux_sym_expandable_string_literal_token1] = ACTIONS(253), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(253), - [sym_verbatim_string_characters] = ACTIONS(253), - [sym_verbatim_here_string_characters] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(253), - [aux_sym_comparison_operator_token1] = ACTIONS(253), - [aux_sym_comparison_operator_token2] = ACTIONS(253), - [aux_sym_comparison_operator_token3] = ACTIONS(253), - [aux_sym_comparison_operator_token4] = ACTIONS(253), - [aux_sym_comparison_operator_token5] = ACTIONS(253), - [aux_sym_comparison_operator_token6] = ACTIONS(253), - [aux_sym_comparison_operator_token7] = ACTIONS(253), - [aux_sym_comparison_operator_token8] = ACTIONS(253), - [aux_sym_comparison_operator_token9] = ACTIONS(253), - [aux_sym_comparison_operator_token10] = ACTIONS(253), - [aux_sym_comparison_operator_token11] = ACTIONS(253), - [aux_sym_comparison_operator_token12] = ACTIONS(253), - [aux_sym_comparison_operator_token13] = ACTIONS(253), - [aux_sym_comparison_operator_token14] = ACTIONS(253), - [aux_sym_comparison_operator_token15] = ACTIONS(253), - [aux_sym_comparison_operator_token16] = ACTIONS(253), - [aux_sym_comparison_operator_token17] = ACTIONS(253), - [aux_sym_comparison_operator_token18] = ACTIONS(253), - [aux_sym_comparison_operator_token19] = ACTIONS(253), - [aux_sym_comparison_operator_token20] = ACTIONS(253), - [aux_sym_comparison_operator_token21] = ACTIONS(253), - [aux_sym_comparison_operator_token22] = ACTIONS(253), - [aux_sym_comparison_operator_token23] = ACTIONS(253), - [aux_sym_comparison_operator_token24] = ACTIONS(253), - [aux_sym_comparison_operator_token25] = ACTIONS(253), - [aux_sym_comparison_operator_token26] = ACTIONS(253), - [aux_sym_comparison_operator_token27] = ACTIONS(253), - [aux_sym_comparison_operator_token28] = ACTIONS(251), - [aux_sym_comparison_operator_token29] = ACTIONS(253), - [aux_sym_comparison_operator_token30] = ACTIONS(253), - [aux_sym_comparison_operator_token31] = ACTIONS(253), - [aux_sym_comparison_operator_token32] = ACTIONS(253), - [aux_sym_comparison_operator_token33] = ACTIONS(253), - [aux_sym_comparison_operator_token34] = ACTIONS(251), - [aux_sym_comparison_operator_token35] = ACTIONS(253), - [aux_sym_comparison_operator_token36] = ACTIONS(253), - [aux_sym_comparison_operator_token37] = ACTIONS(253), - [aux_sym_comparison_operator_token38] = ACTIONS(253), - [aux_sym_comparison_operator_token39] = ACTIONS(253), - [aux_sym_comparison_operator_token40] = ACTIONS(253), - [aux_sym_comparison_operator_token41] = ACTIONS(253), - [aux_sym_comparison_operator_token42] = ACTIONS(253), - [aux_sym_comparison_operator_token43] = ACTIONS(253), - [aux_sym_comparison_operator_token44] = ACTIONS(253), - [aux_sym_comparison_operator_token45] = ACTIONS(253), - [aux_sym_comparison_operator_token46] = ACTIONS(253), - [aux_sym_comparison_operator_token47] = ACTIONS(253), - [aux_sym_comparison_operator_token48] = ACTIONS(253), - [aux_sym_comparison_operator_token49] = ACTIONS(253), - [aux_sym_comparison_operator_token50] = ACTIONS(253), - [aux_sym_format_operator_token1] = ACTIONS(253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(253), - [anon_sym_DOLLAR_CARET] = ACTIONS(253), - [anon_sym_DOLLAR_QMARK] = ACTIONS(253), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(253), - [sym_braced_variable] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_PERCENT] = ACTIONS(253), - [aux_sym_logical_expression_token1] = ACTIONS(253), - [aux_sym_logical_expression_token2] = ACTIONS(253), - [aux_sym_logical_expression_token3] = ACTIONS(253), - [aux_sym_bitwise_expression_token1] = ACTIONS(253), - [aux_sym_bitwise_expression_token2] = ACTIONS(253), - [aux_sym_bitwise_expression_token3] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_BSLASH] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_DOT_DOT] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_AT_LPAREN] = ACTIONS(253), - [anon_sym_AT_LBRACE] = ACTIONS(253), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(253), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(477), + [sym_real_literal] = ACTIONS(477), + [aux_sym_expandable_string_literal_token1] = ACTIONS(477), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(477), + [sym_verbatim_string_characters] = ACTIONS(477), + [sym_verbatim_here_string_characters] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [aux_sym_comparison_operator_token1] = ACTIONS(477), + [aux_sym_comparison_operator_token2] = ACTIONS(477), + [aux_sym_comparison_operator_token3] = ACTIONS(477), + [aux_sym_comparison_operator_token4] = ACTIONS(477), + [aux_sym_comparison_operator_token5] = ACTIONS(477), + [aux_sym_comparison_operator_token6] = ACTIONS(477), + [aux_sym_comparison_operator_token7] = ACTIONS(477), + [aux_sym_comparison_operator_token8] = ACTIONS(477), + [aux_sym_comparison_operator_token9] = ACTIONS(477), + [aux_sym_comparison_operator_token10] = ACTIONS(477), + [aux_sym_comparison_operator_token11] = ACTIONS(477), + [aux_sym_comparison_operator_token12] = ACTIONS(477), + [aux_sym_comparison_operator_token13] = ACTIONS(477), + [aux_sym_comparison_operator_token14] = ACTIONS(477), + [aux_sym_comparison_operator_token15] = ACTIONS(477), + [aux_sym_comparison_operator_token16] = ACTIONS(477), + [aux_sym_comparison_operator_token17] = ACTIONS(477), + [aux_sym_comparison_operator_token18] = ACTIONS(477), + [aux_sym_comparison_operator_token19] = ACTIONS(477), + [aux_sym_comparison_operator_token20] = ACTIONS(477), + [aux_sym_comparison_operator_token21] = ACTIONS(477), + [aux_sym_comparison_operator_token22] = ACTIONS(477), + [aux_sym_comparison_operator_token23] = ACTIONS(477), + [aux_sym_comparison_operator_token24] = ACTIONS(477), + [aux_sym_comparison_operator_token25] = ACTIONS(477), + [aux_sym_comparison_operator_token26] = ACTIONS(477), + [aux_sym_comparison_operator_token27] = ACTIONS(477), + [aux_sym_comparison_operator_token28] = ACTIONS(475), + [aux_sym_comparison_operator_token29] = ACTIONS(477), + [aux_sym_comparison_operator_token30] = ACTIONS(477), + [aux_sym_comparison_operator_token31] = ACTIONS(477), + [aux_sym_comparison_operator_token32] = ACTIONS(477), + [aux_sym_comparison_operator_token33] = ACTIONS(477), + [aux_sym_comparison_operator_token34] = ACTIONS(475), + [aux_sym_comparison_operator_token35] = ACTIONS(477), + [aux_sym_comparison_operator_token36] = ACTIONS(477), + [aux_sym_comparison_operator_token37] = ACTIONS(477), + [aux_sym_comparison_operator_token38] = ACTIONS(477), + [aux_sym_comparison_operator_token39] = ACTIONS(477), + [aux_sym_comparison_operator_token40] = ACTIONS(477), + [aux_sym_comparison_operator_token41] = ACTIONS(477), + [aux_sym_comparison_operator_token42] = ACTIONS(477), + [aux_sym_comparison_operator_token43] = ACTIONS(477), + [aux_sym_comparison_operator_token44] = ACTIONS(477), + [aux_sym_comparison_operator_token45] = ACTIONS(477), + [aux_sym_comparison_operator_token46] = ACTIONS(477), + [aux_sym_comparison_operator_token47] = ACTIONS(477), + [aux_sym_comparison_operator_token48] = ACTIONS(477), + [aux_sym_comparison_operator_token49] = ACTIONS(477), + [aux_sym_comparison_operator_token50] = ACTIONS(477), + [aux_sym_format_operator_token1] = ACTIONS(477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(477), + [anon_sym_DOLLAR_CARET] = ACTIONS(477), + [anon_sym_DOLLAR_QMARK] = ACTIONS(477), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(477), + [sym_braced_variable] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [aux_sym_logical_expression_token1] = ACTIONS(477), + [aux_sym_logical_expression_token2] = ACTIONS(477), + [aux_sym_logical_expression_token3] = ACTIONS(477), + [aux_sym_bitwise_expression_token1] = ACTIONS(477), + [aux_sym_bitwise_expression_token2] = ACTIONS(477), + [aux_sym_bitwise_expression_token3] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BSLASH] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(477), + [anon_sym_AT_LPAREN] = ACTIONS(477), + [anon_sym_AT_LBRACE] = ACTIONS(477), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_RBRACK] = ACTIONS(477), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), }, [194] = { - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(253), - [sym_real_literal] = ACTIONS(253), - [aux_sym_expandable_string_literal_token1] = ACTIONS(253), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(253), - [sym_verbatim_string_characters] = ACTIONS(253), - [sym_verbatim_here_string_characters] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(253), - [aux_sym_comparison_operator_token1] = ACTIONS(253), - [aux_sym_comparison_operator_token2] = ACTIONS(253), - [aux_sym_comparison_operator_token3] = ACTIONS(253), - [aux_sym_comparison_operator_token4] = ACTIONS(253), - [aux_sym_comparison_operator_token5] = ACTIONS(253), - [aux_sym_comparison_operator_token6] = ACTIONS(253), - [aux_sym_comparison_operator_token7] = ACTIONS(253), - [aux_sym_comparison_operator_token8] = ACTIONS(253), - [aux_sym_comparison_operator_token9] = ACTIONS(253), - [aux_sym_comparison_operator_token10] = ACTIONS(253), - [aux_sym_comparison_operator_token11] = ACTIONS(253), - [aux_sym_comparison_operator_token12] = ACTIONS(253), - [aux_sym_comparison_operator_token13] = ACTIONS(253), - [aux_sym_comparison_operator_token14] = ACTIONS(253), - [aux_sym_comparison_operator_token15] = ACTIONS(253), - [aux_sym_comparison_operator_token16] = ACTIONS(253), - [aux_sym_comparison_operator_token17] = ACTIONS(253), - [aux_sym_comparison_operator_token18] = ACTIONS(253), - [aux_sym_comparison_operator_token19] = ACTIONS(253), - [aux_sym_comparison_operator_token20] = ACTIONS(253), - [aux_sym_comparison_operator_token21] = ACTIONS(253), - [aux_sym_comparison_operator_token22] = ACTIONS(253), - [aux_sym_comparison_operator_token23] = ACTIONS(253), - [aux_sym_comparison_operator_token24] = ACTIONS(253), - [aux_sym_comparison_operator_token25] = ACTIONS(253), - [aux_sym_comparison_operator_token26] = ACTIONS(253), - [aux_sym_comparison_operator_token27] = ACTIONS(253), - [aux_sym_comparison_operator_token28] = ACTIONS(251), - [aux_sym_comparison_operator_token29] = ACTIONS(253), - [aux_sym_comparison_operator_token30] = ACTIONS(253), - [aux_sym_comparison_operator_token31] = ACTIONS(253), - [aux_sym_comparison_operator_token32] = ACTIONS(253), - [aux_sym_comparison_operator_token33] = ACTIONS(253), - [aux_sym_comparison_operator_token34] = ACTIONS(251), - [aux_sym_comparison_operator_token35] = ACTIONS(253), - [aux_sym_comparison_operator_token36] = ACTIONS(253), - [aux_sym_comparison_operator_token37] = ACTIONS(253), - [aux_sym_comparison_operator_token38] = ACTIONS(253), - [aux_sym_comparison_operator_token39] = ACTIONS(253), - [aux_sym_comparison_operator_token40] = ACTIONS(253), - [aux_sym_comparison_operator_token41] = ACTIONS(253), - [aux_sym_comparison_operator_token42] = ACTIONS(253), - [aux_sym_comparison_operator_token43] = ACTIONS(253), - [aux_sym_comparison_operator_token44] = ACTIONS(253), - [aux_sym_comparison_operator_token45] = ACTIONS(253), - [aux_sym_comparison_operator_token46] = ACTIONS(253), - [aux_sym_comparison_operator_token47] = ACTIONS(253), - [aux_sym_comparison_operator_token48] = ACTIONS(253), - [aux_sym_comparison_operator_token49] = ACTIONS(253), - [aux_sym_comparison_operator_token50] = ACTIONS(253), - [aux_sym_format_operator_token1] = ACTIONS(253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(253), - [anon_sym_DOLLAR_CARET] = ACTIONS(253), - [anon_sym_DOLLAR_QMARK] = ACTIONS(253), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(253), - [sym_braced_variable] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_PERCENT] = ACTIONS(253), - [aux_sym_logical_expression_token1] = ACTIONS(253), - [aux_sym_logical_expression_token2] = ACTIONS(253), - [aux_sym_logical_expression_token3] = ACTIONS(253), - [aux_sym_bitwise_expression_token1] = ACTIONS(253), - [aux_sym_bitwise_expression_token2] = ACTIONS(253), - [aux_sym_bitwise_expression_token3] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_BSLASH] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(253), - [anon_sym_DOT_DOT] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(253), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(253), - [anon_sym_PLUS_PLUS] = ACTIONS(253), - [anon_sym_DASH_DASH] = ACTIONS(253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), - [anon_sym_AT_LPAREN] = ACTIONS(253), - [anon_sym_AT_LBRACE] = ACTIONS(253), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(253), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), - [sym__statement_terminator] = ACTIONS(253), - }, - [195] = { [sym_comment] = ACTIONS(81), [anon_sym_EQ] = ACTIONS(833), [anon_sym_BANG_EQ] = ACTIONS(833), @@ -49508,6 +50432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(833), [anon_sym_SLASH_EQ] = ACTIONS(833), [anon_sym_PERCENT_EQ] = ACTIONS(833), + [anon_sym_DASH_EQ] = ACTIONS(833), [anon_sym_GT] = ACTIONS(835), [anon_sym_GT_GT] = ACTIONS(833), [anon_sym_2_GT] = ACTIONS(835), @@ -49585,7 +50510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(833), [aux_sym_comparison_operator_token49] = ACTIONS(833), [aux_sym_comparison_operator_token50] = ACTIONS(833), - [anon_sym_RPAREN] = ACTIONS(833), [anon_sym_PIPE] = ACTIONS(833), [aux_sym_logical_expression_token1] = ACTIONS(833), [aux_sym_logical_expression_token2] = ACTIONS(833), @@ -49595,6 +50519,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token3] = ACTIONS(833), [anon_sym_PLUS] = ACTIONS(837), [anon_sym_DASH] = ACTIONS(837), + [sym__statement_terminator] = ACTIONS(833), + }, + [195] = { + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(477), + [sym_real_literal] = ACTIONS(477), + [aux_sym_expandable_string_literal_token1] = ACTIONS(477), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(477), + [sym_verbatim_string_characters] = ACTIONS(477), + [sym_verbatim_here_string_characters] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [aux_sym_comparison_operator_token1] = ACTIONS(477), + [aux_sym_comparison_operator_token2] = ACTIONS(477), + [aux_sym_comparison_operator_token3] = ACTIONS(477), + [aux_sym_comparison_operator_token4] = ACTIONS(477), + [aux_sym_comparison_operator_token5] = ACTIONS(477), + [aux_sym_comparison_operator_token6] = ACTIONS(477), + [aux_sym_comparison_operator_token7] = ACTIONS(477), + [aux_sym_comparison_operator_token8] = ACTIONS(477), + [aux_sym_comparison_operator_token9] = ACTIONS(477), + [aux_sym_comparison_operator_token10] = ACTIONS(477), + [aux_sym_comparison_operator_token11] = ACTIONS(477), + [aux_sym_comparison_operator_token12] = ACTIONS(477), + [aux_sym_comparison_operator_token13] = ACTIONS(477), + [aux_sym_comparison_operator_token14] = ACTIONS(477), + [aux_sym_comparison_operator_token15] = ACTIONS(477), + [aux_sym_comparison_operator_token16] = ACTIONS(477), + [aux_sym_comparison_operator_token17] = ACTIONS(477), + [aux_sym_comparison_operator_token18] = ACTIONS(477), + [aux_sym_comparison_operator_token19] = ACTIONS(477), + [aux_sym_comparison_operator_token20] = ACTIONS(477), + [aux_sym_comparison_operator_token21] = ACTIONS(477), + [aux_sym_comparison_operator_token22] = ACTIONS(477), + [aux_sym_comparison_operator_token23] = ACTIONS(477), + [aux_sym_comparison_operator_token24] = ACTIONS(477), + [aux_sym_comparison_operator_token25] = ACTIONS(477), + [aux_sym_comparison_operator_token26] = ACTIONS(477), + [aux_sym_comparison_operator_token27] = ACTIONS(477), + [aux_sym_comparison_operator_token28] = ACTIONS(475), + [aux_sym_comparison_operator_token29] = ACTIONS(477), + [aux_sym_comparison_operator_token30] = ACTIONS(477), + [aux_sym_comparison_operator_token31] = ACTIONS(477), + [aux_sym_comparison_operator_token32] = ACTIONS(477), + [aux_sym_comparison_operator_token33] = ACTIONS(477), + [aux_sym_comparison_operator_token34] = ACTIONS(475), + [aux_sym_comparison_operator_token35] = ACTIONS(477), + [aux_sym_comparison_operator_token36] = ACTIONS(477), + [aux_sym_comparison_operator_token37] = ACTIONS(477), + [aux_sym_comparison_operator_token38] = ACTIONS(477), + [aux_sym_comparison_operator_token39] = ACTIONS(477), + [aux_sym_comparison_operator_token40] = ACTIONS(477), + [aux_sym_comparison_operator_token41] = ACTIONS(477), + [aux_sym_comparison_operator_token42] = ACTIONS(477), + [aux_sym_comparison_operator_token43] = ACTIONS(477), + [aux_sym_comparison_operator_token44] = ACTIONS(477), + [aux_sym_comparison_operator_token45] = ACTIONS(477), + [aux_sym_comparison_operator_token46] = ACTIONS(477), + [aux_sym_comparison_operator_token47] = ACTIONS(477), + [aux_sym_comparison_operator_token48] = ACTIONS(477), + [aux_sym_comparison_operator_token49] = ACTIONS(477), + [aux_sym_comparison_operator_token50] = ACTIONS(477), + [aux_sym_format_operator_token1] = ACTIONS(477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(477), + [anon_sym_DOLLAR_CARET] = ACTIONS(477), + [anon_sym_DOLLAR_QMARK] = ACTIONS(477), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(477), + [sym_braced_variable] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [aux_sym_logical_expression_token1] = ACTIONS(477), + [aux_sym_logical_expression_token2] = ACTIONS(477), + [aux_sym_logical_expression_token3] = ACTIONS(477), + [aux_sym_bitwise_expression_token1] = ACTIONS(477), + [aux_sym_bitwise_expression_token2] = ACTIONS(477), + [aux_sym_bitwise_expression_token3] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BSLASH] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(477), + [anon_sym_AT_LPAREN] = ACTIONS(477), + [anon_sym_AT_LBRACE] = ACTIONS(477), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(477), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + [sym__statement_terminator] = ACTIONS(477), }, [196] = { [sym_comment] = ACTIONS(81), @@ -49604,6 +50626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(839), [anon_sym_SLASH_EQ] = ACTIONS(839), [anon_sym_PERCENT_EQ] = ACTIONS(839), + [anon_sym_DASH_EQ] = ACTIONS(839), [anon_sym_GT] = ACTIONS(841), [anon_sym_GT_GT] = ACTIONS(839), [anon_sym_2_GT] = ACTIONS(841), @@ -49689,8 +50712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(839), [aux_sym_bitwise_expression_token2] = ACTIONS(839), [aux_sym_bitwise_expression_token3] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), }, [197] = { [sym_comment] = ACTIONS(81), @@ -49700,6 +50723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(839), [anon_sym_SLASH_EQ] = ACTIONS(839), [anon_sym_PERCENT_EQ] = ACTIONS(839), + [anon_sym_DASH_EQ] = ACTIONS(839), [anon_sym_GT] = ACTIONS(841), [anon_sym_GT_GT] = ACTIONS(839), [anon_sym_2_GT] = ACTIONS(841), @@ -49784,8 +50808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token1] = ACTIONS(839), [aux_sym_bitwise_expression_token2] = ACTIONS(839), [aux_sym_bitwise_expression_token3] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), [sym__statement_terminator] = ACTIONS(839), }, [198] = { @@ -49796,6 +50820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_EQ] = ACTIONS(833), [anon_sym_SLASH_EQ] = ACTIONS(833), [anon_sym_PERCENT_EQ] = ACTIONS(833), + [anon_sym_DASH_EQ] = ACTIONS(833), [anon_sym_GT] = ACTIONS(835), [anon_sym_GT_GT] = ACTIONS(833), [anon_sym_2_GT] = ACTIONS(835), @@ -49873,6 +50898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_operator_token48] = ACTIONS(833), [aux_sym_comparison_operator_token49] = ACTIONS(833), [aux_sym_comparison_operator_token50] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(833), [anon_sym_PIPE] = ACTIONS(833), [aux_sym_logical_expression_token1] = ACTIONS(833), [aux_sym_logical_expression_token2] = ACTIONS(833), @@ -49882,423 +50908,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_bitwise_expression_token3] = ACTIONS(833), [anon_sym_PLUS] = ACTIONS(843), [anon_sym_DASH] = ACTIONS(843), - [sym__statement_terminator] = ACTIONS(833), }, [199] = { - [sym__literal] = STATE(758), - [sym_integer_literal] = STATE(758), - [sym_string_literal] = STATE(758), - [sym_expandable_string_literal] = STATE(796), - [sym_expandable_here_string_literal] = STATE(796), - [sym_variable] = STATE(758), - [sym_unary_expression] = STATE(1063), - [sym_expression_with_unary_operator] = STATE(1053), - [sym_pre_increment_expression] = STATE(1054), - [sym_pre_decrement_expression] = STATE(1054), - [sym_cast_expression] = STATE(1054), - [sym__primary_expression] = STATE(758), - [sym__value] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_sub_expression] = STATE(758), - [sym_array_expression] = STATE(758), - [sym_script_block_expression] = STATE(758), - [sym_hash_literal_expression] = STATE(758), - [sym_post_increment_expression] = STATE(758), - [sym_post_decrement_expression] = STATE(758), - [sym_member_access] = STATE(758), - [sym_element_access] = STATE(758), - [sym_invokation_expression] = STATE(758), - [sym_invokation_foreach_expression] = STATE(766), - [sym_type_literal] = STATE(199), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hexadecimal_integer_literal] = ACTIONS(845), - [sym_real_literal] = ACTIONS(847), - [aux_sym_expandable_string_literal_token1] = ACTIONS(849), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(851), - [sym_verbatim_string_characters] = ACTIONS(853), - [sym_verbatim_here_string_characters] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(97), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(97), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(97), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(97), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(97), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(97), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(97), - [anon_sym_2_GT_AMP1] = ACTIONS(97), - [anon_sym_3_GT_AMP1] = ACTIONS(97), - [anon_sym_4_GT_AMP1] = ACTIONS(97), - [anon_sym_5_GT_AMP1] = ACTIONS(97), - [anon_sym_6_GT_AMP1] = ACTIONS(97), - [anon_sym_STAR_GT_AMP2] = ACTIONS(97), - [anon_sym_1_GT_AMP2] = ACTIONS(97), - [anon_sym_3_GT_AMP2] = ACTIONS(97), - [anon_sym_4_GT_AMP2] = ACTIONS(97), - [anon_sym_5_GT_AMP2] = ACTIONS(97), - [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(857), - [aux_sym_comparison_operator_token50] = ACTIONS(857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(859), - [anon_sym_DOLLAR_CARET] = ACTIONS(859), - [anon_sym_DOLLAR_QMARK] = ACTIONS(859), - [anon_sym_DOLLAR_] = ACTIONS(859), - [aux_sym_variable_token1] = ACTIONS(859), - [aux_sym_variable_token2] = ACTIONS(859), - [sym_braced_variable] = ACTIONS(859), - [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(97), - [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), - [anon_sym_COLON] = ACTIONS(97), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), - [anon_sym_AT_LPAREN] = ACTIONS(871), - [anon_sym_AT_LBRACE] = ACTIONS(873), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(97), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), + [sym_comparison_operator] = STATE(534), + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_STAR_EQ] = ACTIONS(845), + [anon_sym_SLASH_EQ] = ACTIONS(845), + [anon_sym_PERCENT_EQ] = ACTIONS(845), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_2_GT] = ACTIONS(847), + [anon_sym_2_GT_GT] = ACTIONS(845), + [anon_sym_3_GT] = ACTIONS(847), + [anon_sym_3_GT_GT] = ACTIONS(845), + [anon_sym_4_GT] = ACTIONS(847), + [anon_sym_4_GT_GT] = ACTIONS(845), + [anon_sym_5_GT] = ACTIONS(847), + [anon_sym_5_GT_GT] = ACTIONS(845), + [anon_sym_6_GT] = ACTIONS(847), + [anon_sym_6_GT_GT] = ACTIONS(845), + [anon_sym_STAR_GT] = ACTIONS(847), + [anon_sym_STAR_GT_GT] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_STAR_GT_AMP1] = ACTIONS(845), + [anon_sym_2_GT_AMP1] = ACTIONS(845), + [anon_sym_3_GT_AMP1] = ACTIONS(845), + [anon_sym_4_GT_AMP1] = ACTIONS(845), + [anon_sym_5_GT_AMP1] = ACTIONS(845), + [anon_sym_6_GT_AMP1] = ACTIONS(845), + [anon_sym_STAR_GT_AMP2] = ACTIONS(845), + [anon_sym_1_GT_AMP2] = ACTIONS(845), + [anon_sym_3_GT_AMP2] = ACTIONS(845), + [anon_sym_4_GT_AMP2] = ACTIONS(845), + [anon_sym_5_GT_AMP2] = ACTIONS(845), + [anon_sym_6_GT_AMP2] = ACTIONS(845), + [aux_sym_comparison_operator_token1] = ACTIONS(849), + [aux_sym_comparison_operator_token2] = ACTIONS(849), + [aux_sym_comparison_operator_token3] = ACTIONS(849), + [aux_sym_comparison_operator_token4] = ACTIONS(849), + [aux_sym_comparison_operator_token5] = ACTIONS(849), + [aux_sym_comparison_operator_token6] = ACTIONS(849), + [aux_sym_comparison_operator_token7] = ACTIONS(849), + [aux_sym_comparison_operator_token8] = ACTIONS(849), + [aux_sym_comparison_operator_token9] = ACTIONS(849), + [aux_sym_comparison_operator_token10] = ACTIONS(849), + [aux_sym_comparison_operator_token11] = ACTIONS(849), + [aux_sym_comparison_operator_token12] = ACTIONS(849), + [aux_sym_comparison_operator_token13] = ACTIONS(849), + [aux_sym_comparison_operator_token14] = ACTIONS(849), + [aux_sym_comparison_operator_token15] = ACTIONS(849), + [aux_sym_comparison_operator_token16] = ACTIONS(849), + [aux_sym_comparison_operator_token17] = ACTIONS(849), + [aux_sym_comparison_operator_token18] = ACTIONS(849), + [aux_sym_comparison_operator_token19] = ACTIONS(849), + [aux_sym_comparison_operator_token20] = ACTIONS(849), + [aux_sym_comparison_operator_token21] = ACTIONS(849), + [aux_sym_comparison_operator_token22] = ACTIONS(849), + [aux_sym_comparison_operator_token23] = ACTIONS(849), + [aux_sym_comparison_operator_token24] = ACTIONS(849), + [aux_sym_comparison_operator_token25] = ACTIONS(849), + [aux_sym_comparison_operator_token26] = ACTIONS(849), + [aux_sym_comparison_operator_token27] = ACTIONS(849), + [aux_sym_comparison_operator_token28] = ACTIONS(851), + [aux_sym_comparison_operator_token29] = ACTIONS(849), + [aux_sym_comparison_operator_token30] = ACTIONS(849), + [aux_sym_comparison_operator_token31] = ACTIONS(849), + [aux_sym_comparison_operator_token32] = ACTIONS(849), + [aux_sym_comparison_operator_token33] = ACTIONS(849), + [aux_sym_comparison_operator_token34] = ACTIONS(851), + [aux_sym_comparison_operator_token35] = ACTIONS(849), + [aux_sym_comparison_operator_token36] = ACTIONS(849), + [aux_sym_comparison_operator_token37] = ACTIONS(849), + [aux_sym_comparison_operator_token38] = ACTIONS(849), + [aux_sym_comparison_operator_token39] = ACTIONS(849), + [aux_sym_comparison_operator_token40] = ACTIONS(849), + [aux_sym_comparison_operator_token41] = ACTIONS(849), + [aux_sym_comparison_operator_token42] = ACTIONS(849), + [aux_sym_comparison_operator_token43] = ACTIONS(849), + [aux_sym_comparison_operator_token44] = ACTIONS(849), + [aux_sym_comparison_operator_token45] = ACTIONS(849), + [aux_sym_comparison_operator_token46] = ACTIONS(849), + [aux_sym_comparison_operator_token47] = ACTIONS(849), + [aux_sym_comparison_operator_token48] = ACTIONS(849), + [aux_sym_comparison_operator_token49] = ACTIONS(849), + [aux_sym_comparison_operator_token50] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(845), + [aux_sym_logical_expression_token1] = ACTIONS(845), + [aux_sym_logical_expression_token2] = ACTIONS(845), + [aux_sym_logical_expression_token3] = ACTIONS(845), + [aux_sym_bitwise_expression_token1] = ACTIONS(845), + [aux_sym_bitwise_expression_token2] = ACTIONS(845), + [aux_sym_bitwise_expression_token3] = ACTIONS(845), + [sym__statement_terminator] = ACTIONS(845), }, [200] = { - [sym_comparison_operator] = STATE(522), + [sym_comparison_operator] = STATE(536), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(875), - [anon_sym_STAR_EQ] = ACTIONS(875), - [anon_sym_SLASH_EQ] = ACTIONS(875), - [anon_sym_PERCENT_EQ] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(875), - [anon_sym_2_GT] = ACTIONS(877), - [anon_sym_2_GT_GT] = ACTIONS(875), - [anon_sym_3_GT] = ACTIONS(877), - [anon_sym_3_GT_GT] = ACTIONS(875), - [anon_sym_4_GT] = ACTIONS(877), - [anon_sym_4_GT_GT] = ACTIONS(875), - [anon_sym_5_GT] = ACTIONS(877), - [anon_sym_5_GT_GT] = ACTIONS(875), - [anon_sym_6_GT] = ACTIONS(877), - [anon_sym_6_GT_GT] = ACTIONS(875), - [anon_sym_STAR_GT] = ACTIONS(877), - [anon_sym_STAR_GT_GT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_STAR_GT_AMP1] = ACTIONS(875), - [anon_sym_2_GT_AMP1] = ACTIONS(875), - [anon_sym_3_GT_AMP1] = ACTIONS(875), - [anon_sym_4_GT_AMP1] = ACTIONS(875), - [anon_sym_5_GT_AMP1] = ACTIONS(875), - [anon_sym_6_GT_AMP1] = ACTIONS(875), - [anon_sym_STAR_GT_AMP2] = ACTIONS(875), - [anon_sym_1_GT_AMP2] = ACTIONS(875), - [anon_sym_3_GT_AMP2] = ACTIONS(875), - [anon_sym_4_GT_AMP2] = ACTIONS(875), - [anon_sym_5_GT_AMP2] = ACTIONS(875), - [anon_sym_6_GT_AMP2] = ACTIONS(875), - [aux_sym_comparison_operator_token1] = ACTIONS(879), - [aux_sym_comparison_operator_token2] = ACTIONS(879), - [aux_sym_comparison_operator_token3] = ACTIONS(879), - [aux_sym_comparison_operator_token4] = ACTIONS(879), - [aux_sym_comparison_operator_token5] = ACTIONS(879), - [aux_sym_comparison_operator_token6] = ACTIONS(879), - [aux_sym_comparison_operator_token7] = ACTIONS(879), - [aux_sym_comparison_operator_token8] = ACTIONS(879), - [aux_sym_comparison_operator_token9] = ACTIONS(879), - [aux_sym_comparison_operator_token10] = ACTIONS(879), - [aux_sym_comparison_operator_token11] = ACTIONS(879), - [aux_sym_comparison_operator_token12] = ACTIONS(879), - [aux_sym_comparison_operator_token13] = ACTIONS(879), - [aux_sym_comparison_operator_token14] = ACTIONS(879), - [aux_sym_comparison_operator_token15] = ACTIONS(879), - [aux_sym_comparison_operator_token16] = ACTIONS(879), - [aux_sym_comparison_operator_token17] = ACTIONS(879), - [aux_sym_comparison_operator_token18] = ACTIONS(879), - [aux_sym_comparison_operator_token19] = ACTIONS(879), - [aux_sym_comparison_operator_token20] = ACTIONS(879), - [aux_sym_comparison_operator_token21] = ACTIONS(879), - [aux_sym_comparison_operator_token22] = ACTIONS(879), - [aux_sym_comparison_operator_token23] = ACTIONS(879), - [aux_sym_comparison_operator_token24] = ACTIONS(879), - [aux_sym_comparison_operator_token25] = ACTIONS(879), - [aux_sym_comparison_operator_token26] = ACTIONS(879), - [aux_sym_comparison_operator_token27] = ACTIONS(879), - [aux_sym_comparison_operator_token28] = ACTIONS(881), - [aux_sym_comparison_operator_token29] = ACTIONS(879), - [aux_sym_comparison_operator_token30] = ACTIONS(879), - [aux_sym_comparison_operator_token31] = ACTIONS(879), - [aux_sym_comparison_operator_token32] = ACTIONS(879), - [aux_sym_comparison_operator_token33] = ACTIONS(879), - [aux_sym_comparison_operator_token34] = ACTIONS(881), - [aux_sym_comparison_operator_token35] = ACTIONS(879), - [aux_sym_comparison_operator_token36] = ACTIONS(879), - [aux_sym_comparison_operator_token37] = ACTIONS(879), - [aux_sym_comparison_operator_token38] = ACTIONS(879), - [aux_sym_comparison_operator_token39] = ACTIONS(879), - [aux_sym_comparison_operator_token40] = ACTIONS(879), - [aux_sym_comparison_operator_token41] = ACTIONS(879), - [aux_sym_comparison_operator_token42] = ACTIONS(879), - [aux_sym_comparison_operator_token43] = ACTIONS(879), - [aux_sym_comparison_operator_token44] = ACTIONS(879), - [aux_sym_comparison_operator_token45] = ACTIONS(879), - [aux_sym_comparison_operator_token46] = ACTIONS(879), - [aux_sym_comparison_operator_token47] = ACTIONS(879), - [aux_sym_comparison_operator_token48] = ACTIONS(879), - [aux_sym_comparison_operator_token49] = ACTIONS(879), - [aux_sym_comparison_operator_token50] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(875), - [anon_sym_PIPE] = ACTIONS(875), - [aux_sym_logical_expression_token1] = ACTIONS(875), - [aux_sym_logical_expression_token2] = ACTIONS(875), - [aux_sym_logical_expression_token3] = ACTIONS(875), - [aux_sym_bitwise_expression_token1] = ACTIONS(875), - [aux_sym_bitwise_expression_token2] = ACTIONS(875), - [aux_sym_bitwise_expression_token3] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_PERCENT_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_2_GT] = ACTIONS(855), + [anon_sym_2_GT_GT] = ACTIONS(853), + [anon_sym_3_GT] = ACTIONS(855), + [anon_sym_3_GT_GT] = ACTIONS(853), + [anon_sym_4_GT] = ACTIONS(855), + [anon_sym_4_GT_GT] = ACTIONS(853), + [anon_sym_5_GT] = ACTIONS(855), + [anon_sym_5_GT_GT] = ACTIONS(853), + [anon_sym_6_GT] = ACTIONS(855), + [anon_sym_6_GT_GT] = ACTIONS(853), + [anon_sym_STAR_GT] = ACTIONS(855), + [anon_sym_STAR_GT_GT] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_STAR_GT_AMP1] = ACTIONS(853), + [anon_sym_2_GT_AMP1] = ACTIONS(853), + [anon_sym_3_GT_AMP1] = ACTIONS(853), + [anon_sym_4_GT_AMP1] = ACTIONS(853), + [anon_sym_5_GT_AMP1] = ACTIONS(853), + [anon_sym_6_GT_AMP1] = ACTIONS(853), + [anon_sym_STAR_GT_AMP2] = ACTIONS(853), + [anon_sym_1_GT_AMP2] = ACTIONS(853), + [anon_sym_3_GT_AMP2] = ACTIONS(853), + [anon_sym_4_GT_AMP2] = ACTIONS(853), + [anon_sym_5_GT_AMP2] = ACTIONS(853), + [anon_sym_6_GT_AMP2] = ACTIONS(853), + [aux_sym_comparison_operator_token1] = ACTIONS(849), + [aux_sym_comparison_operator_token2] = ACTIONS(849), + [aux_sym_comparison_operator_token3] = ACTIONS(849), + [aux_sym_comparison_operator_token4] = ACTIONS(849), + [aux_sym_comparison_operator_token5] = ACTIONS(849), + [aux_sym_comparison_operator_token6] = ACTIONS(849), + [aux_sym_comparison_operator_token7] = ACTIONS(849), + [aux_sym_comparison_operator_token8] = ACTIONS(849), + [aux_sym_comparison_operator_token9] = ACTIONS(849), + [aux_sym_comparison_operator_token10] = ACTIONS(849), + [aux_sym_comparison_operator_token11] = ACTIONS(849), + [aux_sym_comparison_operator_token12] = ACTIONS(849), + [aux_sym_comparison_operator_token13] = ACTIONS(849), + [aux_sym_comparison_operator_token14] = ACTIONS(849), + [aux_sym_comparison_operator_token15] = ACTIONS(849), + [aux_sym_comparison_operator_token16] = ACTIONS(849), + [aux_sym_comparison_operator_token17] = ACTIONS(849), + [aux_sym_comparison_operator_token18] = ACTIONS(849), + [aux_sym_comparison_operator_token19] = ACTIONS(849), + [aux_sym_comparison_operator_token20] = ACTIONS(849), + [aux_sym_comparison_operator_token21] = ACTIONS(849), + [aux_sym_comparison_operator_token22] = ACTIONS(849), + [aux_sym_comparison_operator_token23] = ACTIONS(849), + [aux_sym_comparison_operator_token24] = ACTIONS(849), + [aux_sym_comparison_operator_token25] = ACTIONS(849), + [aux_sym_comparison_operator_token26] = ACTIONS(849), + [aux_sym_comparison_operator_token27] = ACTIONS(849), + [aux_sym_comparison_operator_token28] = ACTIONS(851), + [aux_sym_comparison_operator_token29] = ACTIONS(849), + [aux_sym_comparison_operator_token30] = ACTIONS(849), + [aux_sym_comparison_operator_token31] = ACTIONS(849), + [aux_sym_comparison_operator_token32] = ACTIONS(849), + [aux_sym_comparison_operator_token33] = ACTIONS(849), + [aux_sym_comparison_operator_token34] = ACTIONS(851), + [aux_sym_comparison_operator_token35] = ACTIONS(849), + [aux_sym_comparison_operator_token36] = ACTIONS(849), + [aux_sym_comparison_operator_token37] = ACTIONS(849), + [aux_sym_comparison_operator_token38] = ACTIONS(849), + [aux_sym_comparison_operator_token39] = ACTIONS(849), + [aux_sym_comparison_operator_token40] = ACTIONS(849), + [aux_sym_comparison_operator_token41] = ACTIONS(849), + [aux_sym_comparison_operator_token42] = ACTIONS(849), + [aux_sym_comparison_operator_token43] = ACTIONS(849), + [aux_sym_comparison_operator_token44] = ACTIONS(849), + [aux_sym_comparison_operator_token45] = ACTIONS(849), + [aux_sym_comparison_operator_token46] = ACTIONS(849), + [aux_sym_comparison_operator_token47] = ACTIONS(849), + [aux_sym_comparison_operator_token48] = ACTIONS(849), + [aux_sym_comparison_operator_token49] = ACTIONS(849), + [aux_sym_comparison_operator_token50] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(853), + [aux_sym_logical_expression_token1] = ACTIONS(853), + [aux_sym_logical_expression_token2] = ACTIONS(853), + [aux_sym_logical_expression_token3] = ACTIONS(853), + [aux_sym_bitwise_expression_token1] = ACTIONS(853), + [aux_sym_bitwise_expression_token2] = ACTIONS(853), + [aux_sym_bitwise_expression_token3] = ACTIONS(853), }, [201] = { - [sym_comparison_operator] = STATE(522), + [sym_comparison_operator] = STATE(534), [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(883), - [anon_sym_STAR_EQ] = ACTIONS(883), - [anon_sym_SLASH_EQ] = ACTIONS(883), - [anon_sym_PERCENT_EQ] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_2_GT] = ACTIONS(885), - [anon_sym_2_GT_GT] = ACTIONS(883), - [anon_sym_3_GT] = ACTIONS(885), - [anon_sym_3_GT_GT] = ACTIONS(883), - [anon_sym_4_GT] = ACTIONS(885), - [anon_sym_4_GT_GT] = ACTIONS(883), - [anon_sym_5_GT] = ACTIONS(885), - [anon_sym_5_GT_GT] = ACTIONS(883), - [anon_sym_6_GT] = ACTIONS(885), - [anon_sym_6_GT_GT] = ACTIONS(883), - [anon_sym_STAR_GT] = ACTIONS(885), - [anon_sym_STAR_GT_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_STAR_GT_AMP1] = ACTIONS(883), - [anon_sym_2_GT_AMP1] = ACTIONS(883), - [anon_sym_3_GT_AMP1] = ACTIONS(883), - [anon_sym_4_GT_AMP1] = ACTIONS(883), - [anon_sym_5_GT_AMP1] = ACTIONS(883), - [anon_sym_6_GT_AMP1] = ACTIONS(883), - [anon_sym_STAR_GT_AMP2] = ACTIONS(883), - [anon_sym_1_GT_AMP2] = ACTIONS(883), - [anon_sym_3_GT_AMP2] = ACTIONS(883), - [anon_sym_4_GT_AMP2] = ACTIONS(883), - [anon_sym_5_GT_AMP2] = ACTIONS(883), - [anon_sym_6_GT_AMP2] = ACTIONS(883), - [aux_sym_comparison_operator_token1] = ACTIONS(879), - [aux_sym_comparison_operator_token2] = ACTIONS(879), - [aux_sym_comparison_operator_token3] = ACTIONS(879), - [aux_sym_comparison_operator_token4] = ACTIONS(879), - [aux_sym_comparison_operator_token5] = ACTIONS(879), - [aux_sym_comparison_operator_token6] = ACTIONS(879), - [aux_sym_comparison_operator_token7] = ACTIONS(879), - [aux_sym_comparison_operator_token8] = ACTIONS(879), - [aux_sym_comparison_operator_token9] = ACTIONS(879), - [aux_sym_comparison_operator_token10] = ACTIONS(879), - [aux_sym_comparison_operator_token11] = ACTIONS(879), - [aux_sym_comparison_operator_token12] = ACTIONS(879), - [aux_sym_comparison_operator_token13] = ACTIONS(879), - [aux_sym_comparison_operator_token14] = ACTIONS(879), - [aux_sym_comparison_operator_token15] = ACTIONS(879), - [aux_sym_comparison_operator_token16] = ACTIONS(879), - [aux_sym_comparison_operator_token17] = ACTIONS(879), - [aux_sym_comparison_operator_token18] = ACTIONS(879), - [aux_sym_comparison_operator_token19] = ACTIONS(879), - [aux_sym_comparison_operator_token20] = ACTIONS(879), - [aux_sym_comparison_operator_token21] = ACTIONS(879), - [aux_sym_comparison_operator_token22] = ACTIONS(879), - [aux_sym_comparison_operator_token23] = ACTIONS(879), - [aux_sym_comparison_operator_token24] = ACTIONS(879), - [aux_sym_comparison_operator_token25] = ACTIONS(879), - [aux_sym_comparison_operator_token26] = ACTIONS(879), - [aux_sym_comparison_operator_token27] = ACTIONS(879), - [aux_sym_comparison_operator_token28] = ACTIONS(881), - [aux_sym_comparison_operator_token29] = ACTIONS(879), - [aux_sym_comparison_operator_token30] = ACTIONS(879), - [aux_sym_comparison_operator_token31] = ACTIONS(879), - [aux_sym_comparison_operator_token32] = ACTIONS(879), - [aux_sym_comparison_operator_token33] = ACTIONS(879), - [aux_sym_comparison_operator_token34] = ACTIONS(881), - [aux_sym_comparison_operator_token35] = ACTIONS(879), - [aux_sym_comparison_operator_token36] = ACTIONS(879), - [aux_sym_comparison_operator_token37] = ACTIONS(879), - [aux_sym_comparison_operator_token38] = ACTIONS(879), - [aux_sym_comparison_operator_token39] = ACTIONS(879), - [aux_sym_comparison_operator_token40] = ACTIONS(879), - [aux_sym_comparison_operator_token41] = ACTIONS(879), - [aux_sym_comparison_operator_token42] = ACTIONS(879), - [aux_sym_comparison_operator_token43] = ACTIONS(879), - [aux_sym_comparison_operator_token44] = ACTIONS(879), - [aux_sym_comparison_operator_token45] = ACTIONS(879), - [aux_sym_comparison_operator_token46] = ACTIONS(879), - [aux_sym_comparison_operator_token47] = ACTIONS(879), - [aux_sym_comparison_operator_token48] = ACTIONS(879), - [aux_sym_comparison_operator_token49] = ACTIONS(879), - [aux_sym_comparison_operator_token50] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [aux_sym_logical_expression_token1] = ACTIONS(883), - [aux_sym_logical_expression_token2] = ACTIONS(883), - [aux_sym_logical_expression_token3] = ACTIONS(883), - [aux_sym_bitwise_expression_token1] = ACTIONS(883), - [aux_sym_bitwise_expression_token2] = ACTIONS(883), - [aux_sym_bitwise_expression_token3] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_PERCENT_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_2_GT] = ACTIONS(855), + [anon_sym_2_GT_GT] = ACTIONS(853), + [anon_sym_3_GT] = ACTIONS(855), + [anon_sym_3_GT_GT] = ACTIONS(853), + [anon_sym_4_GT] = ACTIONS(855), + [anon_sym_4_GT_GT] = ACTIONS(853), + [anon_sym_5_GT] = ACTIONS(855), + [anon_sym_5_GT_GT] = ACTIONS(853), + [anon_sym_6_GT] = ACTIONS(855), + [anon_sym_6_GT_GT] = ACTIONS(853), + [anon_sym_STAR_GT] = ACTIONS(855), + [anon_sym_STAR_GT_GT] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_STAR_GT_AMP1] = ACTIONS(853), + [anon_sym_2_GT_AMP1] = ACTIONS(853), + [anon_sym_3_GT_AMP1] = ACTIONS(853), + [anon_sym_4_GT_AMP1] = ACTIONS(853), + [anon_sym_5_GT_AMP1] = ACTIONS(853), + [anon_sym_6_GT_AMP1] = ACTIONS(853), + [anon_sym_STAR_GT_AMP2] = ACTIONS(853), + [anon_sym_1_GT_AMP2] = ACTIONS(853), + [anon_sym_3_GT_AMP2] = ACTIONS(853), + [anon_sym_4_GT_AMP2] = ACTIONS(853), + [anon_sym_5_GT_AMP2] = ACTIONS(853), + [anon_sym_6_GT_AMP2] = ACTIONS(853), + [aux_sym_comparison_operator_token1] = ACTIONS(849), + [aux_sym_comparison_operator_token2] = ACTIONS(849), + [aux_sym_comparison_operator_token3] = ACTIONS(849), + [aux_sym_comparison_operator_token4] = ACTIONS(849), + [aux_sym_comparison_operator_token5] = ACTIONS(849), + [aux_sym_comparison_operator_token6] = ACTIONS(849), + [aux_sym_comparison_operator_token7] = ACTIONS(849), + [aux_sym_comparison_operator_token8] = ACTIONS(849), + [aux_sym_comparison_operator_token9] = ACTIONS(849), + [aux_sym_comparison_operator_token10] = ACTIONS(849), + [aux_sym_comparison_operator_token11] = ACTIONS(849), + [aux_sym_comparison_operator_token12] = ACTIONS(849), + [aux_sym_comparison_operator_token13] = ACTIONS(849), + [aux_sym_comparison_operator_token14] = ACTIONS(849), + [aux_sym_comparison_operator_token15] = ACTIONS(849), + [aux_sym_comparison_operator_token16] = ACTIONS(849), + [aux_sym_comparison_operator_token17] = ACTIONS(849), + [aux_sym_comparison_operator_token18] = ACTIONS(849), + [aux_sym_comparison_operator_token19] = ACTIONS(849), + [aux_sym_comparison_operator_token20] = ACTIONS(849), + [aux_sym_comparison_operator_token21] = ACTIONS(849), + [aux_sym_comparison_operator_token22] = ACTIONS(849), + [aux_sym_comparison_operator_token23] = ACTIONS(849), + [aux_sym_comparison_operator_token24] = ACTIONS(849), + [aux_sym_comparison_operator_token25] = ACTIONS(849), + [aux_sym_comparison_operator_token26] = ACTIONS(849), + [aux_sym_comparison_operator_token27] = ACTIONS(849), + [aux_sym_comparison_operator_token28] = ACTIONS(851), + [aux_sym_comparison_operator_token29] = ACTIONS(849), + [aux_sym_comparison_operator_token30] = ACTIONS(849), + [aux_sym_comparison_operator_token31] = ACTIONS(849), + [aux_sym_comparison_operator_token32] = ACTIONS(849), + [aux_sym_comparison_operator_token33] = ACTIONS(849), + [aux_sym_comparison_operator_token34] = ACTIONS(851), + [aux_sym_comparison_operator_token35] = ACTIONS(849), + [aux_sym_comparison_operator_token36] = ACTIONS(849), + [aux_sym_comparison_operator_token37] = ACTIONS(849), + [aux_sym_comparison_operator_token38] = ACTIONS(849), + [aux_sym_comparison_operator_token39] = ACTIONS(849), + [aux_sym_comparison_operator_token40] = ACTIONS(849), + [aux_sym_comparison_operator_token41] = ACTIONS(849), + [aux_sym_comparison_operator_token42] = ACTIONS(849), + [aux_sym_comparison_operator_token43] = ACTIONS(849), + [aux_sym_comparison_operator_token44] = ACTIONS(849), + [aux_sym_comparison_operator_token45] = ACTIONS(849), + [aux_sym_comparison_operator_token46] = ACTIONS(849), + [aux_sym_comparison_operator_token47] = ACTIONS(849), + [aux_sym_comparison_operator_token48] = ACTIONS(849), + [aux_sym_comparison_operator_token49] = ACTIONS(849), + [aux_sym_comparison_operator_token50] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(853), + [aux_sym_logical_expression_token1] = ACTIONS(853), + [aux_sym_logical_expression_token2] = ACTIONS(853), + [aux_sym_logical_expression_token3] = ACTIONS(853), + [aux_sym_bitwise_expression_token1] = ACTIONS(853), + [aux_sym_bitwise_expression_token2] = ACTIONS(853), + [aux_sym_bitwise_expression_token3] = ACTIONS(853), + [sym__statement_terminator] = ACTIONS(853), }, [202] = { - [sym__literal] = STATE(918), - [sym_integer_literal] = STATE(918), - [sym_string_literal] = STATE(918), - [sym_expandable_string_literal] = STATE(796), - [sym_expandable_here_string_literal] = STATE(796), - [sym_variable] = STATE(918), - [sym_unary_expression] = STATE(1063), - [sym_expression_with_unary_operator] = STATE(1053), - [sym_pre_increment_expression] = STATE(1054), - [sym_pre_decrement_expression] = STATE(1054), - [sym_cast_expression] = STATE(1054), - [sym__primary_expression] = STATE(918), - [sym__value] = STATE(918), - [sym_parenthesized_expression] = STATE(918), - [sym_sub_expression] = STATE(918), - [sym_array_expression] = STATE(918), - [sym_script_block_expression] = STATE(918), - [sym_hash_literal_expression] = STATE(918), - [sym_post_increment_expression] = STATE(918), - [sym_post_decrement_expression] = STATE(918), - [sym_member_access] = STATE(918), - [sym_element_access] = STATE(918), - [sym_invokation_expression] = STATE(918), - [sym_invokation_foreach_expression] = STATE(766), - [sym_type_literal] = STATE(202), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hexadecimal_integer_literal] = ACTIONS(845), - [sym_real_literal] = ACTIONS(887), - [aux_sym_expandable_string_literal_token1] = ACTIONS(849), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(851), - [sym_verbatim_string_characters] = ACTIONS(853), - [sym_verbatim_here_string_characters] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(97), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(97), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(97), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(97), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(97), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(97), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(97), - [anon_sym_2_GT_AMP1] = ACTIONS(97), - [anon_sym_3_GT_AMP1] = ACTIONS(97), - [anon_sym_4_GT_AMP1] = ACTIONS(97), - [anon_sym_5_GT_AMP1] = ACTIONS(97), - [anon_sym_6_GT_AMP1] = ACTIONS(97), - [anon_sym_STAR_GT_AMP2] = ACTIONS(97), - [anon_sym_1_GT_AMP2] = ACTIONS(97), - [anon_sym_3_GT_AMP2] = ACTIONS(97), - [anon_sym_4_GT_AMP2] = ACTIONS(97), - [anon_sym_5_GT_AMP2] = ACTIONS(97), - [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(889), - [aux_sym_comparison_operator_token50] = ACTIONS(889), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(859), - [anon_sym_DOLLAR_CARET] = ACTIONS(859), - [anon_sym_DOLLAR_QMARK] = ACTIONS(859), - [anon_sym_DOLLAR_] = ACTIONS(859), - [aux_sym_variable_token1] = ACTIONS(859), - [aux_sym_variable_token2] = ACTIONS(859), - [sym_braced_variable] = ACTIONS(859), - [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(97), - [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), - [anon_sym_COLON] = ACTIONS(97), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(889), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), - [anon_sym_AT_LPAREN] = ACTIONS(871), - [anon_sym_AT_LBRACE] = ACTIONS(873), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(97), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), + [sym_comparison_operator] = STATE(536), + [sym_comment] = ACTIONS(81), + [anon_sym_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_STAR_EQ] = ACTIONS(845), + [anon_sym_SLASH_EQ] = ACTIONS(845), + [anon_sym_PERCENT_EQ] = ACTIONS(845), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_2_GT] = ACTIONS(847), + [anon_sym_2_GT_GT] = ACTIONS(845), + [anon_sym_3_GT] = ACTIONS(847), + [anon_sym_3_GT_GT] = ACTIONS(845), + [anon_sym_4_GT] = ACTIONS(847), + [anon_sym_4_GT_GT] = ACTIONS(845), + [anon_sym_5_GT] = ACTIONS(847), + [anon_sym_5_GT_GT] = ACTIONS(845), + [anon_sym_6_GT] = ACTIONS(847), + [anon_sym_6_GT_GT] = ACTIONS(845), + [anon_sym_STAR_GT] = ACTIONS(847), + [anon_sym_STAR_GT_GT] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_STAR_GT_AMP1] = ACTIONS(845), + [anon_sym_2_GT_AMP1] = ACTIONS(845), + [anon_sym_3_GT_AMP1] = ACTIONS(845), + [anon_sym_4_GT_AMP1] = ACTIONS(845), + [anon_sym_5_GT_AMP1] = ACTIONS(845), + [anon_sym_6_GT_AMP1] = ACTIONS(845), + [anon_sym_STAR_GT_AMP2] = ACTIONS(845), + [anon_sym_1_GT_AMP2] = ACTIONS(845), + [anon_sym_3_GT_AMP2] = ACTIONS(845), + [anon_sym_4_GT_AMP2] = ACTIONS(845), + [anon_sym_5_GT_AMP2] = ACTIONS(845), + [anon_sym_6_GT_AMP2] = ACTIONS(845), + [aux_sym_comparison_operator_token1] = ACTIONS(849), + [aux_sym_comparison_operator_token2] = ACTIONS(849), + [aux_sym_comparison_operator_token3] = ACTIONS(849), + [aux_sym_comparison_operator_token4] = ACTIONS(849), + [aux_sym_comparison_operator_token5] = ACTIONS(849), + [aux_sym_comparison_operator_token6] = ACTIONS(849), + [aux_sym_comparison_operator_token7] = ACTIONS(849), + [aux_sym_comparison_operator_token8] = ACTIONS(849), + [aux_sym_comparison_operator_token9] = ACTIONS(849), + [aux_sym_comparison_operator_token10] = ACTIONS(849), + [aux_sym_comparison_operator_token11] = ACTIONS(849), + [aux_sym_comparison_operator_token12] = ACTIONS(849), + [aux_sym_comparison_operator_token13] = ACTIONS(849), + [aux_sym_comparison_operator_token14] = ACTIONS(849), + [aux_sym_comparison_operator_token15] = ACTIONS(849), + [aux_sym_comparison_operator_token16] = ACTIONS(849), + [aux_sym_comparison_operator_token17] = ACTIONS(849), + [aux_sym_comparison_operator_token18] = ACTIONS(849), + [aux_sym_comparison_operator_token19] = ACTIONS(849), + [aux_sym_comparison_operator_token20] = ACTIONS(849), + [aux_sym_comparison_operator_token21] = ACTIONS(849), + [aux_sym_comparison_operator_token22] = ACTIONS(849), + [aux_sym_comparison_operator_token23] = ACTIONS(849), + [aux_sym_comparison_operator_token24] = ACTIONS(849), + [aux_sym_comparison_operator_token25] = ACTIONS(849), + [aux_sym_comparison_operator_token26] = ACTIONS(849), + [aux_sym_comparison_operator_token27] = ACTIONS(849), + [aux_sym_comparison_operator_token28] = ACTIONS(851), + [aux_sym_comparison_operator_token29] = ACTIONS(849), + [aux_sym_comparison_operator_token30] = ACTIONS(849), + [aux_sym_comparison_operator_token31] = ACTIONS(849), + [aux_sym_comparison_operator_token32] = ACTIONS(849), + [aux_sym_comparison_operator_token33] = ACTIONS(849), + [aux_sym_comparison_operator_token34] = ACTIONS(851), + [aux_sym_comparison_operator_token35] = ACTIONS(849), + [aux_sym_comparison_operator_token36] = ACTIONS(849), + [aux_sym_comparison_operator_token37] = ACTIONS(849), + [aux_sym_comparison_operator_token38] = ACTIONS(849), + [aux_sym_comparison_operator_token39] = ACTIONS(849), + [aux_sym_comparison_operator_token40] = ACTIONS(849), + [aux_sym_comparison_operator_token41] = ACTIONS(849), + [aux_sym_comparison_operator_token42] = ACTIONS(849), + [aux_sym_comparison_operator_token43] = ACTIONS(849), + [aux_sym_comparison_operator_token44] = ACTIONS(849), + [aux_sym_comparison_operator_token45] = ACTIONS(849), + [aux_sym_comparison_operator_token46] = ACTIONS(849), + [aux_sym_comparison_operator_token47] = ACTIONS(849), + [aux_sym_comparison_operator_token48] = ACTIONS(849), + [aux_sym_comparison_operator_token49] = ACTIONS(849), + [aux_sym_comparison_operator_token50] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [aux_sym_logical_expression_token1] = ACTIONS(845), + [aux_sym_logical_expression_token2] = ACTIONS(845), + [aux_sym_logical_expression_token3] = ACTIONS(845), + [aux_sym_bitwise_expression_token1] = ACTIONS(845), + [aux_sym_bitwise_expression_token2] = ACTIONS(845), + [aux_sym_bitwise_expression_token3] = ACTIONS(845), }, [203] = { - [sym__literal] = STATE(919), - [sym_integer_literal] = STATE(919), - [sym_string_literal] = STATE(919), - [sym_expandable_string_literal] = STATE(832), - [sym_expandable_here_string_literal] = STATE(832), - [sym_variable] = STATE(919), - [sym_unary_expression] = STATE(1070), - [sym_expression_with_unary_operator] = STATE(1050), - [sym_pre_increment_expression] = STATE(1055), - [sym_pre_decrement_expression] = STATE(1055), - [sym_cast_expression] = STATE(1055), - [sym__primary_expression] = STATE(919), - [sym__value] = STATE(919), - [sym_parenthesized_expression] = STATE(919), - [sym_sub_expression] = STATE(919), - [sym_array_expression] = STATE(919), - [sym_script_block_expression] = STATE(919), - [sym_hash_literal_expression] = STATE(919), - [sym_post_increment_expression] = STATE(919), - [sym_post_decrement_expression] = STATE(919), - [sym_member_access] = STATE(919), - [sym_element_access] = STATE(919), - [sym_invokation_expression] = STATE(919), - [sym_invokation_foreach_expression] = STATE(759), + [sym__literal] = STATE(754), + [sym_integer_literal] = STATE(754), + [sym_string_literal] = STATE(754), + [sym_expandable_string_literal] = STATE(751), + [sym_expandable_here_string_literal] = STATE(751), + [sym_variable] = STATE(754), + [sym_unary_expression] = STATE(815), + [sym_expression_with_unary_operator] = STATE(779), + [sym_pre_increment_expression] = STATE(810), + [sym_pre_decrement_expression] = STATE(810), + [sym_cast_expression] = STATE(810), + [sym__primary_expression] = STATE(754), + [sym__value] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_sub_expression] = STATE(754), + [sym_array_expression] = STATE(754), + [sym_script_block_expression] = STATE(754), + [sym_hash_literal_expression] = STATE(754), + [sym_post_increment_expression] = STATE(754), + [sym_post_decrement_expression] = STATE(754), + [sym_member_access] = STATE(754), + [sym_element_access] = STATE(754), + [sym_invokation_expression] = STATE(754), + [sym_invokation_foreach_expression] = STATE(755), [sym_type_literal] = STATE(203), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hexadecimal_integer_literal] = ACTIONS(895), - [sym_real_literal] = ACTIONS(897), - [aux_sym_expandable_string_literal_token1] = ACTIONS(899), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(901), - [sym_verbatim_string_characters] = ACTIONS(903), - [sym_verbatim_here_string_characters] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(905), + [sym_decimal_integer_literal] = ACTIONS(857), + [sym_hexadecimal_integer_literal] = ACTIONS(857), + [sym_real_literal] = ACTIONS(859), + [aux_sym_expandable_string_literal_token1] = ACTIONS(861), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(863), + [sym_verbatim_string_characters] = ACTIONS(865), + [sym_verbatim_here_string_characters] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(867), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50326,74 +51355,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(907), - [aux_sym_comparison_operator_token50] = ACTIONS(907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_CARET] = ACTIONS(909), - [anon_sym_DOLLAR_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_] = ACTIONS(909), - [aux_sym_variable_token1] = ACTIONS(909), - [aux_sym_variable_token2] = ACTIONS(909), - [sym_braced_variable] = ACTIONS(909), + [aux_sym_comparison_operator_token37] = ACTIONS(869), + [aux_sym_comparison_operator_token50] = ACTIONS(869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(871), + [anon_sym_DOLLAR_CARET] = ACTIONS(871), + [anon_sym_DOLLAR_QMARK] = ACTIONS(871), + [anon_sym_DOLLAR_] = ACTIONS(871), + [aux_sym_variable_token1] = ACTIONS(871), + [aux_sym_variable_token2] = ACTIONS(871), + [sym_braced_variable] = ACTIONS(871), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(873), [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(875), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(919), - [anon_sym_AT_LPAREN] = ACTIONS(921), - [anon_sym_AT_LBRACE] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(869), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(881), + [anon_sym_AT_LPAREN] = ACTIONS(883), + [anon_sym_AT_LBRACE] = ACTIONS(885), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), }, [204] = { - [sym__literal] = STATE(775), - [sym_integer_literal] = STATE(775), - [sym_string_literal] = STATE(775), - [sym_expandable_string_literal] = STATE(832), - [sym_expandable_here_string_literal] = STATE(832), - [sym_variable] = STATE(775), - [sym_unary_expression] = STATE(1070), - [sym_expression_with_unary_operator] = STATE(1050), - [sym_pre_increment_expression] = STATE(1055), - [sym_pre_decrement_expression] = STATE(1055), - [sym_cast_expression] = STATE(1055), - [sym__primary_expression] = STATE(775), - [sym__value] = STATE(775), - [sym_parenthesized_expression] = STATE(775), - [sym_sub_expression] = STATE(775), - [sym_array_expression] = STATE(775), - [sym_script_block_expression] = STATE(775), - [sym_hash_literal_expression] = STATE(775), - [sym_post_increment_expression] = STATE(775), - [sym_post_decrement_expression] = STATE(775), - [sym_member_access] = STATE(775), - [sym_element_access] = STATE(775), - [sym_invokation_expression] = STATE(775), - [sym_invokation_foreach_expression] = STATE(759), + [sym__literal] = STATE(759), + [sym_integer_literal] = STATE(759), + [sym_string_literal] = STATE(759), + [sym_expandable_string_literal] = STATE(774), + [sym_expandable_here_string_literal] = STATE(774), + [sym_variable] = STATE(759), + [sym_unary_expression] = STATE(806), + [sym_expression_with_unary_operator] = STATE(809), + [sym_pre_increment_expression] = STATE(801), + [sym_pre_decrement_expression] = STATE(801), + [sym_cast_expression] = STATE(801), + [sym__primary_expression] = STATE(759), + [sym__value] = STATE(759), + [sym_parenthesized_expression] = STATE(759), + [sym_sub_expression] = STATE(759), + [sym_array_expression] = STATE(759), + [sym_script_block_expression] = STATE(759), + [sym_hash_literal_expression] = STATE(759), + [sym_post_increment_expression] = STATE(759), + [sym_post_decrement_expression] = STATE(759), + [sym_member_access] = STATE(759), + [sym_element_access] = STATE(759), + [sym_invokation_expression] = STATE(759), + [sym_invokation_foreach_expression] = STATE(762), [sym_type_literal] = STATE(204), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hexadecimal_integer_literal] = ACTIONS(895), - [sym_real_literal] = ACTIONS(925), - [aux_sym_expandable_string_literal_token1] = ACTIONS(899), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(901), - [sym_verbatim_string_characters] = ACTIONS(903), - [sym_verbatim_here_string_characters] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(905), + [sym_decimal_integer_literal] = ACTIONS(887), + [sym_hexadecimal_integer_literal] = ACTIONS(887), + [sym_real_literal] = ACTIONS(889), + [aux_sym_expandable_string_literal_token1] = ACTIONS(891), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(893), + [sym_verbatim_string_characters] = ACTIONS(895), + [sym_verbatim_here_string_characters] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(897), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50421,74 +51450,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(927), - [aux_sym_comparison_operator_token50] = ACTIONS(927), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_CARET] = ACTIONS(909), - [anon_sym_DOLLAR_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_] = ACTIONS(909), - [aux_sym_variable_token1] = ACTIONS(909), - [aux_sym_variable_token2] = ACTIONS(909), - [sym_braced_variable] = ACTIONS(909), + [aux_sym_comparison_operator_token37] = ACTIONS(899), + [aux_sym_comparison_operator_token50] = ACTIONS(899), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), + [anon_sym_DOLLAR_CARET] = ACTIONS(901), + [anon_sym_DOLLAR_QMARK] = ACTIONS(901), + [anon_sym_DOLLAR_] = ACTIONS(901), + [aux_sym_variable_token1] = ACTIONS(901), + [aux_sym_variable_token2] = ACTIONS(901), + [sym_braced_variable] = ACTIONS(901), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(919), - [anon_sym_AT_LPAREN] = ACTIONS(921), - [anon_sym_AT_LBRACE] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(907), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(911), + [anon_sym_AT_LPAREN] = ACTIONS(913), + [anon_sym_AT_LBRACE] = ACTIONS(915), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + [sym__statement_terminator] = ACTIONS(95), }, [205] = { - [sym__literal] = STATE(775), - [sym_integer_literal] = STATE(775), - [sym_string_literal] = STATE(775), - [sym_expandable_string_literal] = STATE(832), - [sym_expandable_here_string_literal] = STATE(832), - [sym_variable] = STATE(775), - [sym_unary_expression] = STATE(826), - [sym_expression_with_unary_operator] = STATE(774), - [sym_pre_increment_expression] = STATE(838), - [sym_pre_decrement_expression] = STATE(838), - [sym_cast_expression] = STATE(838), - [sym__primary_expression] = STATE(775), - [sym__value] = STATE(775), - [sym_parenthesized_expression] = STATE(775), - [sym_sub_expression] = STATE(775), - [sym_array_expression] = STATE(775), - [sym_script_block_expression] = STATE(775), - [sym_hash_literal_expression] = STATE(775), - [sym_post_increment_expression] = STATE(775), - [sym_post_decrement_expression] = STATE(775), - [sym_member_access] = STATE(775), - [sym_element_access] = STATE(775), - [sym_invokation_expression] = STATE(775), - [sym_invokation_foreach_expression] = STATE(759), + [sym__literal] = STATE(759), + [sym_integer_literal] = STATE(759), + [sym_string_literal] = STATE(759), + [sym_expandable_string_literal] = STATE(774), + [sym_expandable_here_string_literal] = STATE(774), + [sym_variable] = STATE(759), + [sym_unary_expression] = STATE(1011), + [sym_expression_with_unary_operator] = STATE(1022), + [sym_pre_increment_expression] = STATE(1023), + [sym_pre_decrement_expression] = STATE(1023), + [sym_cast_expression] = STATE(1023), + [sym__primary_expression] = STATE(759), + [sym__value] = STATE(759), + [sym_parenthesized_expression] = STATE(759), + [sym_sub_expression] = STATE(759), + [sym_array_expression] = STATE(759), + [sym_script_block_expression] = STATE(759), + [sym_hash_literal_expression] = STATE(759), + [sym_post_increment_expression] = STATE(759), + [sym_post_decrement_expression] = STATE(759), + [sym_member_access] = STATE(759), + [sym_element_access] = STATE(759), + [sym_invokation_expression] = STATE(759), + [sym_invokation_foreach_expression] = STATE(762), [sym_type_literal] = STATE(205), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hexadecimal_integer_literal] = ACTIONS(895), - [sym_real_literal] = ACTIONS(925), - [aux_sym_expandable_string_literal_token1] = ACTIONS(899), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(901), - [sym_verbatim_string_characters] = ACTIONS(903), - [sym_verbatim_here_string_characters] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(905), + [sym_decimal_integer_literal] = ACTIONS(887), + [sym_hexadecimal_integer_literal] = ACTIONS(887), + [sym_real_literal] = ACTIONS(889), + [aux_sym_expandable_string_literal_token1] = ACTIONS(891), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(893), + [sym_verbatim_string_characters] = ACTIONS(895), + [sym_verbatim_here_string_characters] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(897), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50516,74 +51545,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(933), - [aux_sym_comparison_operator_token50] = ACTIONS(933), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_CARET] = ACTIONS(909), - [anon_sym_DOLLAR_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_] = ACTIONS(909), - [aux_sym_variable_token1] = ACTIONS(909), - [aux_sym_variable_token2] = ACTIONS(909), - [sym_braced_variable] = ACTIONS(909), + [aux_sym_comparison_operator_token37] = ACTIONS(917), + [aux_sym_comparison_operator_token50] = ACTIONS(917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), + [anon_sym_DOLLAR_CARET] = ACTIONS(901), + [anon_sym_DOLLAR_QMARK] = ACTIONS(901), + [anon_sym_DOLLAR_] = ACTIONS(901), + [aux_sym_variable_token1] = ACTIONS(901), + [aux_sym_variable_token2] = ACTIONS(901), + [sym_braced_variable] = ACTIONS(901), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(933), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(919), - [anon_sym_AT_LPAREN] = ACTIONS(921), - [anon_sym_AT_LBRACE] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(911), + [anon_sym_AT_LPAREN] = ACTIONS(913), + [anon_sym_AT_LBRACE] = ACTIONS(915), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + [sym__statement_terminator] = ACTIONS(95), }, [206] = { - [sym__literal] = STATE(758), - [sym_integer_literal] = STATE(758), - [sym_string_literal] = STATE(758), - [sym_expandable_string_literal] = STATE(796), - [sym_expandable_here_string_literal] = STATE(796), - [sym_variable] = STATE(758), - [sym_unary_expression] = STATE(831), - [sym_expression_with_unary_operator] = STATE(836), - [sym_pre_increment_expression] = STATE(816), - [sym_pre_decrement_expression] = STATE(816), - [sym_cast_expression] = STATE(816), - [sym__primary_expression] = STATE(758), - [sym__value] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_sub_expression] = STATE(758), - [sym_array_expression] = STATE(758), - [sym_script_block_expression] = STATE(758), - [sym_hash_literal_expression] = STATE(758), - [sym_post_increment_expression] = STATE(758), - [sym_post_decrement_expression] = STATE(758), - [sym_member_access] = STATE(758), - [sym_element_access] = STATE(758), - [sym_invokation_expression] = STATE(758), - [sym_invokation_foreach_expression] = STATE(766), + [sym__literal] = STATE(754), + [sym_integer_literal] = STATE(754), + [sym_string_literal] = STATE(754), + [sym_expandable_string_literal] = STATE(751), + [sym_expandable_here_string_literal] = STATE(751), + [sym_variable] = STATE(754), + [sym_unary_expression] = STATE(1017), + [sym_expression_with_unary_operator] = STATE(1021), + [sym_pre_increment_expression] = STATE(1024), + [sym_pre_decrement_expression] = STATE(1024), + [sym_cast_expression] = STATE(1024), + [sym__primary_expression] = STATE(754), + [sym__value] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_sub_expression] = STATE(754), + [sym_array_expression] = STATE(754), + [sym_script_block_expression] = STATE(754), + [sym_hash_literal_expression] = STATE(754), + [sym_post_increment_expression] = STATE(754), + [sym_post_decrement_expression] = STATE(754), + [sym_member_access] = STATE(754), + [sym_element_access] = STATE(754), + [sym_invokation_expression] = STATE(754), + [sym_invokation_foreach_expression] = STATE(755), [sym_type_literal] = STATE(206), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hexadecimal_integer_literal] = ACTIONS(845), - [sym_real_literal] = ACTIONS(847), - [aux_sym_expandable_string_literal_token1] = ACTIONS(849), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(851), - [sym_verbatim_string_characters] = ACTIONS(853), - [sym_verbatim_here_string_characters] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), + [sym_decimal_integer_literal] = ACTIONS(857), + [sym_hexadecimal_integer_literal] = ACTIONS(857), + [sym_real_literal] = ACTIONS(859), + [aux_sym_expandable_string_literal_token1] = ACTIONS(861), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(863), + [sym_verbatim_string_characters] = ACTIONS(865), + [sym_verbatim_here_string_characters] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(867), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50611,264 +51640,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(939), - [aux_sym_comparison_operator_token50] = ACTIONS(939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(859), - [anon_sym_DOLLAR_CARET] = ACTIONS(859), - [anon_sym_DOLLAR_QMARK] = ACTIONS(859), - [anon_sym_DOLLAR_] = ACTIONS(859), - [aux_sym_variable_token1] = ACTIONS(859), - [aux_sym_variable_token2] = ACTIONS(859), - [sym_braced_variable] = ACTIONS(859), + [aux_sym_comparison_operator_token37] = ACTIONS(923), + [aux_sym_comparison_operator_token50] = ACTIONS(923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(871), + [anon_sym_DOLLAR_CARET] = ACTIONS(871), + [anon_sym_DOLLAR_QMARK] = ACTIONS(871), + [anon_sym_DOLLAR_] = ACTIONS(871), + [aux_sym_variable_token1] = ACTIONS(871), + [aux_sym_variable_token2] = ACTIONS(871), + [sym_braced_variable] = ACTIONS(871), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(875), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), [anon_sym_DASH_DASH_PERCENT] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), - [anon_sym_AT_LPAREN] = ACTIONS(871), - [anon_sym_AT_LBRACE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(881), + [anon_sym_AT_LPAREN] = ACTIONS(883), + [anon_sym_AT_LBRACE] = ACTIONS(885), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), }, [207] = { - [sym_comparison_operator] = STATE(519), - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_PLUS_EQ] = ACTIONS(883), - [anon_sym_STAR_EQ] = ACTIONS(883), - [anon_sym_SLASH_EQ] = ACTIONS(883), - [anon_sym_PERCENT_EQ] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(883), - [anon_sym_2_GT] = ACTIONS(885), - [anon_sym_2_GT_GT] = ACTIONS(883), - [anon_sym_3_GT] = ACTIONS(885), - [anon_sym_3_GT_GT] = ACTIONS(883), - [anon_sym_4_GT] = ACTIONS(885), - [anon_sym_4_GT_GT] = ACTIONS(883), - [anon_sym_5_GT] = ACTIONS(885), - [anon_sym_5_GT_GT] = ACTIONS(883), - [anon_sym_6_GT] = ACTIONS(885), - [anon_sym_6_GT_GT] = ACTIONS(883), - [anon_sym_STAR_GT] = ACTIONS(885), - [anon_sym_STAR_GT_GT] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_STAR_GT_AMP1] = ACTIONS(883), - [anon_sym_2_GT_AMP1] = ACTIONS(883), - [anon_sym_3_GT_AMP1] = ACTIONS(883), - [anon_sym_4_GT_AMP1] = ACTIONS(883), - [anon_sym_5_GT_AMP1] = ACTIONS(883), - [anon_sym_6_GT_AMP1] = ACTIONS(883), - [anon_sym_STAR_GT_AMP2] = ACTIONS(883), - [anon_sym_1_GT_AMP2] = ACTIONS(883), - [anon_sym_3_GT_AMP2] = ACTIONS(883), - [anon_sym_4_GT_AMP2] = ACTIONS(883), - [anon_sym_5_GT_AMP2] = ACTIONS(883), - [anon_sym_6_GT_AMP2] = ACTIONS(883), - [aux_sym_comparison_operator_token1] = ACTIONS(879), - [aux_sym_comparison_operator_token2] = ACTIONS(879), - [aux_sym_comparison_operator_token3] = ACTIONS(879), - [aux_sym_comparison_operator_token4] = ACTIONS(879), - [aux_sym_comparison_operator_token5] = ACTIONS(879), - [aux_sym_comparison_operator_token6] = ACTIONS(879), - [aux_sym_comparison_operator_token7] = ACTIONS(879), - [aux_sym_comparison_operator_token8] = ACTIONS(879), - [aux_sym_comparison_operator_token9] = ACTIONS(879), - [aux_sym_comparison_operator_token10] = ACTIONS(879), - [aux_sym_comparison_operator_token11] = ACTIONS(879), - [aux_sym_comparison_operator_token12] = ACTIONS(879), - [aux_sym_comparison_operator_token13] = ACTIONS(879), - [aux_sym_comparison_operator_token14] = ACTIONS(879), - [aux_sym_comparison_operator_token15] = ACTIONS(879), - [aux_sym_comparison_operator_token16] = ACTIONS(879), - [aux_sym_comparison_operator_token17] = ACTIONS(879), - [aux_sym_comparison_operator_token18] = ACTIONS(879), - [aux_sym_comparison_operator_token19] = ACTIONS(879), - [aux_sym_comparison_operator_token20] = ACTIONS(879), - [aux_sym_comparison_operator_token21] = ACTIONS(879), - [aux_sym_comparison_operator_token22] = ACTIONS(879), - [aux_sym_comparison_operator_token23] = ACTIONS(879), - [aux_sym_comparison_operator_token24] = ACTIONS(879), - [aux_sym_comparison_operator_token25] = ACTIONS(879), - [aux_sym_comparison_operator_token26] = ACTIONS(879), - [aux_sym_comparison_operator_token27] = ACTIONS(879), - [aux_sym_comparison_operator_token28] = ACTIONS(881), - [aux_sym_comparison_operator_token29] = ACTIONS(879), - [aux_sym_comparison_operator_token30] = ACTIONS(879), - [aux_sym_comparison_operator_token31] = ACTIONS(879), - [aux_sym_comparison_operator_token32] = ACTIONS(879), - [aux_sym_comparison_operator_token33] = ACTIONS(879), - [aux_sym_comparison_operator_token34] = ACTIONS(881), - [aux_sym_comparison_operator_token35] = ACTIONS(879), - [aux_sym_comparison_operator_token36] = ACTIONS(879), - [aux_sym_comparison_operator_token37] = ACTIONS(879), - [aux_sym_comparison_operator_token38] = ACTIONS(879), - [aux_sym_comparison_operator_token39] = ACTIONS(879), - [aux_sym_comparison_operator_token40] = ACTIONS(879), - [aux_sym_comparison_operator_token41] = ACTIONS(879), - [aux_sym_comparison_operator_token42] = ACTIONS(879), - [aux_sym_comparison_operator_token43] = ACTIONS(879), - [aux_sym_comparison_operator_token44] = ACTIONS(879), - [aux_sym_comparison_operator_token45] = ACTIONS(879), - [aux_sym_comparison_operator_token46] = ACTIONS(879), - [aux_sym_comparison_operator_token47] = ACTIONS(879), - [aux_sym_comparison_operator_token48] = ACTIONS(879), - [aux_sym_comparison_operator_token49] = ACTIONS(879), - [aux_sym_comparison_operator_token50] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(883), - [aux_sym_logical_expression_token1] = ACTIONS(883), - [aux_sym_logical_expression_token2] = ACTIONS(883), - [aux_sym_logical_expression_token3] = ACTIONS(883), - [aux_sym_bitwise_expression_token1] = ACTIONS(883), - [aux_sym_bitwise_expression_token2] = ACTIONS(883), - [aux_sym_bitwise_expression_token3] = ACTIONS(883), - [sym__statement_terminator] = ACTIONS(883), - }, - [208] = { - [sym_comparison_operator] = STATE(519), - [sym_comment] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_PLUS_EQ] = ACTIONS(875), - [anon_sym_STAR_EQ] = ACTIONS(875), - [anon_sym_SLASH_EQ] = ACTIONS(875), - [anon_sym_PERCENT_EQ] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(875), - [anon_sym_2_GT] = ACTIONS(877), - [anon_sym_2_GT_GT] = ACTIONS(875), - [anon_sym_3_GT] = ACTIONS(877), - [anon_sym_3_GT_GT] = ACTIONS(875), - [anon_sym_4_GT] = ACTIONS(877), - [anon_sym_4_GT_GT] = ACTIONS(875), - [anon_sym_5_GT] = ACTIONS(877), - [anon_sym_5_GT_GT] = ACTIONS(875), - [anon_sym_6_GT] = ACTIONS(877), - [anon_sym_6_GT_GT] = ACTIONS(875), - [anon_sym_STAR_GT] = ACTIONS(877), - [anon_sym_STAR_GT_GT] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_STAR_GT_AMP1] = ACTIONS(875), - [anon_sym_2_GT_AMP1] = ACTIONS(875), - [anon_sym_3_GT_AMP1] = ACTIONS(875), - [anon_sym_4_GT_AMP1] = ACTIONS(875), - [anon_sym_5_GT_AMP1] = ACTIONS(875), - [anon_sym_6_GT_AMP1] = ACTIONS(875), - [anon_sym_STAR_GT_AMP2] = ACTIONS(875), - [anon_sym_1_GT_AMP2] = ACTIONS(875), - [anon_sym_3_GT_AMP2] = ACTIONS(875), - [anon_sym_4_GT_AMP2] = ACTIONS(875), - [anon_sym_5_GT_AMP2] = ACTIONS(875), - [anon_sym_6_GT_AMP2] = ACTIONS(875), - [aux_sym_comparison_operator_token1] = ACTIONS(879), - [aux_sym_comparison_operator_token2] = ACTIONS(879), - [aux_sym_comparison_operator_token3] = ACTIONS(879), - [aux_sym_comparison_operator_token4] = ACTIONS(879), - [aux_sym_comparison_operator_token5] = ACTIONS(879), - [aux_sym_comparison_operator_token6] = ACTIONS(879), - [aux_sym_comparison_operator_token7] = ACTIONS(879), - [aux_sym_comparison_operator_token8] = ACTIONS(879), - [aux_sym_comparison_operator_token9] = ACTIONS(879), - [aux_sym_comparison_operator_token10] = ACTIONS(879), - [aux_sym_comparison_operator_token11] = ACTIONS(879), - [aux_sym_comparison_operator_token12] = ACTIONS(879), - [aux_sym_comparison_operator_token13] = ACTIONS(879), - [aux_sym_comparison_operator_token14] = ACTIONS(879), - [aux_sym_comparison_operator_token15] = ACTIONS(879), - [aux_sym_comparison_operator_token16] = ACTIONS(879), - [aux_sym_comparison_operator_token17] = ACTIONS(879), - [aux_sym_comparison_operator_token18] = ACTIONS(879), - [aux_sym_comparison_operator_token19] = ACTIONS(879), - [aux_sym_comparison_operator_token20] = ACTIONS(879), - [aux_sym_comparison_operator_token21] = ACTIONS(879), - [aux_sym_comparison_operator_token22] = ACTIONS(879), - [aux_sym_comparison_operator_token23] = ACTIONS(879), - [aux_sym_comparison_operator_token24] = ACTIONS(879), - [aux_sym_comparison_operator_token25] = ACTIONS(879), - [aux_sym_comparison_operator_token26] = ACTIONS(879), - [aux_sym_comparison_operator_token27] = ACTIONS(879), - [aux_sym_comparison_operator_token28] = ACTIONS(881), - [aux_sym_comparison_operator_token29] = ACTIONS(879), - [aux_sym_comparison_operator_token30] = ACTIONS(879), - [aux_sym_comparison_operator_token31] = ACTIONS(879), - [aux_sym_comparison_operator_token32] = ACTIONS(879), - [aux_sym_comparison_operator_token33] = ACTIONS(879), - [aux_sym_comparison_operator_token34] = ACTIONS(881), - [aux_sym_comparison_operator_token35] = ACTIONS(879), - [aux_sym_comparison_operator_token36] = ACTIONS(879), - [aux_sym_comparison_operator_token37] = ACTIONS(879), - [aux_sym_comparison_operator_token38] = ACTIONS(879), - [aux_sym_comparison_operator_token39] = ACTIONS(879), - [aux_sym_comparison_operator_token40] = ACTIONS(879), - [aux_sym_comparison_operator_token41] = ACTIONS(879), - [aux_sym_comparison_operator_token42] = ACTIONS(879), - [aux_sym_comparison_operator_token43] = ACTIONS(879), - [aux_sym_comparison_operator_token44] = ACTIONS(879), - [aux_sym_comparison_operator_token45] = ACTIONS(879), - [aux_sym_comparison_operator_token46] = ACTIONS(879), - [aux_sym_comparison_operator_token47] = ACTIONS(879), - [aux_sym_comparison_operator_token48] = ACTIONS(879), - [aux_sym_comparison_operator_token49] = ACTIONS(879), - [aux_sym_comparison_operator_token50] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(875), - [aux_sym_logical_expression_token1] = ACTIONS(875), - [aux_sym_logical_expression_token2] = ACTIONS(875), - [aux_sym_logical_expression_token3] = ACTIONS(875), - [aux_sym_bitwise_expression_token1] = ACTIONS(875), - [aux_sym_bitwise_expression_token2] = ACTIONS(875), - [aux_sym_bitwise_expression_token3] = ACTIONS(875), - [sym__statement_terminator] = ACTIONS(875), - }, - [209] = { - [sym__literal] = STATE(867), - [sym_integer_literal] = STATE(867), - [sym_string_literal] = STATE(867), - [sym_expandable_string_literal] = STATE(866), - [sym_expandable_here_string_literal] = STATE(866), - [sym_variable] = STATE(867), - [sym_unary_expression] = STATE(907), - [sym_expression_with_unary_operator] = STATE(902), - [sym_pre_increment_expression] = STATE(903), - [sym_pre_decrement_expression] = STATE(903), - [sym_cast_expression] = STATE(903), - [sym__primary_expression] = STATE(867), - [sym__value] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_sub_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_script_block_expression] = STATE(867), - [sym_hash_literal_expression] = STATE(867), - [sym_post_increment_expression] = STATE(867), - [sym_post_decrement_expression] = STATE(867), - [sym_member_access] = STATE(867), - [sym_element_access] = STATE(867), - [sym_invokation_expression] = STATE(867), - [sym_invokation_foreach_expression] = STATE(868), - [sym_type_literal] = STATE(209), + [sym__literal] = STATE(875), + [sym_integer_literal] = STATE(875), + [sym_string_literal] = STATE(875), + [sym_expandable_string_literal] = STATE(868), + [sym_expandable_here_string_literal] = STATE(868), + [sym_variable] = STATE(875), + [sym_unary_expression] = STATE(1071), + [sym_expression_with_unary_operator] = STATE(1044), + [sym_pre_increment_expression] = STATE(1067), + [sym_pre_decrement_expression] = STATE(1067), + [sym_cast_expression] = STATE(1067), + [sym__primary_expression] = STATE(875), + [sym__value] = STATE(875), + [sym_parenthesized_expression] = STATE(875), + [sym_sub_expression] = STATE(875), + [sym_array_expression] = STATE(875), + [sym_script_block_expression] = STATE(875), + [sym_hash_literal_expression] = STATE(875), + [sym_post_increment_expression] = STATE(875), + [sym_post_decrement_expression] = STATE(875), + [sym_member_access] = STATE(875), + [sym_element_access] = STATE(875), + [sym_invokation_expression] = STATE(875), + [sym_invokation_foreach_expression] = STATE(876), + [sym_type_literal] = STATE(207), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hexadecimal_integer_literal] = ACTIONS(945), - [sym_real_literal] = ACTIONS(947), - [aux_sym_expandable_string_literal_token1] = ACTIONS(949), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(951), - [sym_verbatim_string_characters] = ACTIONS(953), - [sym_verbatim_here_string_characters] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), + [sym_decimal_integer_literal] = ACTIONS(929), + [sym_hexadecimal_integer_literal] = ACTIONS(929), + [sym_real_literal] = ACTIONS(931), + [aux_sym_expandable_string_literal_token1] = ACTIONS(933), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(935), + [sym_verbatim_string_characters] = ACTIONS(937), + [sym_verbatim_here_string_characters] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(939), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50896,73 +51735,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(957), - [aux_sym_comparison_operator_token50] = ACTIONS(957), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_CARET] = ACTIONS(959), - [anon_sym_DOLLAR_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_] = ACTIONS(959), - [aux_sym_variable_token1] = ACTIONS(959), - [aux_sym_variable_token2] = ACTIONS(959), - [sym_braced_variable] = ACTIONS(959), + [aux_sym_comparison_operator_token37] = ACTIONS(941), + [aux_sym_comparison_operator_token50] = ACTIONS(941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(943), + [anon_sym_DOLLAR_CARET] = ACTIONS(943), + [anon_sym_DOLLAR_QMARK] = ACTIONS(943), + [anon_sym_DOLLAR_] = ACTIONS(943), + [aux_sym_variable_token1] = ACTIONS(943), + [aux_sym_variable_token2] = ACTIONS(943), + [sym_braced_variable] = ACTIONS(943), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(957), - [anon_sym_PLUS_PLUS] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(969), - [anon_sym_AT_LPAREN] = ACTIONS(971), - [anon_sym_AT_LBRACE] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_AT_LPAREN] = ACTIONS(955), + [anon_sym_AT_LBRACE] = ACTIONS(957), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + [sym__statement_terminator] = ACTIONS(95), }, - [210] = { - [sym__literal] = STATE(929), - [sym_integer_literal] = STATE(929), - [sym_string_literal] = STATE(929), - [sym_expandable_string_literal] = STATE(866), - [sym_expandable_here_string_literal] = STATE(866), - [sym_variable] = STATE(929), - [sym_unary_expression] = STATE(1095), - [sym_expression_with_unary_operator] = STATE(1081), - [sym_pre_increment_expression] = STATE(1088), - [sym_pre_decrement_expression] = STATE(1088), - [sym_cast_expression] = STATE(1088), - [sym__primary_expression] = STATE(929), - [sym__value] = STATE(929), - [sym_parenthesized_expression] = STATE(929), - [sym_sub_expression] = STATE(929), - [sym_array_expression] = STATE(929), - [sym_script_block_expression] = STATE(929), - [sym_hash_literal_expression] = STATE(929), - [sym_post_increment_expression] = STATE(929), - [sym_post_decrement_expression] = STATE(929), - [sym_member_access] = STATE(929), - [sym_element_access] = STATE(929), - [sym_invokation_expression] = STATE(929), - [sym_invokation_foreach_expression] = STATE(868), - [sym_type_literal] = STATE(210), + [208] = { + [sym__literal] = STATE(840), + [sym_integer_literal] = STATE(840), + [sym_string_literal] = STATE(840), + [sym_expandable_string_literal] = STATE(836), + [sym_expandable_here_string_literal] = STATE(836), + [sym_variable] = STATE(840), + [sym_unary_expression] = STATE(1056), + [sym_expression_with_unary_operator] = STATE(1064), + [sym_pre_increment_expression] = STATE(1072), + [sym_pre_decrement_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym__primary_expression] = STATE(840), + [sym__value] = STATE(840), + [sym_parenthesized_expression] = STATE(840), + [sym_sub_expression] = STATE(840), + [sym_array_expression] = STATE(840), + [sym_script_block_expression] = STATE(840), + [sym_hash_literal_expression] = STATE(840), + [sym_post_increment_expression] = STATE(840), + [sym_post_decrement_expression] = STATE(840), + [sym_member_access] = STATE(840), + [sym_element_access] = STATE(840), + [sym_invokation_expression] = STATE(840), + [sym_invokation_foreach_expression] = STATE(841), + [sym_type_literal] = STATE(208), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hexadecimal_integer_literal] = ACTIONS(945), - [sym_real_literal] = ACTIONS(975), - [aux_sym_expandable_string_literal_token1] = ACTIONS(949), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(951), - [sym_verbatim_string_characters] = ACTIONS(953), - [sym_verbatim_here_string_characters] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), + [sym_decimal_integer_literal] = ACTIONS(959), + [sym_hexadecimal_integer_literal] = ACTIONS(959), + [sym_real_literal] = ACTIONS(961), + [aux_sym_expandable_string_literal_token1] = ACTIONS(963), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(965), + [sym_verbatim_string_characters] = ACTIONS(967), + [sym_verbatim_here_string_characters] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(969), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -50990,637 +51829,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(977), - [aux_sym_comparison_operator_token50] = ACTIONS(977), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_CARET] = ACTIONS(959), - [anon_sym_DOLLAR_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_] = ACTIONS(959), - [aux_sym_variable_token1] = ACTIONS(959), - [aux_sym_variable_token2] = ACTIONS(959), - [sym_braced_variable] = ACTIONS(959), + [aux_sym_comparison_operator_token37] = ACTIONS(971), + [aux_sym_comparison_operator_token50] = ACTIONS(971), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(973), + [anon_sym_DOLLAR_CARET] = ACTIONS(973), + [anon_sym_DOLLAR_QMARK] = ACTIONS(973), + [anon_sym_DOLLAR_] = ACTIONS(973), + [aux_sym_variable_token1] = ACTIONS(973), + [aux_sym_variable_token2] = ACTIONS(973), + [sym_braced_variable] = ACTIONS(973), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(975), [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(977), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(971), [anon_sym_PLUS_PLUS] = ACTIONS(979), [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(969), - [anon_sym_AT_LPAREN] = ACTIONS(971), - [anon_sym_AT_LBRACE] = ACTIONS(973), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(97), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - }, - [211] = { - [sym__literal] = STATE(928), - [sym_integer_literal] = STATE(928), - [sym_string_literal] = STATE(928), - [sym_expandable_string_literal] = STATE(845), - [sym_expandable_here_string_literal] = STATE(845), - [sym_variable] = STATE(928), - [sym_unary_expression] = STATE(1087), - [sym_expression_with_unary_operator] = STATE(1078), - [sym_pre_increment_expression] = STATE(1082), - [sym_pre_decrement_expression] = STATE(1082), - [sym_cast_expression] = STATE(1082), - [sym__primary_expression] = STATE(928), - [sym__value] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_sub_expression] = STATE(928), - [sym_array_expression] = STATE(928), - [sym_script_block_expression] = STATE(928), - [sym_hash_literal_expression] = STATE(928), - [sym_post_increment_expression] = STATE(928), - [sym_post_decrement_expression] = STATE(928), - [sym_member_access] = STATE(928), - [sym_element_access] = STATE(928), - [sym_invokation_expression] = STATE(928), - [sym_invokation_foreach_expression] = STATE(847), - [sym_type_literal] = STATE(211), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(983), - [sym_hexadecimal_integer_literal] = ACTIONS(983), - [sym_real_literal] = ACTIONS(985), - [aux_sym_expandable_string_literal_token1] = ACTIONS(987), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(989), - [sym_verbatim_string_characters] = ACTIONS(991), - [sym_verbatim_here_string_characters] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(97), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(97), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(97), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(97), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(97), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(97), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(97), - [anon_sym_2_GT_AMP1] = ACTIONS(97), - [anon_sym_3_GT_AMP1] = ACTIONS(97), - [anon_sym_4_GT_AMP1] = ACTIONS(97), - [anon_sym_5_GT_AMP1] = ACTIONS(97), - [anon_sym_6_GT_AMP1] = ACTIONS(97), - [anon_sym_STAR_GT_AMP2] = ACTIONS(97), - [anon_sym_1_GT_AMP2] = ACTIONS(97), - [anon_sym_3_GT_AMP2] = ACTIONS(97), - [anon_sym_4_GT_AMP2] = ACTIONS(97), - [anon_sym_5_GT_AMP2] = ACTIONS(97), - [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(995), - [aux_sym_comparison_operator_token50] = ACTIONS(995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(997), - [anon_sym_DOLLAR_CARET] = ACTIONS(997), - [anon_sym_DOLLAR_QMARK] = ACTIONS(997), - [anon_sym_DOLLAR_] = ACTIONS(997), - [aux_sym_variable_token1] = ACTIONS(997), - [aux_sym_variable_token2] = ACTIONS(997), - [sym_braced_variable] = ACTIONS(997), - [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(97), - [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), - [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_AT_LBRACE] = ACTIONS(1011), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(97), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), - }, - [212] = { - [sym__literal] = STATE(867), - [sym_integer_literal] = STATE(867), - [sym_string_literal] = STATE(867), - [sym_expandable_string_literal] = STATE(866), - [sym_expandable_here_string_literal] = STATE(866), - [sym_variable] = STATE(867), - [sym_unary_expression] = STATE(1095), - [sym_expression_with_unary_operator] = STATE(1081), - [sym_pre_increment_expression] = STATE(1088), - [sym_pre_decrement_expression] = STATE(1088), - [sym_cast_expression] = STATE(1088), - [sym__primary_expression] = STATE(867), - [sym__value] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_sub_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_script_block_expression] = STATE(867), - [sym_hash_literal_expression] = STATE(867), - [sym_post_increment_expression] = STATE(867), - [sym_post_decrement_expression] = STATE(867), - [sym_member_access] = STATE(867), - [sym_element_access] = STATE(867), - [sym_invokation_expression] = STATE(867), - [sym_invokation_foreach_expression] = STATE(868), - [sym_type_literal] = STATE(212), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hexadecimal_integer_literal] = ACTIONS(945), - [sym_real_literal] = ACTIONS(947), - [aux_sym_expandable_string_literal_token1] = ACTIONS(949), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(951), - [sym_verbatim_string_characters] = ACTIONS(953), - [sym_verbatim_here_string_characters] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(97), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(97), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(97), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(97), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(97), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(97), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(97), - [anon_sym_2_GT_AMP1] = ACTIONS(97), - [anon_sym_3_GT_AMP1] = ACTIONS(97), - [anon_sym_4_GT_AMP1] = ACTIONS(97), - [anon_sym_5_GT_AMP1] = ACTIONS(97), - [anon_sym_6_GT_AMP1] = ACTIONS(97), - [anon_sym_STAR_GT_AMP2] = ACTIONS(97), - [anon_sym_1_GT_AMP2] = ACTIONS(97), - [anon_sym_3_GT_AMP2] = ACTIONS(97), - [anon_sym_4_GT_AMP2] = ACTIONS(97), - [anon_sym_5_GT_AMP2] = ACTIONS(97), - [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(1013), - [aux_sym_comparison_operator_token50] = ACTIONS(1013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_CARET] = ACTIONS(959), - [anon_sym_DOLLAR_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_] = ACTIONS(959), - [aux_sym_variable_token1] = ACTIONS(959), - [aux_sym_variable_token2] = ACTIONS(959), - [sym_braced_variable] = ACTIONS(959), - [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(97), - [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), - [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(969), - [anon_sym_AT_LPAREN] = ACTIONS(971), - [anon_sym_AT_LBRACE] = ACTIONS(973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(983), + [anon_sym_AT_LPAREN] = ACTIONS(985), + [anon_sym_AT_LBRACE] = ACTIONS(987), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), }, - [213] = { - [sym__literal] = STATE(758), - [sym_integer_literal] = STATE(758), - [sym_string_literal] = STATE(758), - [sym_expandable_string_literal] = STATE(796), - [sym_expandable_here_string_literal] = STATE(796), - [sym_variable] = STATE(758), - [sym_array_literal_expression] = STATE(1074), + [209] = { + [sym__literal] = STATE(754), + [sym_integer_literal] = STATE(754), + [sym_string_literal] = STATE(754), + [sym_expandable_string_literal] = STATE(751), + [sym_expandable_here_string_literal] = STATE(751), + [sym_variable] = STATE(754), + [sym_array_literal_expression] = STATE(1051), [sym_unary_expression] = STATE(1010), - [sym_expression_with_unary_operator] = STATE(1053), - [sym_pre_increment_expression] = STATE(1054), - [sym_pre_decrement_expression] = STATE(1054), - [sym_cast_expression] = STATE(1054), - [sym__primary_expression] = STATE(758), - [sym__value] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_sub_expression] = STATE(758), - [sym_array_expression] = STATE(758), - [sym_script_block_expression] = STATE(758), - [sym_hash_literal_expression] = STATE(758), - [sym_post_increment_expression] = STATE(758), - [sym_post_decrement_expression] = STATE(758), - [sym_member_access] = STATE(758), - [sym_element_access] = STATE(758), - [sym_invokation_expression] = STATE(758), - [sym_invokation_foreach_expression] = STATE(766), - [sym_type_literal] = STATE(199), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hexadecimal_integer_literal] = ACTIONS(845), - [sym_real_literal] = ACTIONS(847), - [aux_sym_expandable_string_literal_token1] = ACTIONS(849), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(851), - [sym_verbatim_string_characters] = ACTIONS(853), - [sym_verbatim_here_string_characters] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(857), - [aux_sym_comparison_operator_token50] = ACTIONS(857), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(859), - [anon_sym_DOLLAR_CARET] = ACTIONS(859), - [anon_sym_DOLLAR_QMARK] = ACTIONS(859), - [anon_sym_DOLLAR_] = ACTIONS(859), - [aux_sym_variable_token1] = ACTIONS(859), - [aux_sym_variable_token2] = ACTIONS(859), - [sym_braced_variable] = ACTIONS(859), - [sym_generic_token] = ACTIONS(1021), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), - [anon_sym_AT_LPAREN] = ACTIONS(871), - [anon_sym_AT_LBRACE] = ACTIONS(873), - [sym__statement_terminator] = ACTIONS(1023), - }, - [214] = { - [sym__literal] = STATE(775), - [sym_integer_literal] = STATE(775), - [sym_string_literal] = STATE(775), - [sym_expandable_string_literal] = STATE(832), - [sym_expandable_here_string_literal] = STATE(832), - [sym_variable] = STATE(775), - [sym_array_literal_expression] = STATE(1076), - [sym_unary_expression] = STATE(999), - [sym_expression_with_unary_operator] = STATE(1050), - [sym_pre_increment_expression] = STATE(1055), - [sym_pre_decrement_expression] = STATE(1055), - [sym_cast_expression] = STATE(1055), - [sym__primary_expression] = STATE(775), - [sym__value] = STATE(775), - [sym_parenthesized_expression] = STATE(775), - [sym_sub_expression] = STATE(775), - [sym_array_expression] = STATE(775), - [sym_script_block_expression] = STATE(775), - [sym_hash_literal_expression] = STATE(775), - [sym_post_increment_expression] = STATE(775), - [sym_post_decrement_expression] = STATE(775), - [sym_member_access] = STATE(775), - [sym_element_access] = STATE(775), - [sym_invokation_expression] = STATE(775), - [sym_invokation_foreach_expression] = STATE(759), - [sym_type_literal] = STATE(204), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hexadecimal_integer_literal] = ACTIONS(895), - [sym_real_literal] = ACTIONS(925), - [aux_sym_expandable_string_literal_token1] = ACTIONS(899), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(901), - [sym_verbatim_string_characters] = ACTIONS(903), - [sym_verbatim_here_string_characters] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(927), - [aux_sym_comparison_operator_token50] = ACTIONS(927), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_CARET] = ACTIONS(909), - [anon_sym_DOLLAR_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_] = ACTIONS(909), - [aux_sym_variable_token1] = ACTIONS(909), - [aux_sym_variable_token2] = ACTIONS(909), - [sym_braced_variable] = ACTIONS(909), - [sym_generic_token] = ACTIONS(1025), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(929), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(919), - [anon_sym_AT_LPAREN] = ACTIONS(921), - [anon_sym_AT_LBRACE] = ACTIONS(923), - }, - [215] = { - [sym__literal] = STATE(919), - [sym_integer_literal] = STATE(919), - [sym_string_literal] = STATE(919), - [sym_expandable_string_literal] = STATE(832), - [sym_expandable_here_string_literal] = STATE(832), - [sym_variable] = STATE(919), - [sym_array_literal_expression] = STATE(1076), - [sym_unary_expression] = STATE(1066), - [sym_expression_with_unary_operator] = STATE(1050), - [sym_pre_increment_expression] = STATE(1055), - [sym_pre_decrement_expression] = STATE(1055), - [sym_cast_expression] = STATE(1055), - [sym__primary_expression] = STATE(919), - [sym__value] = STATE(919), - [sym_parenthesized_expression] = STATE(919), - [sym_sub_expression] = STATE(919), - [sym_array_expression] = STATE(919), - [sym_script_block_expression] = STATE(919), - [sym_hash_literal_expression] = STATE(919), - [sym_post_increment_expression] = STATE(919), - [sym_post_decrement_expression] = STATE(919), - [sym_member_access] = STATE(919), - [sym_element_access] = STATE(919), - [sym_invokation_expression] = STATE(919), - [sym_invokation_foreach_expression] = STATE(759), - [sym_type_literal] = STATE(203), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hexadecimal_integer_literal] = ACTIONS(895), - [sym_real_literal] = ACTIONS(897), - [aux_sym_expandable_string_literal_token1] = ACTIONS(899), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(901), - [sym_verbatim_string_characters] = ACTIONS(903), - [sym_verbatim_here_string_characters] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(907), - [aux_sym_comparison_operator_token50] = ACTIONS(907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_CARET] = ACTIONS(909), - [anon_sym_DOLLAR_QMARK] = ACTIONS(909), - [anon_sym_DOLLAR_] = ACTIONS(909), - [aux_sym_variable_token1] = ACTIONS(909), - [aux_sym_variable_token2] = ACTIONS(909), - [sym_braced_variable] = ACTIONS(909), - [sym_generic_token] = ACTIONS(1025), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DASH_DASH] = ACTIONS(917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(919), - [anon_sym_AT_LPAREN] = ACTIONS(921), - [anon_sym_AT_LBRACE] = ACTIONS(923), - }, - [216] = { - [sym__literal] = STATE(918), - [sym_integer_literal] = STATE(918), - [sym_string_literal] = STATE(918), - [sym_expandable_string_literal] = STATE(796), - [sym_expandable_here_string_literal] = STATE(796), - [sym_variable] = STATE(918), - [sym_array_literal_expression] = STATE(1074), - [sym_unary_expression] = STATE(1043), - [sym_expression_with_unary_operator] = STATE(1053), - [sym_pre_increment_expression] = STATE(1054), - [sym_pre_decrement_expression] = STATE(1054), - [sym_cast_expression] = STATE(1054), - [sym__primary_expression] = STATE(918), - [sym__value] = STATE(918), - [sym_parenthesized_expression] = STATE(918), - [sym_sub_expression] = STATE(918), - [sym_array_expression] = STATE(918), - [sym_script_block_expression] = STATE(918), - [sym_hash_literal_expression] = STATE(918), - [sym_post_increment_expression] = STATE(918), - [sym_post_decrement_expression] = STATE(918), - [sym_member_access] = STATE(918), - [sym_element_access] = STATE(918), - [sym_invokation_expression] = STATE(918), - [sym_invokation_foreach_expression] = STATE(766), - [sym_type_literal] = STATE(202), + [sym_expression_with_unary_operator] = STATE(1021), + [sym_pre_increment_expression] = STATE(1024), + [sym_pre_decrement_expression] = STATE(1024), + [sym_cast_expression] = STATE(1024), + [sym__primary_expression] = STATE(754), + [sym__value] = STATE(754), + [sym_parenthesized_expression] = STATE(754), + [sym_sub_expression] = STATE(754), + [sym_array_expression] = STATE(754), + [sym_script_block_expression] = STATE(754), + [sym_hash_literal_expression] = STATE(754), + [sym_post_increment_expression] = STATE(754), + [sym_post_decrement_expression] = STATE(754), + [sym_member_access] = STATE(754), + [sym_element_access] = STATE(754), + [sym_invokation_expression] = STATE(754), + [sym_invokation_foreach_expression] = STATE(755), + [sym_type_literal] = STATE(206), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hexadecimal_integer_literal] = ACTIONS(845), - [sym_real_literal] = ACTIONS(887), - [aux_sym_expandable_string_literal_token1] = ACTIONS(849), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(851), - [sym_verbatim_string_characters] = ACTIONS(853), - [sym_verbatim_here_string_characters] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(889), - [aux_sym_comparison_operator_token50] = ACTIONS(889), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(859), - [anon_sym_DOLLAR_CARET] = ACTIONS(859), - [anon_sym_DOLLAR_QMARK] = ACTIONS(859), - [anon_sym_DOLLAR_] = ACTIONS(859), - [aux_sym_variable_token1] = ACTIONS(859), - [aux_sym_variable_token2] = ACTIONS(859), - [sym_braced_variable] = ACTIONS(859), - [sym_generic_token] = ACTIONS(1021), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(889), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(869), - [anon_sym_AT_LPAREN] = ACTIONS(871), - [anon_sym_AT_LBRACE] = ACTIONS(873), - [sym__statement_terminator] = ACTIONS(1023), + [sym_decimal_integer_literal] = ACTIONS(857), + [sym_hexadecimal_integer_literal] = ACTIONS(857), + [sym_real_literal] = ACTIONS(859), + [aux_sym_expandable_string_literal_token1] = ACTIONS(861), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(863), + [sym_verbatim_string_characters] = ACTIONS(865), + [sym_verbatim_here_string_characters] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(923), + [aux_sym_comparison_operator_token50] = ACTIONS(923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(871), + [anon_sym_DOLLAR_CARET] = ACTIONS(871), + [anon_sym_DOLLAR_QMARK] = ACTIONS(871), + [anon_sym_DOLLAR_] = ACTIONS(871), + [aux_sym_variable_token1] = ACTIONS(871), + [aux_sym_variable_token2] = ACTIONS(871), + [sym_braced_variable] = ACTIONS(871), + [sym_generic_token] = ACTIONS(991), + [sym_command_parameter] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(989), + [sym_stop_parsing] = ACTIONS(989), + [anon_sym_SPACE] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(881), + [anon_sym_AT_LPAREN] = ACTIONS(883), + [anon_sym_AT_LBRACE] = ACTIONS(885), }, - [217] = { - [sym__literal] = STATE(846), - [sym_integer_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_expandable_string_literal] = STATE(845), - [sym_expandable_here_string_literal] = STATE(845), - [sym_variable] = STATE(846), - [sym_unary_expression] = STATE(1087), - [sym_expression_with_unary_operator] = STATE(1078), - [sym_pre_increment_expression] = STATE(1082), - [sym_pre_decrement_expression] = STATE(1082), - [sym_cast_expression] = STATE(1082), - [sym__primary_expression] = STATE(846), - [sym__value] = STATE(846), - [sym_parenthesized_expression] = STATE(846), - [sym_sub_expression] = STATE(846), - [sym_array_expression] = STATE(846), - [sym_script_block_expression] = STATE(846), - [sym_hash_literal_expression] = STATE(846), - [sym_post_increment_expression] = STATE(846), - [sym_post_decrement_expression] = STATE(846), - [sym_member_access] = STATE(846), - [sym_element_access] = STATE(846), - [sym_invokation_expression] = STATE(846), - [sym_invokation_foreach_expression] = STATE(847), - [sym_type_literal] = STATE(217), + [210] = { + [sym__literal] = STATE(875), + [sym_integer_literal] = STATE(875), + [sym_string_literal] = STATE(875), + [sym_expandable_string_literal] = STATE(868), + [sym_expandable_here_string_literal] = STATE(868), + [sym_variable] = STATE(875), + [sym_unary_expression] = STATE(866), + [sym_expression_with_unary_operator] = STATE(869), + [sym_pre_increment_expression] = STATE(839), + [sym_pre_decrement_expression] = STATE(839), + [sym_cast_expression] = STATE(839), + [sym__primary_expression] = STATE(875), + [sym__value] = STATE(875), + [sym_parenthesized_expression] = STATE(875), + [sym_sub_expression] = STATE(875), + [sym_array_expression] = STATE(875), + [sym_script_block_expression] = STATE(875), + [sym_hash_literal_expression] = STATE(875), + [sym_post_increment_expression] = STATE(875), + [sym_post_decrement_expression] = STATE(875), + [sym_member_access] = STATE(875), + [sym_element_access] = STATE(875), + [sym_invokation_expression] = STATE(875), + [sym_invokation_foreach_expression] = STATE(876), + [sym_type_literal] = STATE(210), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(983), - [sym_hexadecimal_integer_literal] = ACTIONS(983), - [sym_real_literal] = ACTIONS(1027), - [aux_sym_expandable_string_literal_token1] = ACTIONS(987), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(989), - [sym_verbatim_string_characters] = ACTIONS(991), - [sym_verbatim_here_string_characters] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(993), + [sym_decimal_integer_literal] = ACTIONS(929), + [sym_hexadecimal_integer_literal] = ACTIONS(929), + [sym_real_literal] = ACTIONS(931), + [aux_sym_expandable_string_literal_token1] = ACTIONS(933), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(935), + [sym_verbatim_string_characters] = ACTIONS(937), + [sym_verbatim_here_string_characters] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(939), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -51648,73 +52017,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(1029), - [aux_sym_comparison_operator_token50] = ACTIONS(1029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(997), - [anon_sym_DOLLAR_CARET] = ACTIONS(997), - [anon_sym_DOLLAR_QMARK] = ACTIONS(997), - [anon_sym_DOLLAR_] = ACTIONS(997), - [aux_sym_variable_token1] = ACTIONS(997), - [aux_sym_variable_token2] = ACTIONS(997), - [sym_braced_variable] = ACTIONS(997), + [aux_sym_comparison_operator_token37] = ACTIONS(993), + [aux_sym_comparison_operator_token50] = ACTIONS(993), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(943), + [anon_sym_DOLLAR_CARET] = ACTIONS(943), + [anon_sym_DOLLAR_QMARK] = ACTIONS(943), + [anon_sym_DOLLAR_] = ACTIONS(943), + [aux_sym_variable_token1] = ACTIONS(943), + [aux_sym_variable_token2] = ACTIONS(943), + [sym_braced_variable] = ACTIONS(943), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(947), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_AT_LBRACE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(993), + [anon_sym_PLUS_PLUS] = ACTIONS(995), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_AT_LPAREN] = ACTIONS(955), + [anon_sym_AT_LBRACE] = ACTIONS(957), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), [sym__statement_terminator] = ACTIONS(95), }, - [218] = { - [sym__literal] = STATE(846), - [sym_integer_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_expandable_string_literal] = STATE(845), - [sym_expandable_here_string_literal] = STATE(845), - [sym_variable] = STATE(846), - [sym_unary_expression] = STATE(901), - [sym_expression_with_unary_operator] = STATE(896), - [sym_pre_increment_expression] = STATE(897), - [sym_pre_decrement_expression] = STATE(897), - [sym_cast_expression] = STATE(897), - [sym__primary_expression] = STATE(846), - [sym__value] = STATE(846), - [sym_parenthesized_expression] = STATE(846), - [sym_sub_expression] = STATE(846), - [sym_array_expression] = STATE(846), - [sym_script_block_expression] = STATE(846), - [sym_hash_literal_expression] = STATE(846), - [sym_post_increment_expression] = STATE(846), - [sym_post_decrement_expression] = STATE(846), - [sym_member_access] = STATE(846), - [sym_element_access] = STATE(846), - [sym_invokation_expression] = STATE(846), - [sym_invokation_foreach_expression] = STATE(847), - [sym_type_literal] = STATE(218), + [211] = { + [sym__literal] = STATE(840), + [sym_integer_literal] = STATE(840), + [sym_string_literal] = STATE(840), + [sym_expandable_string_literal] = STATE(836), + [sym_expandable_here_string_literal] = STATE(836), + [sym_variable] = STATE(840), + [sym_unary_expression] = STATE(837), + [sym_expression_with_unary_operator] = STATE(870), + [sym_pre_increment_expression] = STATE(823), + [sym_pre_decrement_expression] = STATE(823), + [sym_cast_expression] = STATE(823), + [sym__primary_expression] = STATE(840), + [sym__value] = STATE(840), + [sym_parenthesized_expression] = STATE(840), + [sym_sub_expression] = STATE(840), + [sym_array_expression] = STATE(840), + [sym_script_block_expression] = STATE(840), + [sym_hash_literal_expression] = STATE(840), + [sym_post_increment_expression] = STATE(840), + [sym_post_decrement_expression] = STATE(840), + [sym_member_access] = STATE(840), + [sym_element_access] = STATE(840), + [sym_invokation_expression] = STATE(840), + [sym_invokation_foreach_expression] = STATE(841), + [sym_type_literal] = STATE(211), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(983), - [sym_hexadecimal_integer_literal] = ACTIONS(983), - [sym_real_literal] = ACTIONS(1027), - [aux_sym_expandable_string_literal_token1] = ACTIONS(987), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(989), - [sym_verbatim_string_characters] = ACTIONS(991), - [sym_verbatim_here_string_characters] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(993), + [sym_decimal_integer_literal] = ACTIONS(959), + [sym_hexadecimal_integer_literal] = ACTIONS(959), + [sym_real_literal] = ACTIONS(961), + [aux_sym_expandable_string_literal_token1] = ACTIONS(963), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(965), + [sym_verbatim_string_characters] = ACTIONS(967), + [sym_verbatim_here_string_characters] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(969), [anon_sym_GT] = ACTIONS(97), [anon_sym_GT_GT] = ACTIONS(97), [anon_sym_2_GT] = ACTIONS(97), @@ -51742,990 +52111,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_4_GT_AMP2] = ACTIONS(97), [anon_sym_5_GT_AMP2] = ACTIONS(97), [anon_sym_6_GT_AMP2] = ACTIONS(97), - [aux_sym_comparison_operator_token37] = ACTIONS(1035), - [aux_sym_comparison_operator_token50] = ACTIONS(1035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(997), - [anon_sym_DOLLAR_CARET] = ACTIONS(997), - [anon_sym_DOLLAR_QMARK] = ACTIONS(997), - [anon_sym_DOLLAR_] = ACTIONS(997), - [aux_sym_variable_token1] = ACTIONS(997), - [aux_sym_variable_token2] = ACTIONS(997), - [sym_braced_variable] = ACTIONS(997), + [aux_sym_comparison_operator_token37] = ACTIONS(999), + [aux_sym_comparison_operator_token50] = ACTIONS(999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(973), + [anon_sym_DOLLAR_CARET] = ACTIONS(973), + [anon_sym_DOLLAR_QMARK] = ACTIONS(973), + [anon_sym_DOLLAR_] = ACTIONS(973), + [aux_sym_variable_token1] = ACTIONS(973), + [aux_sym_variable_token2] = ACTIONS(973), + [sym_braced_variable] = ACTIONS(973), [sym_command_parameter] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(977), [anon_sym_PIPE] = ACTIONS(97), [sym_stop_parsing] = ACTIONS(97), - [anon_sym_SPACE] = ACTIONS(97), + [anon_sym_SPACE] = ACTIONS(95), [anon_sym_COLON] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1035), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_AT_LBRACE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(983), + [anon_sym_AT_LPAREN] = ACTIONS(985), + [anon_sym_AT_LBRACE] = ACTIONS(987), [anon_sym_DOT2] = ACTIONS(97), [anon_sym_COLON_COLON] = ACTIONS(97), [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), - }, - [219] = { - [sym__literal] = STATE(867), - [sym_integer_literal] = STATE(867), - [sym_string_literal] = STATE(867), - [sym_expandable_string_literal] = STATE(866), - [sym_expandable_here_string_literal] = STATE(866), - [sym_variable] = STATE(867), - [sym_array_literal_expression] = STATE(1101), - [sym_unary_expression] = STATE(1049), - [sym_expression_with_unary_operator] = STATE(1081), - [sym_pre_increment_expression] = STATE(1088), - [sym_pre_decrement_expression] = STATE(1088), - [sym_cast_expression] = STATE(1088), - [sym__primary_expression] = STATE(867), - [sym__value] = STATE(867), - [sym_parenthesized_expression] = STATE(867), - [sym_sub_expression] = STATE(867), - [sym_array_expression] = STATE(867), - [sym_script_block_expression] = STATE(867), - [sym_hash_literal_expression] = STATE(867), - [sym_post_increment_expression] = STATE(867), - [sym_post_decrement_expression] = STATE(867), - [sym_member_access] = STATE(867), - [sym_element_access] = STATE(867), - [sym_invokation_expression] = STATE(867), - [sym_invokation_foreach_expression] = STATE(868), - [sym_type_literal] = STATE(212), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hexadecimal_integer_literal] = ACTIONS(945), - [sym_real_literal] = ACTIONS(947), - [aux_sym_expandable_string_literal_token1] = ACTIONS(949), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(951), - [sym_verbatim_string_characters] = ACTIONS(953), - [sym_verbatim_here_string_characters] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(1013), - [aux_sym_comparison_operator_token50] = ACTIONS(1013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_CARET] = ACTIONS(959), - [anon_sym_DOLLAR_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_] = ACTIONS(959), - [aux_sym_variable_token1] = ACTIONS(959), - [aux_sym_variable_token2] = ACTIONS(959), - [sym_braced_variable] = ACTIONS(959), - [sym_generic_token] = ACTIONS(1041), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1013), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(969), - [anon_sym_AT_LPAREN] = ACTIONS(971), - [anon_sym_AT_LBRACE] = ACTIONS(973), - }, - [220] = { - [sym__literal] = STATE(846), - [sym_integer_literal] = STATE(846), - [sym_string_literal] = STATE(846), - [sym_expandable_string_literal] = STATE(845), - [sym_expandable_here_string_literal] = STATE(845), - [sym_variable] = STATE(846), - [sym_array_literal_expression] = STATE(1117), - [sym_unary_expression] = STATE(1047), - [sym_expression_with_unary_operator] = STATE(1078), - [sym_pre_increment_expression] = STATE(1082), - [sym_pre_decrement_expression] = STATE(1082), - [sym_cast_expression] = STATE(1082), - [sym__primary_expression] = STATE(846), - [sym__value] = STATE(846), - [sym_parenthesized_expression] = STATE(846), - [sym_sub_expression] = STATE(846), - [sym_array_expression] = STATE(846), - [sym_script_block_expression] = STATE(846), - [sym_hash_literal_expression] = STATE(846), - [sym_post_increment_expression] = STATE(846), - [sym_post_decrement_expression] = STATE(846), - [sym_member_access] = STATE(846), - [sym_element_access] = STATE(846), - [sym_invokation_expression] = STATE(846), - [sym_invokation_foreach_expression] = STATE(847), - [sym_type_literal] = STATE(217), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(983), - [sym_hexadecimal_integer_literal] = ACTIONS(983), - [sym_real_literal] = ACTIONS(1027), - [aux_sym_expandable_string_literal_token1] = ACTIONS(987), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(989), - [sym_verbatim_string_characters] = ACTIONS(991), - [sym_verbatim_here_string_characters] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(1029), - [aux_sym_comparison_operator_token50] = ACTIONS(1029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(997), - [anon_sym_DOLLAR_CARET] = ACTIONS(997), - [anon_sym_DOLLAR_QMARK] = ACTIONS(997), - [anon_sym_DOLLAR_] = ACTIONS(997), - [aux_sym_variable_token1] = ACTIONS(997), - [aux_sym_variable_token2] = ACTIONS(997), - [sym_braced_variable] = ACTIONS(997), - [sym_generic_token] = ACTIONS(1043), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_AT_LBRACE] = ACTIONS(1011), - [sym__statement_terminator] = ACTIONS(1023), - }, - [221] = { - [sym__literal] = STATE(928), - [sym_integer_literal] = STATE(928), - [sym_string_literal] = STATE(928), - [sym_expandable_string_literal] = STATE(845), - [sym_expandable_here_string_literal] = STATE(845), - [sym_variable] = STATE(928), - [sym_array_literal_expression] = STATE(1117), - [sym_unary_expression] = STATE(1092), - [sym_expression_with_unary_operator] = STATE(1078), - [sym_pre_increment_expression] = STATE(1082), - [sym_pre_decrement_expression] = STATE(1082), - [sym_cast_expression] = STATE(1082), - [sym__primary_expression] = STATE(928), - [sym__value] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_sub_expression] = STATE(928), - [sym_array_expression] = STATE(928), - [sym_script_block_expression] = STATE(928), - [sym_hash_literal_expression] = STATE(928), - [sym_post_increment_expression] = STATE(928), - [sym_post_decrement_expression] = STATE(928), - [sym_member_access] = STATE(928), - [sym_element_access] = STATE(928), - [sym_invokation_expression] = STATE(928), - [sym_invokation_foreach_expression] = STATE(847), - [sym_type_literal] = STATE(211), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(983), - [sym_hexadecimal_integer_literal] = ACTIONS(983), - [sym_real_literal] = ACTIONS(985), - [aux_sym_expandable_string_literal_token1] = ACTIONS(987), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(989), - [sym_verbatim_string_characters] = ACTIONS(991), - [sym_verbatim_here_string_characters] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(995), - [aux_sym_comparison_operator_token50] = ACTIONS(995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(997), - [anon_sym_DOLLAR_CARET] = ACTIONS(997), - [anon_sym_DOLLAR_QMARK] = ACTIONS(997), - [anon_sym_DOLLAR_] = ACTIONS(997), - [aux_sym_variable_token1] = ACTIONS(997), - [aux_sym_variable_token2] = ACTIONS(997), - [sym_braced_variable] = ACTIONS(997), - [sym_generic_token] = ACTIONS(1043), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_AT_LBRACE] = ACTIONS(1011), - [sym__statement_terminator] = ACTIONS(1023), - }, - [222] = { - [sym__literal] = STATE(929), - [sym_integer_literal] = STATE(929), - [sym_string_literal] = STATE(929), - [sym_expandable_string_literal] = STATE(866), - [sym_expandable_here_string_literal] = STATE(866), - [sym_variable] = STATE(929), - [sym_array_literal_expression] = STATE(1101), - [sym_unary_expression] = STATE(1093), - [sym_expression_with_unary_operator] = STATE(1081), - [sym_pre_increment_expression] = STATE(1088), - [sym_pre_decrement_expression] = STATE(1088), - [sym_cast_expression] = STATE(1088), - [sym__primary_expression] = STATE(929), - [sym__value] = STATE(929), - [sym_parenthesized_expression] = STATE(929), - [sym_sub_expression] = STATE(929), - [sym_array_expression] = STATE(929), - [sym_script_block_expression] = STATE(929), - [sym_hash_literal_expression] = STATE(929), - [sym_post_increment_expression] = STATE(929), - [sym_post_decrement_expression] = STATE(929), - [sym_member_access] = STATE(929), - [sym_element_access] = STATE(929), - [sym_invokation_expression] = STATE(929), - [sym_invokation_foreach_expression] = STATE(868), - [sym_type_literal] = STATE(210), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hexadecimal_integer_literal] = ACTIONS(945), - [sym_real_literal] = ACTIONS(975), - [aux_sym_expandable_string_literal_token1] = ACTIONS(949), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(951), - [sym_verbatim_string_characters] = ACTIONS(953), - [sym_verbatim_here_string_characters] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(977), - [aux_sym_comparison_operator_token50] = ACTIONS(977), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(959), - [anon_sym_DOLLAR_CARET] = ACTIONS(959), - [anon_sym_DOLLAR_QMARK] = ACTIONS(959), - [anon_sym_DOLLAR_] = ACTIONS(959), - [aux_sym_variable_token1] = ACTIONS(959), - [aux_sym_variable_token2] = ACTIONS(959), - [sym_braced_variable] = ACTIONS(959), - [sym_generic_token] = ACTIONS(1041), - [sym_command_parameter] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(1019), - [sym_stop_parsing] = ACTIONS(1019), - [anon_sym_SPACE] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(977), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(969), - [anon_sym_AT_LPAREN] = ACTIONS(971), - [anon_sym_AT_LBRACE] = ACTIONS(973), - }, - [223] = { - [sym__literal] = STATE(1051), - [sym_integer_literal] = STATE(1051), - [sym_string_literal] = STATE(1051), - [sym_expandable_string_literal] = STATE(1008), - [sym_expandable_here_string_literal] = STATE(1008), - [sym_variable] = STATE(1051), - [sym_unary_expression] = STATE(175), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(1051), - [sym__value] = STATE(1051), - [sym_parenthesized_expression] = STATE(1051), - [sym_sub_expression] = STATE(1051), - [sym_array_expression] = STATE(1051), - [sym_script_block_expression] = STATE(1051), - [sym_hash_literal_expression] = STATE(1051), - [sym_post_increment_expression] = STATE(1051), - [sym_post_decrement_expression] = STATE(1051), - [sym_member_access] = STATE(1051), - [sym_element_access] = STATE(1051), - [sym_invokation_expression] = STATE(1051), - [sym_invokation_foreach_expression] = STATE(1011), - [sym_type_literal] = STATE(223), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(1045), - [sym_hexadecimal_integer_literal] = ACTIONS(1047), - [sym_real_literal] = ACTIONS(1049), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1051), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1053), - [sym_verbatim_string_characters] = ACTIONS(1055), - [sym_verbatim_here_string_characters] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(95), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(95), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(95), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(95), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(95), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(95), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(95), - [anon_sym_2_GT_AMP1] = ACTIONS(95), - [anon_sym_3_GT_AMP1] = ACTIONS(95), - [anon_sym_4_GT_AMP1] = ACTIONS(95), - [anon_sym_5_GT_AMP1] = ACTIONS(95), - [anon_sym_6_GT_AMP1] = ACTIONS(95), - [anon_sym_STAR_GT_AMP2] = ACTIONS(95), - [anon_sym_1_GT_AMP2] = ACTIONS(95), - [anon_sym_3_GT_AMP2] = ACTIONS(95), - [anon_sym_4_GT_AMP2] = ACTIONS(95), - [anon_sym_5_GT_AMP2] = ACTIONS(95), - [anon_sym_6_GT_AMP2] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(1059), - [aux_sym_comparison_operator_token50] = ACTIONS(1059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1061), - [anon_sym_DOLLAR_CARET] = ACTIONS(1061), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1061), - [anon_sym_DOLLAR_] = ACTIONS(1063), - [aux_sym_variable_token1] = ACTIONS(1063), - [aux_sym_variable_token2] = ACTIONS(1061), - [sym_braced_variable] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1059), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_AT_LBRACE] = ACTIONS(1079), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(95), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), - }, - [224] = { - [sym__literal] = STATE(1017), - [sym_integer_literal] = STATE(1017), - [sym_string_literal] = STATE(1017), - [sym_expandable_string_literal] = STATE(1008), - [sym_expandable_here_string_literal] = STATE(1008), - [sym_variable] = STATE(1017), - [sym_unary_expression] = STATE(997), - [sym_expression_with_unary_operator] = STATE(1005), - [sym_pre_increment_expression] = STATE(1006), - [sym_pre_decrement_expression] = STATE(1006), - [sym_cast_expression] = STATE(1006), - [sym__primary_expression] = STATE(1017), - [sym__value] = STATE(1017), - [sym_parenthesized_expression] = STATE(1017), - [sym_sub_expression] = STATE(1017), - [sym_array_expression] = STATE(1017), - [sym_script_block_expression] = STATE(1017), - [sym_hash_literal_expression] = STATE(1017), - [sym_post_increment_expression] = STATE(1017), - [sym_post_decrement_expression] = STATE(1017), - [sym_member_access] = STATE(1017), - [sym_element_access] = STATE(1017), - [sym_invokation_expression] = STATE(1017), - [sym_invokation_foreach_expression] = STATE(1011), - [sym_type_literal] = STATE(224), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(1045), - [sym_hexadecimal_integer_literal] = ACTIONS(1047), - [sym_real_literal] = ACTIONS(1081), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1051), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1053), - [sym_verbatim_string_characters] = ACTIONS(1055), - [sym_verbatim_here_string_characters] = ACTIONS(1055), - [anon_sym_LBRACK] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(95), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(95), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(95), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(95), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(95), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(95), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(95), - [anon_sym_2_GT_AMP1] = ACTIONS(95), - [anon_sym_3_GT_AMP1] = ACTIONS(95), - [anon_sym_4_GT_AMP1] = ACTIONS(95), - [anon_sym_5_GT_AMP1] = ACTIONS(95), - [anon_sym_6_GT_AMP1] = ACTIONS(95), - [anon_sym_STAR_GT_AMP2] = ACTIONS(95), - [anon_sym_1_GT_AMP2] = ACTIONS(95), - [anon_sym_3_GT_AMP2] = ACTIONS(95), - [anon_sym_4_GT_AMP2] = ACTIONS(95), - [anon_sym_5_GT_AMP2] = ACTIONS(95), - [anon_sym_6_GT_AMP2] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(1083), - [aux_sym_comparison_operator_token50] = ACTIONS(1083), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1061), - [anon_sym_DOLLAR_CARET] = ACTIONS(1061), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1061), - [anon_sym_DOLLAR_] = ACTIONS(1063), - [aux_sym_variable_token1] = ACTIONS(1063), - [aux_sym_variable_token2] = ACTIONS(1061), - [sym_braced_variable] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_COMMA] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1083), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_AT_LBRACE] = ACTIONS(1079), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(95), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - [sym__statement_terminator] = ACTIONS(95), - }, - [225] = { - [sym__literal] = STATE(1018), - [sym_integer_literal] = STATE(1018), - [sym_string_literal] = STATE(1018), - [sym_expandable_string_literal] = STATE(935), - [sym_expandable_here_string_literal] = STATE(935), - [sym_variable] = STATE(1018), - [sym_unary_expression] = STATE(969), - [sym_expression_with_unary_operator] = STATE(949), - [sym_pre_increment_expression] = STATE(950), - [sym_pre_decrement_expression] = STATE(950), - [sym_cast_expression] = STATE(950), - [sym__primary_expression] = STATE(1018), - [sym__value] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_sub_expression] = STATE(1018), - [sym_array_expression] = STATE(1018), - [sym_script_block_expression] = STATE(1018), - [sym_hash_literal_expression] = STATE(1018), - [sym_post_increment_expression] = STATE(1018), - [sym_post_decrement_expression] = STATE(1018), - [sym_member_access] = STATE(1018), - [sym_element_access] = STATE(1018), - [sym_invokation_expression] = STATE(1018), - [sym_invokation_foreach_expression] = STATE(963), - [sym_type_literal] = STATE(225), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(1091), - [sym_hexadecimal_integer_literal] = ACTIONS(1093), - [sym_real_literal] = ACTIONS(1095), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1097), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1099), - [sym_verbatim_string_characters] = ACTIONS(1101), - [sym_verbatim_here_string_characters] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(95), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(95), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(95), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(95), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(95), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(95), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(95), - [anon_sym_2_GT_AMP1] = ACTIONS(95), - [anon_sym_3_GT_AMP1] = ACTIONS(95), - [anon_sym_4_GT_AMP1] = ACTIONS(95), - [anon_sym_5_GT_AMP1] = ACTIONS(95), - [anon_sym_6_GT_AMP1] = ACTIONS(95), - [anon_sym_STAR_GT_AMP2] = ACTIONS(95), - [anon_sym_1_GT_AMP2] = ACTIONS(95), - [anon_sym_3_GT_AMP2] = ACTIONS(95), - [anon_sym_4_GT_AMP2] = ACTIONS(95), - [anon_sym_5_GT_AMP2] = ACTIONS(95), - [anon_sym_6_GT_AMP2] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(1105), - [aux_sym_comparison_operator_token50] = ACTIONS(1105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1107), - [anon_sym_DOLLAR_CARET] = ACTIONS(1107), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1107), - [anon_sym_DOLLAR_] = ACTIONS(1109), - [aux_sym_variable_token1] = ACTIONS(1109), - [aux_sym_variable_token2] = ACTIONS(1107), - [sym_braced_variable] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1121), - [anon_sym_AT_LPAREN] = ACTIONS(1123), - [anon_sym_AT_LBRACE] = ACTIONS(1125), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(95), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - }, - [226] = { - [sym__literal] = STATE(1052), - [sym_integer_literal] = STATE(1052), - [sym_string_literal] = STATE(1052), - [sym_expandable_string_literal] = STATE(935), - [sym_expandable_here_string_literal] = STATE(935), - [sym_variable] = STATE(1052), - [sym_unary_expression] = STATE(168), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(1052), - [sym__value] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_sub_expression] = STATE(1052), - [sym_array_expression] = STATE(1052), - [sym_script_block_expression] = STATE(1052), - [sym_hash_literal_expression] = STATE(1052), - [sym_post_increment_expression] = STATE(1052), - [sym_post_decrement_expression] = STATE(1052), - [sym_member_access] = STATE(1052), - [sym_element_access] = STATE(1052), - [sym_invokation_expression] = STATE(1052), - [sym_invokation_foreach_expression] = STATE(963), - [sym_type_literal] = STATE(226), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(1091), - [sym_hexadecimal_integer_literal] = ACTIONS(1093), - [sym_real_literal] = ACTIONS(1127), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1097), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1099), - [sym_verbatim_string_characters] = ACTIONS(1101), - [sym_verbatim_here_string_characters] = ACTIONS(1101), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_GT] = ACTIONS(95), - [anon_sym_2_GT] = ACTIONS(97), - [anon_sym_2_GT_GT] = ACTIONS(95), - [anon_sym_3_GT] = ACTIONS(97), - [anon_sym_3_GT_GT] = ACTIONS(95), - [anon_sym_4_GT] = ACTIONS(97), - [anon_sym_4_GT_GT] = ACTIONS(95), - [anon_sym_5_GT] = ACTIONS(97), - [anon_sym_5_GT_GT] = ACTIONS(95), - [anon_sym_6_GT] = ACTIONS(97), - [anon_sym_6_GT_GT] = ACTIONS(95), - [anon_sym_STAR_GT] = ACTIONS(97), - [anon_sym_STAR_GT_GT] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_STAR_GT_AMP1] = ACTIONS(95), - [anon_sym_2_GT_AMP1] = ACTIONS(95), - [anon_sym_3_GT_AMP1] = ACTIONS(95), - [anon_sym_4_GT_AMP1] = ACTIONS(95), - [anon_sym_5_GT_AMP1] = ACTIONS(95), - [anon_sym_6_GT_AMP1] = ACTIONS(95), - [anon_sym_STAR_GT_AMP2] = ACTIONS(95), - [anon_sym_1_GT_AMP2] = ACTIONS(95), - [anon_sym_3_GT_AMP2] = ACTIONS(95), - [anon_sym_4_GT_AMP2] = ACTIONS(95), - [anon_sym_5_GT_AMP2] = ACTIONS(95), - [anon_sym_6_GT_AMP2] = ACTIONS(95), - [aux_sym_comparison_operator_token37] = ACTIONS(1129), - [aux_sym_comparison_operator_token50] = ACTIONS(1129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1107), - [anon_sym_DOLLAR_CARET] = ACTIONS(1107), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1107), - [anon_sym_DOLLAR_] = ACTIONS(1109), - [aux_sym_variable_token1] = ACTIONS(1109), - [aux_sym_variable_token2] = ACTIONS(1107), - [sym_braced_variable] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_RPAREN] = ACTIONS(95), - [anon_sym_COMMA] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1121), - [anon_sym_AT_LPAREN] = ACTIONS(1123), - [anon_sym_AT_LBRACE] = ACTIONS(1125), - [anon_sym_DOT2] = ACTIONS(97), - [anon_sym_COLON_COLON] = ACTIONS(95), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), - }, - [227] = { - [sym__literal] = STATE(1052), - [sym_integer_literal] = STATE(1052), - [sym_string_literal] = STATE(1052), - [sym_expandable_string_literal] = STATE(935), - [sym_expandable_here_string_literal] = STATE(935), - [sym_variable] = STATE(1052), - [sym_array_literal_expression] = STATE(1157), - [sym_unary_expression] = STATE(1145), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(1052), - [sym__value] = STATE(1052), - [sym_parenthesized_expression] = STATE(1052), - [sym_sub_expression] = STATE(1052), - [sym_array_expression] = STATE(1052), - [sym_script_block_expression] = STATE(1052), - [sym_hash_literal_expression] = STATE(1052), - [sym_post_increment_expression] = STATE(1052), - [sym_post_decrement_expression] = STATE(1052), - [sym_member_access] = STATE(1052), - [sym_element_access] = STATE(1052), - [sym_invokation_expression] = STATE(1052), - [sym_invokation_foreach_expression] = STATE(963), - [sym_type_literal] = STATE(226), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1091), - [sym_hexadecimal_integer_literal] = ACTIONS(1091), - [sym_real_literal] = ACTIONS(1137), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1139), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1141), - [sym_verbatim_string_characters] = ACTIONS(1143), - [sym_verbatim_here_string_characters] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(1131), - [aux_sym_comparison_operator_token50] = ACTIONS(1131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1109), - [anon_sym_DOLLAR_CARET] = ACTIONS(1109), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1109), - [anon_sym_DOLLAR_] = ACTIONS(1109), - [aux_sym_variable_token1] = ACTIONS(1109), - [aux_sym_variable_token2] = ACTIONS(1109), - [sym_braced_variable] = ACTIONS(1109), - [sym_generic_token] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1131), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), - [anon_sym_AT_LPAREN] = ACTIONS(1159), - [anon_sym_AT_LBRACE] = ACTIONS(1161), }, - [228] = { - [sym__literal] = STATE(1051), - [sym_integer_literal] = STATE(1051), - [sym_string_literal] = STATE(1051), - [sym_expandable_string_literal] = STATE(1008), - [sym_expandable_here_string_literal] = STATE(1008), - [sym_variable] = STATE(1051), - [sym_array_literal_expression] = STATE(1148), - [sym_unary_expression] = STATE(1141), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(1051), - [sym__value] = STATE(1051), - [sym_parenthesized_expression] = STATE(1051), - [sym_sub_expression] = STATE(1051), - [sym_array_expression] = STATE(1051), - [sym_script_block_expression] = STATE(1051), - [sym_hash_literal_expression] = STATE(1051), - [sym_post_increment_expression] = STATE(1051), - [sym_post_decrement_expression] = STATE(1051), - [sym_member_access] = STATE(1051), - [sym_element_access] = STATE(1051), - [sym_invokation_expression] = STATE(1051), - [sym_invokation_foreach_expression] = STATE(1011), - [sym_type_literal] = STATE(223), + [212] = { + [sym__literal] = STATE(759), + [sym_integer_literal] = STATE(759), + [sym_string_literal] = STATE(759), + [sym_expandable_string_literal] = STATE(774), + [sym_expandable_here_string_literal] = STATE(774), + [sym_variable] = STATE(759), + [sym_array_literal_expression] = STATE(1065), + [sym_unary_expression] = STATE(1004), + [sym_expression_with_unary_operator] = STATE(1022), + [sym_pre_increment_expression] = STATE(1023), + [sym_pre_decrement_expression] = STATE(1023), + [sym_cast_expression] = STATE(1023), + [sym__primary_expression] = STATE(759), + [sym__value] = STATE(759), + [sym_parenthesized_expression] = STATE(759), + [sym_sub_expression] = STATE(759), + [sym_array_expression] = STATE(759), + [sym_script_block_expression] = STATE(759), + [sym_hash_literal_expression] = STATE(759), + [sym_post_increment_expression] = STATE(759), + [sym_post_decrement_expression] = STATE(759), + [sym_member_access] = STATE(759), + [sym_element_access] = STATE(759), + [sym_invokation_expression] = STATE(759), + [sym_invokation_foreach_expression] = STATE(762), + [sym_type_literal] = STATE(205), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1045), - [sym_hexadecimal_integer_literal] = ACTIONS(1045), - [sym_real_literal] = ACTIONS(1163), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1165), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1167), - [sym_verbatim_string_characters] = ACTIONS(1169), - [sym_verbatim_here_string_characters] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1171), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_GT_GT] = ACTIONS(1019), - [anon_sym_2_GT] = ACTIONS(1019), - [anon_sym_2_GT_GT] = ACTIONS(1019), - [anon_sym_3_GT] = ACTIONS(1019), - [anon_sym_3_GT_GT] = ACTIONS(1019), - [anon_sym_4_GT] = ACTIONS(1019), - [anon_sym_4_GT_GT] = ACTIONS(1019), - [anon_sym_5_GT] = ACTIONS(1019), - [anon_sym_5_GT_GT] = ACTIONS(1019), - [anon_sym_6_GT] = ACTIONS(1019), - [anon_sym_6_GT_GT] = ACTIONS(1019), - [anon_sym_STAR_GT] = ACTIONS(1019), - [anon_sym_STAR_GT_GT] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1019), - [anon_sym_2_GT_AMP1] = ACTIONS(1019), - [anon_sym_3_GT_AMP1] = ACTIONS(1019), - [anon_sym_4_GT_AMP1] = ACTIONS(1019), - [anon_sym_5_GT_AMP1] = ACTIONS(1019), - [anon_sym_6_GT_AMP1] = ACTIONS(1019), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1019), - [anon_sym_1_GT_AMP2] = ACTIONS(1019), - [anon_sym_3_GT_AMP2] = ACTIONS(1019), - [anon_sym_4_GT_AMP2] = ACTIONS(1019), - [anon_sym_5_GT_AMP2] = ACTIONS(1019), - [anon_sym_6_GT_AMP2] = ACTIONS(1019), - [aux_sym_comparison_operator_token37] = ACTIONS(1069), - [aux_sym_comparison_operator_token50] = ACTIONS(1069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1063), - [anon_sym_DOLLAR_CARET] = ACTIONS(1063), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1063), - [anon_sym_DOLLAR_] = ACTIONS(1063), - [aux_sym_variable_token1] = ACTIONS(1063), - [aux_sym_variable_token2] = ACTIONS(1063), - [sym_braced_variable] = ACTIONS(1063), - [sym_generic_token] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), - [anon_sym_AT_LPAREN] = ACTIONS(1185), - [anon_sym_AT_LBRACE] = ACTIONS(1187), - [sym__statement_terminator] = ACTIONS(1023), + [sym_decimal_integer_literal] = ACTIONS(887), + [sym_hexadecimal_integer_literal] = ACTIONS(887), + [sym_real_literal] = ACTIONS(889), + [aux_sym_expandable_string_literal_token1] = ACTIONS(891), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(893), + [sym_verbatim_string_characters] = ACTIONS(895), + [sym_verbatim_here_string_characters] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(917), + [aux_sym_comparison_operator_token50] = ACTIONS(917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), + [anon_sym_DOLLAR_CARET] = ACTIONS(901), + [anon_sym_DOLLAR_QMARK] = ACTIONS(901), + [anon_sym_DOLLAR_] = ACTIONS(901), + [aux_sym_variable_token1] = ACTIONS(901), + [aux_sym_variable_token2] = ACTIONS(901), + [sym_braced_variable] = ACTIONS(901), + [sym_generic_token] = ACTIONS(1005), + [sym_command_parameter] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(989), + [sym_stop_parsing] = ACTIONS(989), + [anon_sym_SPACE] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(911), + [anon_sym_AT_LPAREN] = ACTIONS(913), + [anon_sym_AT_LBRACE] = ACTIONS(915), + [sym__statement_terminator] = ACTIONS(1007), }, - [229] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(1903), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [213] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_initializer] = STATE(2070), + [sym_pipeline] = STATE(1791), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -52746,14 +52299,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1009), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1189), + [aux_sym_for_statement_token2] = ACTIONS(1013), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -52767,48 +52330,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [230] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_initializer] = STATE(2028), - [sym_pipeline] = STATE(1955), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [214] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2074), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -52829,14 +52392,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1015), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1017), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1193), + [aux_sym_for_statement_token2] = ACTIONS(1019), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -52850,48 +52423,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [231] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2032), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [215] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(1960), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -52912,14 +52485,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1021), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1197), + [aux_sym_for_statement_token2] = ACTIONS(1025), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -52933,48 +52516,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [232] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2035), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [216] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(1894), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -52995,14 +52578,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1027), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1201), + [aux_sym_for_statement_token2] = ACTIONS(1031), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53016,48 +52609,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [233] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_initializer] = STATE(2077), - [sym_pipeline] = STATE(1955), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [217] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2059), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53078,14 +52671,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1033), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_RPAREN] = ACTIONS(1035), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1205), + [aux_sym_for_statement_token2] = ACTIONS(1037), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53099,48 +52702,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [234] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2081), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [218] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2077), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53161,14 +52764,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1039), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1041), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1209), + [aux_sym_for_statement_token2] = ACTIONS(1043), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53182,48 +52795,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [235] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2084), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [219] = { + [sym__literal] = STATE(875), + [sym_integer_literal] = STATE(875), + [sym_string_literal] = STATE(875), + [sym_expandable_string_literal] = STATE(868), + [sym_expandable_here_string_literal] = STATE(868), + [sym_variable] = STATE(875), + [sym_array_literal_expression] = STATE(1098), + [sym_unary_expression] = STATE(1020), + [sym_expression_with_unary_operator] = STATE(1044), + [sym_pre_increment_expression] = STATE(1067), + [sym_pre_decrement_expression] = STATE(1067), + [sym_cast_expression] = STATE(1067), + [sym__primary_expression] = STATE(875), + [sym__value] = STATE(875), + [sym_parenthesized_expression] = STATE(875), + [sym_sub_expression] = STATE(875), + [sym_array_expression] = STATE(875), + [sym_script_block_expression] = STATE(875), + [sym_hash_literal_expression] = STATE(875), + [sym_post_increment_expression] = STATE(875), + [sym_post_decrement_expression] = STATE(875), + [sym_member_access] = STATE(875), + [sym_element_access] = STATE(875), + [sym_invokation_expression] = STATE(875), + [sym_invokation_foreach_expression] = STATE(876), + [sym_type_literal] = STATE(207), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(929), + [sym_hexadecimal_integer_literal] = ACTIONS(929), + [sym_real_literal] = ACTIONS(931), + [aux_sym_expandable_string_literal_token1] = ACTIONS(933), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(935), + [sym_verbatim_string_characters] = ACTIONS(937), + [sym_verbatim_here_string_characters] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(941), + [aux_sym_comparison_operator_token50] = ACTIONS(941), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(943), + [anon_sym_DOLLAR_CARET] = ACTIONS(943), + [anon_sym_DOLLAR_QMARK] = ACTIONS(943), + [anon_sym_DOLLAR_] = ACTIONS(943), + [aux_sym_variable_token1] = ACTIONS(943), + [aux_sym_variable_token2] = ACTIONS(943), + [sym_braced_variable] = ACTIONS(943), + [sym_generic_token] = ACTIONS(1045), + [sym_command_parameter] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(989), + [sym_stop_parsing] = ACTIONS(989), + [anon_sym_SPACE] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), + [anon_sym_AT_LPAREN] = ACTIONS(955), + [anon_sym_AT_LBRACE] = ACTIONS(957), + [sym__statement_terminator] = ACTIONS(1007), + }, + [220] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2034), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53244,14 +52950,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1049), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1213), + [aux_sym_for_statement_token2] = ACTIONS(1051), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53265,48 +52981,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [236] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_initializer] = STATE(2095), - [sym_pipeline] = STATE(1955), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [221] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2056), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53327,14 +53043,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1053), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1055), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1217), + [aux_sym_for_statement_token2] = ACTIONS(1057), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53348,48 +53074,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [237] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2099), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [222] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_initializer] = STATE(1751), + [sym_pipeline] = STATE(1791), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53410,14 +53136,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1221), + [aux_sym_for_statement_token2] = ACTIONS(1063), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53431,48 +53167,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [238] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(2102), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [223] = { + [sym__literal] = STATE(840), + [sym_integer_literal] = STATE(840), + [sym_string_literal] = STATE(840), + [sym_expandable_string_literal] = STATE(836), + [sym_expandable_here_string_literal] = STATE(836), + [sym_variable] = STATE(840), + [sym_array_literal_expression] = STATE(1088), + [sym_unary_expression] = STATE(1015), + [sym_expression_with_unary_operator] = STATE(1064), + [sym_pre_increment_expression] = STATE(1072), + [sym_pre_decrement_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym__primary_expression] = STATE(840), + [sym__value] = STATE(840), + [sym_parenthesized_expression] = STATE(840), + [sym_sub_expression] = STATE(840), + [sym_array_expression] = STATE(840), + [sym_script_block_expression] = STATE(840), + [sym_hash_literal_expression] = STATE(840), + [sym_post_increment_expression] = STATE(840), + [sym_post_decrement_expression] = STATE(840), + [sym_member_access] = STATE(840), + [sym_element_access] = STATE(840), + [sym_invokation_expression] = STATE(840), + [sym_invokation_foreach_expression] = STATE(841), + [sym_type_literal] = STATE(208), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(959), + [sym_hexadecimal_integer_literal] = ACTIONS(959), + [sym_real_literal] = ACTIONS(961), + [aux_sym_expandable_string_literal_token1] = ACTIONS(963), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(965), + [sym_verbatim_string_characters] = ACTIONS(967), + [sym_verbatim_here_string_characters] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(971), + [aux_sym_comparison_operator_token50] = ACTIONS(971), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(973), + [anon_sym_DOLLAR_CARET] = ACTIONS(973), + [anon_sym_DOLLAR_QMARK] = ACTIONS(973), + [anon_sym_DOLLAR_] = ACTIONS(973), + [aux_sym_variable_token1] = ACTIONS(973), + [aux_sym_variable_token2] = ACTIONS(973), + [sym_braced_variable] = ACTIONS(973), + [sym_generic_token] = ACTIONS(1065), + [sym_command_parameter] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(989), + [sym_stop_parsing] = ACTIONS(989), + [anon_sym_SPACE] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(971), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(983), + [anon_sym_AT_LPAREN] = ACTIONS(985), + [anon_sym_AT_LBRACE] = ACTIONS(987), + }, + [224] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_initializer] = STATE(2052), + [sym_pipeline] = STATE(1791), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53493,14 +53322,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1067), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1069), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1225), + [aux_sym_for_statement_token2] = ACTIONS(1071), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53514,48 +53353,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [239] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_initializer] = STATE(2093), - [sym_pipeline] = STATE(1955), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [225] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_initializer] = STATE(2030), + [sym_pipeline] = STATE(1791), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53576,14 +53415,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1073), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1075), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1229), + [aux_sym_for_statement_token2] = ACTIONS(1077), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53597,48 +53446,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [240] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_condition] = STATE(1774), - [sym_pipeline] = STATE(1781), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [226] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_condition] = STATE(2037), + [sym_pipeline] = STATE(1961), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53659,14 +53508,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(21), [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1079), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1081), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_LF] = ACTIONS(1233), + [aux_sym_for_statement_token2] = ACTIONS(1083), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53680,48 +53539,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [241] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(1935), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [227] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2061), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53743,11 +53602,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1085), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53761,48 +53630,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [242] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2039), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [228] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2040), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53824,11 +53693,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1087), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53842,48 +53721,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [243] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(1940), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [229] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2058), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53905,11 +53784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1089), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -53923,48 +53812,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [244] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2083), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [230] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2041), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -53986,11 +53875,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1091), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54004,48 +53903,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [245] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2034), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [231] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2063), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54067,11 +53966,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54085,48 +53994,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [246] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(1868), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [232] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(1887), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54148,11 +54057,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1095), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54166,48 +54085,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [247] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2086), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [233] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2039), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54229,11 +54148,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1097), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54247,48 +54176,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [248] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2087), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [234] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(1691), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54310,11 +54239,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54328,48 +54267,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [249] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2088), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [235] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2076), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54391,11 +54330,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1101), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54409,59 +54358,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [250] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2101), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [236] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(1736), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(5), - [sym_real_literal] = ACTIONS(7), - [aux_sym_expandable_string_literal_token1] = ACTIONS(9), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), - [sym_verbatim_string_characters] = ACTIONS(13), - [sym_verbatim_here_string_characters] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(243), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(5), + [sym_real_literal] = ACTIONS(7), + [aux_sym_expandable_string_literal_token1] = ACTIONS(9), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), + [sym_verbatim_string_characters] = ACTIONS(13), + [sym_verbatim_here_string_characters] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(243), [aux_sym_comparison_operator_token37] = ACTIONS(19), [aux_sym_comparison_operator_token50] = ACTIONS(19), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), @@ -54472,11 +54421,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54490,48 +54449,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [251] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2104), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [237] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(1970), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54553,11 +54512,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54571,48 +54540,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [252] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2105), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [238] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2081), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54634,11 +54603,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1107), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54652,48 +54631,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [253] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2106), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [239] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2080), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54715,11 +54694,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1109), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54733,48 +54722,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [254] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(1983), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [240] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(1733), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54796,11 +54785,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1111), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54814,48 +54813,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [255] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2037), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [241] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2079), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54877,11 +54876,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1113), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54895,48 +54904,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [256] = { - [sym__literal] = STATE(155), - [sym_integer_literal] = STATE(155), - [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(155), - [sym_for_iterator] = STATE(2038), - [sym_pipeline] = STATE(1989), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), + [242] = { + [sym__literal] = STATE(156), + [sym_integer_literal] = STATE(156), + [sym_string_literal] = STATE(156), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(156), + [sym_for_iterator] = STATE(2036), + [sym_pipeline] = STATE(1977), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), [sym_additive_expression] = STATE(197), [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(155), - [sym__value] = STATE(155), - [sym_parenthesized_expression] = STATE(155), - [sym_sub_expression] = STATE(155), - [sym_array_expression] = STATE(155), - [sym_script_block_expression] = STATE(155), - [sym_hash_literal_expression] = STATE(155), - [sym_post_increment_expression] = STATE(155), - [sym_post_decrement_expression] = STATE(155), - [sym_member_access] = STATE(155), - [sym_element_access] = STATE(155), - [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(156), + [sym__value] = STATE(156), + [sym_parenthesized_expression] = STATE(156), + [sym_sub_expression] = STATE(156), + [sym_array_expression] = STATE(156), + [sym_script_block_expression] = STATE(156), + [sym_hash_literal_expression] = STATE(156), + [sym_post_increment_expression] = STATE(156), + [sym_post_decrement_expression] = STATE(156), + [sym_member_access] = STATE(156), + [sym_element_access] = STATE(156), + [sym_invokation_expression] = STATE(156), + [sym_invokation_foreach_expression] = STATE(138), [sym_type_literal] = STATE(3), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(5), @@ -54958,11 +54967,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(21), [sym_braced_variable] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1115), [anon_sym_COMMA] = ACTIONS(19), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(15), [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), [anon_sym_PERCENT] = ACTIONS(65), [aux_sym_foreach_command_token1] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(19), @@ -54976,59 +54995,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(77), [anon_sym_AT_LBRACE] = ACTIONS(79), }, - [257] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(2085), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [243] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1810), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55038,77 +55057,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [258] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(2008), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [244] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1975), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55118,53 +55147,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [259] = { + [245] = { + [sym__literal] = STATE(1031), + [sym_integer_literal] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym_expandable_string_literal] = STATE(1003), + [sym_expandable_here_string_literal] = STATE(1003), + [sym_variable] = STATE(1031), + [sym_unary_expression] = STATE(175), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(1031), + [sym__value] = STATE(1031), + [sym_parenthesized_expression] = STATE(1031), + [sym_sub_expression] = STATE(1031), + [sym_array_expression] = STATE(1031), + [sym_script_block_expression] = STATE(1031), + [sym_hash_literal_expression] = STATE(1031), + [sym_post_increment_expression] = STATE(1031), + [sym_post_decrement_expression] = STATE(1031), + [sym_member_access] = STATE(1031), + [sym_element_access] = STATE(1031), + [sym_invokation_expression] = STATE(1031), + [sym_invokation_foreach_expression] = STATE(1005), + [sym_type_literal] = STATE(245), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hexadecimal_integer_literal] = ACTIONS(1147), + [sym_real_literal] = ACTIONS(1149), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1151), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1153), + [sym_verbatim_string_characters] = ACTIONS(1155), + [sym_verbatim_here_string_characters] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_2_GT] = ACTIONS(97), + [anon_sym_2_GT_GT] = ACTIONS(95), + [anon_sym_3_GT] = ACTIONS(97), + [anon_sym_3_GT_GT] = ACTIONS(95), + [anon_sym_4_GT] = ACTIONS(97), + [anon_sym_4_GT_GT] = ACTIONS(95), + [anon_sym_5_GT] = ACTIONS(97), + [anon_sym_5_GT_GT] = ACTIONS(95), + [anon_sym_6_GT] = ACTIONS(97), + [anon_sym_6_GT_GT] = ACTIONS(95), + [anon_sym_STAR_GT] = ACTIONS(97), + [anon_sym_STAR_GT_GT] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_STAR_GT_AMP1] = ACTIONS(95), + [anon_sym_2_GT_AMP1] = ACTIONS(95), + [anon_sym_3_GT_AMP1] = ACTIONS(95), + [anon_sym_4_GT_AMP1] = ACTIONS(95), + [anon_sym_5_GT_AMP1] = ACTIONS(95), + [anon_sym_6_GT_AMP1] = ACTIONS(95), + [anon_sym_STAR_GT_AMP2] = ACTIONS(95), + [anon_sym_1_GT_AMP2] = ACTIONS(95), + [anon_sym_3_GT_AMP2] = ACTIONS(95), + [anon_sym_4_GT_AMP2] = ACTIONS(95), + [anon_sym_5_GT_AMP2] = ACTIONS(95), + [anon_sym_6_GT_AMP2] = ACTIONS(95), + [aux_sym_comparison_operator_token37] = ACTIONS(1159), + [aux_sym_comparison_operator_token50] = ACTIONS(1159), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1161), + [anon_sym_DOLLAR_CARET] = ACTIONS(1161), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1161), + [anon_sym_DOLLAR_] = ACTIONS(1163), + [aux_sym_variable_token1] = ACTIONS(1163), + [aux_sym_variable_token2] = ACTIONS(1161), + [sym_braced_variable] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_COMMA] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1175), + [anon_sym_AT_LPAREN] = ACTIONS(1177), + [anon_sym_AT_LBRACE] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(95), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + [sym__statement_terminator] = ACTIONS(95), + }, + [246] = { + [sym__literal] = STATE(1034), + [sym_integer_literal] = STATE(1034), + [sym_string_literal] = STATE(1034), + [sym_expandable_string_literal] = STATE(936), + [sym_expandable_here_string_literal] = STATE(936), + [sym_variable] = STATE(1034), + [sym_unary_expression] = STATE(167), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(1034), + [sym__value] = STATE(1034), + [sym_parenthesized_expression] = STATE(1034), + [sym_sub_expression] = STATE(1034), + [sym_array_expression] = STATE(1034), + [sym_script_block_expression] = STATE(1034), + [sym_hash_literal_expression] = STATE(1034), + [sym_post_increment_expression] = STATE(1034), + [sym_post_decrement_expression] = STATE(1034), + [sym_member_access] = STATE(1034), + [sym_element_access] = STATE(1034), + [sym_invokation_expression] = STATE(1034), + [sym_invokation_foreach_expression] = STATE(944), + [sym_type_literal] = STATE(246), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(1181), + [sym_hexadecimal_integer_literal] = ACTIONS(1183), + [sym_real_literal] = ACTIONS(1185), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1187), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1189), + [sym_verbatim_string_characters] = ACTIONS(1191), + [sym_verbatim_here_string_characters] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_2_GT] = ACTIONS(97), + [anon_sym_2_GT_GT] = ACTIONS(95), + [anon_sym_3_GT] = ACTIONS(97), + [anon_sym_3_GT_GT] = ACTIONS(95), + [anon_sym_4_GT] = ACTIONS(97), + [anon_sym_4_GT_GT] = ACTIONS(95), + [anon_sym_5_GT] = ACTIONS(97), + [anon_sym_5_GT_GT] = ACTIONS(95), + [anon_sym_6_GT] = ACTIONS(97), + [anon_sym_6_GT_GT] = ACTIONS(95), + [anon_sym_STAR_GT] = ACTIONS(97), + [anon_sym_STAR_GT_GT] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_STAR_GT_AMP1] = ACTIONS(95), + [anon_sym_2_GT_AMP1] = ACTIONS(95), + [anon_sym_3_GT_AMP1] = ACTIONS(95), + [anon_sym_4_GT_AMP1] = ACTIONS(95), + [anon_sym_5_GT_AMP1] = ACTIONS(95), + [anon_sym_6_GT_AMP1] = ACTIONS(95), + [anon_sym_STAR_GT_AMP2] = ACTIONS(95), + [anon_sym_1_GT_AMP2] = ACTIONS(95), + [anon_sym_3_GT_AMP2] = ACTIONS(95), + [anon_sym_4_GT_AMP2] = ACTIONS(95), + [anon_sym_5_GT_AMP2] = ACTIONS(95), + [anon_sym_6_GT_AMP2] = ACTIONS(95), + [aux_sym_comparison_operator_token37] = ACTIONS(1195), + [aux_sym_comparison_operator_token50] = ACTIONS(1195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1197), + [anon_sym_DOLLAR_CARET] = ACTIONS(1197), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1197), + [anon_sym_DOLLAR_] = ACTIONS(1199), + [aux_sym_variable_token1] = ACTIONS(1199), + [aux_sym_variable_token2] = ACTIONS(1197), + [sym_braced_variable] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_AT_LPAREN] = ACTIONS(1213), + [anon_sym_AT_LBRACE] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(95), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + }, + [247] = { [sym__literal] = STATE(156), [sym_integer_literal] = STATE(156), [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1937), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), - [sym_comparison_expression] = STATE(200), - [sym_additive_expression] = STATE(196), - [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), + [sym_pipeline] = STATE(2014), + [sym_left_assignment_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1695), + [sym_command] = STATE(1334), + [sym_command_invokation_operator] = STATE(586), + [sym_command_name] = STATE(720), + [sym_foreach_command] = STATE(1458), + [sym__expression] = STATE(785), + [sym_logical_expression] = STATE(959), + [sym_bitwise_expression] = STATE(758), + [sym_comparison_expression] = STATE(201), + [sym_additive_expression] = STATE(197), + [sym_multiplicative_expression] = STATE(189), + [sym_format_expression] = STATE(186), + [sym_range_expression] = STATE(188), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(160), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), [sym__primary_expression] = STATE(156), [sym__value] = STATE(156), [sym_parenthesized_expression] = STATE(156), @@ -55177,18 +55395,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_access] = STATE(156), [sym_element_access] = STATE(156), [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(3), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(5), + [sym_real_literal] = ACTIONS(7), + [aux_sym_expandable_string_literal_token1] = ACTIONS(9), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), + [sym_verbatim_string_characters] = ACTIONS(13), + [sym_verbatim_here_string_characters] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(243), + [aux_sym_comparison_operator_token37] = ACTIONS(19), + [aux_sym_comparison_operator_token50] = ACTIONS(19), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), + [anon_sym_DOLLAR_CARET] = ACTIONS(21), + [anon_sym_DOLLAR_QMARK] = ACTIONS(21), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(21), + [sym_braced_variable] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(63), + [aux_sym_command_name_token2] = ACTIONS(63), + [aux_sym_command_name_token3] = ACTIONS(63), + [aux_sym_command_name_token4] = ACTIONS(63), + [aux_sym_command_name_token5] = ACTIONS(63), + [aux_sym_command_name_token6] = ACTIONS(63), + [aux_sym_command_name_token7] = ACTIONS(63), + [aux_sym_command_name_token8] = ACTIONS(63), + [aux_sym_command_name_token9] = ACTIONS(63), + [aux_sym_command_name_token10] = ACTIONS(63), + [aux_sym_command_name_token11] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(65), + [aux_sym_foreach_command_token1] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(19), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), + [anon_sym_AT_LPAREN] = ACTIONS(77), + [anon_sym_AT_LBRACE] = ACTIONS(79), + [sym__statement_terminator] = ACTIONS(1217), + }, + [248] = { + [sym__literal] = STATE(1000), + [sym_integer_literal] = STATE(1000), + [sym_string_literal] = STATE(1000), + [sym_expandable_string_literal] = STATE(1003), + [sym_expandable_here_string_literal] = STATE(1003), + [sym_variable] = STATE(1000), + [sym_unary_expression] = STATE(984), + [sym_expression_with_unary_operator] = STATE(972), + [sym_pre_increment_expression] = STATE(973), + [sym_pre_decrement_expression] = STATE(973), + [sym_cast_expression] = STATE(973), + [sym__primary_expression] = STATE(1000), + [sym__value] = STATE(1000), + [sym_parenthesized_expression] = STATE(1000), + [sym_sub_expression] = STATE(1000), + [sym_array_expression] = STATE(1000), + [sym_script_block_expression] = STATE(1000), + [sym_hash_literal_expression] = STATE(1000), + [sym_post_increment_expression] = STATE(1000), + [sym_post_decrement_expression] = STATE(1000), + [sym_member_access] = STATE(1000), + [sym_element_access] = STATE(1000), + [sym_invokation_expression] = STATE(1000), + [sym_invokation_foreach_expression] = STATE(1005), + [sym_type_literal] = STATE(248), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hexadecimal_integer_literal] = ACTIONS(1147), + [sym_real_literal] = ACTIONS(1219), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1151), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1153), + [sym_verbatim_string_characters] = ACTIONS(1155), + [sym_verbatim_here_string_characters] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_2_GT] = ACTIONS(97), + [anon_sym_2_GT_GT] = ACTIONS(95), + [anon_sym_3_GT] = ACTIONS(97), + [anon_sym_3_GT_GT] = ACTIONS(95), + [anon_sym_4_GT] = ACTIONS(97), + [anon_sym_4_GT_GT] = ACTIONS(95), + [anon_sym_5_GT] = ACTIONS(97), + [anon_sym_5_GT_GT] = ACTIONS(95), + [anon_sym_6_GT] = ACTIONS(97), + [anon_sym_6_GT_GT] = ACTIONS(95), + [anon_sym_STAR_GT] = ACTIONS(97), + [anon_sym_STAR_GT_GT] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_STAR_GT_AMP1] = ACTIONS(95), + [anon_sym_2_GT_AMP1] = ACTIONS(95), + [anon_sym_3_GT_AMP1] = ACTIONS(95), + [anon_sym_4_GT_AMP1] = ACTIONS(95), + [anon_sym_5_GT_AMP1] = ACTIONS(95), + [anon_sym_6_GT_AMP1] = ACTIONS(95), + [anon_sym_STAR_GT_AMP2] = ACTIONS(95), + [anon_sym_1_GT_AMP2] = ACTIONS(95), + [anon_sym_3_GT_AMP2] = ACTIONS(95), + [anon_sym_4_GT_AMP2] = ACTIONS(95), + [anon_sym_5_GT_AMP2] = ACTIONS(95), + [anon_sym_6_GT_AMP2] = ACTIONS(95), + [aux_sym_comparison_operator_token37] = ACTIONS(1221), + [aux_sym_comparison_operator_token50] = ACTIONS(1221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1161), + [anon_sym_DOLLAR_CARET] = ACTIONS(1161), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1161), + [anon_sym_DOLLAR_] = ACTIONS(1163), + [aux_sym_variable_token1] = ACTIONS(1163), + [aux_sym_variable_token2] = ACTIONS(1161), + [sym_braced_variable] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1223), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1175), + [anon_sym_AT_LPAREN] = ACTIONS(1177), + [anon_sym_AT_LBRACE] = ACTIONS(1179), + [anon_sym_DOT2] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(95), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + [sym__statement_terminator] = ACTIONS(95), + }, + [249] = { + [sym__literal] = STATE(1001), + [sym_integer_literal] = STATE(1001), + [sym_string_literal] = STATE(1001), + [sym_expandable_string_literal] = STATE(936), + [sym_expandable_here_string_literal] = STATE(936), + [sym_variable] = STATE(1001), + [sym_unary_expression] = STATE(941), + [sym_expression_with_unary_operator] = STATE(933), + [sym_pre_increment_expression] = STATE(960), + [sym_pre_decrement_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym__primary_expression] = STATE(1001), + [sym__value] = STATE(1001), + [sym_parenthesized_expression] = STATE(1001), + [sym_sub_expression] = STATE(1001), + [sym_array_expression] = STATE(1001), + [sym_script_block_expression] = STATE(1001), + [sym_hash_literal_expression] = STATE(1001), + [sym_post_increment_expression] = STATE(1001), + [sym_post_decrement_expression] = STATE(1001), + [sym_member_access] = STATE(1001), + [sym_element_access] = STATE(1001), + [sym_invokation_expression] = STATE(1001), + [sym_invokation_foreach_expression] = STATE(944), + [sym_type_literal] = STATE(249), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(1181), + [sym_hexadecimal_integer_literal] = ACTIONS(1183), + [sym_real_literal] = ACTIONS(1229), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1187), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1189), + [sym_verbatim_string_characters] = ACTIONS(1191), + [sym_verbatim_here_string_characters] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(97), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_2_GT] = ACTIONS(97), + [anon_sym_2_GT_GT] = ACTIONS(95), + [anon_sym_3_GT] = ACTIONS(97), + [anon_sym_3_GT_GT] = ACTIONS(95), + [anon_sym_4_GT] = ACTIONS(97), + [anon_sym_4_GT_GT] = ACTIONS(95), + [anon_sym_5_GT] = ACTIONS(97), + [anon_sym_5_GT_GT] = ACTIONS(95), + [anon_sym_6_GT] = ACTIONS(97), + [anon_sym_6_GT_GT] = ACTIONS(95), + [anon_sym_STAR_GT] = ACTIONS(97), + [anon_sym_STAR_GT_GT] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(97), + [anon_sym_STAR_GT_AMP1] = ACTIONS(95), + [anon_sym_2_GT_AMP1] = ACTIONS(95), + [anon_sym_3_GT_AMP1] = ACTIONS(95), + [anon_sym_4_GT_AMP1] = ACTIONS(95), + [anon_sym_5_GT_AMP1] = ACTIONS(95), + [anon_sym_6_GT_AMP1] = ACTIONS(95), + [anon_sym_STAR_GT_AMP2] = ACTIONS(95), + [anon_sym_1_GT_AMP2] = ACTIONS(95), + [anon_sym_3_GT_AMP2] = ACTIONS(95), + [anon_sym_4_GT_AMP2] = ACTIONS(95), + [anon_sym_5_GT_AMP2] = ACTIONS(95), + [anon_sym_6_GT_AMP2] = ACTIONS(95), + [aux_sym_comparison_operator_token37] = ACTIONS(1231), + [aux_sym_comparison_operator_token50] = ACTIONS(1231), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1197), + [anon_sym_DOLLAR_CARET] = ACTIONS(1197), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1197), + [anon_sym_DOLLAR_] = ACTIONS(1199), + [aux_sym_variable_token1] = ACTIONS(1199), + [aux_sym_variable_token2] = ACTIONS(1197), + [sym_braced_variable] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_AT_LPAREN] = ACTIONS(1213), + [anon_sym_AT_LBRACE] = ACTIONS(1215), + [anon_sym_DOT2] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(95), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(95), + }, + [250] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1777), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55198,77 +55687,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [260] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1894), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), - [sym_comparison_expression] = STATE(200), - [sym_additive_expression] = STATE(196), + [251] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(2035), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55278,77 +55777,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [261] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1985), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [252] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1700), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55358,77 +55867,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [262] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1871), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [253] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1851), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55438,52 +55957,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [263] = { + [254] = { [sym__literal] = STATE(155), [sym_integer_literal] = STATE(155), [sym_string_literal] = STATE(155), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), [sym_variable] = STATE(155), - [sym_pipeline] = STATE(1776), - [sym_left_assignment_expression] = STATE(1321), - [sym_assignment_expression] = STATE(1786), - [sym_command] = STATE(1374), - [sym_command_invokation_operator] = STATE(733), - [sym_command_name] = STATE(756), - [sym_foreach_command] = STATE(1458), - [sym__expression] = STATE(916), - [sym_logical_expression] = STATE(977), - [sym_bitwise_expression] = STATE(917), - [sym_comparison_expression] = STATE(208), - [sym_additive_expression] = STATE(197), - [sym_multiplicative_expression] = STATE(189), - [sym_format_expression] = STATE(181), - [sym_range_expression] = STATE(182), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(164), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), + [sym_while_condition] = STATE(1883), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), [sym__primary_expression] = STATE(155), [sym__value] = STATE(155), [sym_parenthesized_expression] = STATE(155), @@ -55496,99 +56026,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_access] = STATE(155), [sym_element_access] = STATE(155), [sym_invokation_expression] = STATE(155), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(3), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(5), - [sym_real_literal] = ACTIONS(7), - [aux_sym_expandable_string_literal_token1] = ACTIONS(9), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(11), - [sym_verbatim_string_characters] = ACTIONS(13), - [sym_verbatim_here_string_characters] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(243), - [aux_sym_comparison_operator_token37] = ACTIONS(19), - [aux_sym_comparison_operator_token50] = ACTIONS(19), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(21), - [anon_sym_DOLLAR_CARET] = ACTIONS(21), - [anon_sym_DOLLAR_QMARK] = ACTIONS(21), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(21), - [sym_braced_variable] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(19), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(63), - [anon_sym_PERCENT] = ACTIONS(65), - [aux_sym_foreach_command_token1] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(19), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(75), - [anon_sym_AT_LPAREN] = ACTIONS(77), - [anon_sym_AT_LBRACE] = ACTIONS(79), - [sym__statement_terminator] = ACTIONS(1297), - }, - [264] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1932), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), - [sym_comparison_expression] = STATE(200), - [sym_additive_expression] = STATE(196), - [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55598,77 +56047,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [265] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_while_condition] = STATE(1976), - [sym_pipeline] = STATE(2056), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [255] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_while_condition] = STATE(1932), + [sym_pipeline] = STATE(1853), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55678,76 +56137,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [266] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1730), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [256] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1770), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55757,76 +56226,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [267] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1749), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [257] = { + [sym__literal] = STATE(1031), + [sym_integer_literal] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym_expandable_string_literal] = STATE(1003), + [sym_expandable_here_string_literal] = STATE(1003), + [sym_variable] = STATE(1031), + [sym_array_literal_expression] = STATE(1122), + [sym_unary_expression] = STATE(1110), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(1031), + [sym__value] = STATE(1031), + [sym_parenthesized_expression] = STATE(1031), + [sym_sub_expression] = STATE(1031), + [sym_array_expression] = STATE(1031), + [sym_script_block_expression] = STATE(1031), + [sym_hash_literal_expression] = STATE(1031), + [sym_post_increment_expression] = STATE(1031), + [sym_post_decrement_expression] = STATE(1031), + [sym_member_access] = STATE(1031), + [sym_element_access] = STATE(1031), + [sym_invokation_expression] = STATE(1031), + [sym_invokation_foreach_expression] = STATE(1005), + [sym_type_literal] = STATE(245), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hexadecimal_integer_literal] = ACTIONS(1145), + [sym_real_literal] = ACTIONS(1239), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1241), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1243), + [sym_verbatim_string_characters] = ACTIONS(1245), + [sym_verbatim_here_string_characters] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(1169), + [aux_sym_comparison_operator_token50] = ACTIONS(1169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1163), + [anon_sym_DOLLAR_CARET] = ACTIONS(1163), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1163), + [anon_sym_DOLLAR_] = ACTIONS(1163), + [aux_sym_variable_token1] = ACTIONS(1163), + [aux_sym_variable_token2] = ACTIONS(1163), + [sym_braced_variable] = ACTIONS(1163), + [sym_generic_token] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), + [anon_sym_AT_LPAREN] = ACTIONS(1261), + [anon_sym_AT_LBRACE] = ACTIONS(1263), + [sym__statement_terminator] = ACTIONS(1007), + }, + [258] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1786), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55836,76 +56404,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [268] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1896), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [259] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1717), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55915,76 +56493,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [269] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1757), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [260] = { + [sym__literal] = STATE(1034), + [sym_integer_literal] = STATE(1034), + [sym_string_literal] = STATE(1034), + [sym_expandable_string_literal] = STATE(936), + [sym_expandable_here_string_literal] = STATE(936), + [sym_variable] = STATE(1034), + [sym_array_literal_expression] = STATE(1115), + [sym_unary_expression] = STATE(1107), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(1034), + [sym__value] = STATE(1034), + [sym_parenthesized_expression] = STATE(1034), + [sym_sub_expression] = STATE(1034), + [sym_array_expression] = STATE(1034), + [sym_script_block_expression] = STATE(1034), + [sym_hash_literal_expression] = STATE(1034), + [sym_post_increment_expression] = STATE(1034), + [sym_post_decrement_expression] = STATE(1034), + [sym_member_access] = STATE(1034), + [sym_element_access] = STATE(1034), + [sym_invokation_expression] = STATE(1034), + [sym_invokation_foreach_expression] = STATE(944), + [sym_type_literal] = STATE(246), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1181), + [sym_hexadecimal_integer_literal] = ACTIONS(1181), + [sym_real_literal] = ACTIONS(1265), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1267), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1269), + [sym_verbatim_string_characters] = ACTIONS(1271), + [sym_verbatim_here_string_characters] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_2_GT] = ACTIONS(989), + [anon_sym_2_GT_GT] = ACTIONS(989), + [anon_sym_3_GT] = ACTIONS(989), + [anon_sym_3_GT_GT] = ACTIONS(989), + [anon_sym_4_GT] = ACTIONS(989), + [anon_sym_4_GT_GT] = ACTIONS(989), + [anon_sym_5_GT] = ACTIONS(989), + [anon_sym_5_GT_GT] = ACTIONS(989), + [anon_sym_6_GT] = ACTIONS(989), + [anon_sym_6_GT_GT] = ACTIONS(989), + [anon_sym_STAR_GT] = ACTIONS(989), + [anon_sym_STAR_GT_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_STAR_GT_AMP1] = ACTIONS(989), + [anon_sym_2_GT_AMP1] = ACTIONS(989), + [anon_sym_3_GT_AMP1] = ACTIONS(989), + [anon_sym_4_GT_AMP1] = ACTIONS(989), + [anon_sym_5_GT_AMP1] = ACTIONS(989), + [anon_sym_6_GT_AMP1] = ACTIONS(989), + [anon_sym_STAR_GT_AMP2] = ACTIONS(989), + [anon_sym_1_GT_AMP2] = ACTIONS(989), + [anon_sym_3_GT_AMP2] = ACTIONS(989), + [anon_sym_4_GT_AMP2] = ACTIONS(989), + [anon_sym_5_GT_AMP2] = ACTIONS(989), + [anon_sym_6_GT_AMP2] = ACTIONS(989), + [aux_sym_comparison_operator_token37] = ACTIONS(1205), + [aux_sym_comparison_operator_token50] = ACTIONS(1205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1199), + [anon_sym_DOLLAR_CARET] = ACTIONS(1199), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1199), + [anon_sym_DOLLAR_] = ACTIONS(1199), + [aux_sym_variable_token1] = ACTIONS(1199), + [aux_sym_variable_token2] = ACTIONS(1199), + [sym_braced_variable] = ACTIONS(1199), + [sym_generic_token] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1285), + [anon_sym_AT_LPAREN] = ACTIONS(1287), + [anon_sym_AT_LBRACE] = ACTIONS(1289), + }, + [261] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1980), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -55994,76 +56671,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [270] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1881), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [262] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1978), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56073,76 +56760,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [271] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1779), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [263] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1743), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56152,76 +56849,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [272] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(2005), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [264] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1882), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56231,76 +56938,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [273] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1801), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [265] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1792), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56310,76 +57027,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [274] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1979), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [266] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1814), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56389,76 +57116,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [275] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1912), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [267] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1828), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56468,76 +57205,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [276] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1910), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [268] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1798), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56547,76 +57294,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [277] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1869), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [269] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1836), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56626,76 +57383,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [278] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1914), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [270] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1843), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56705,76 +57472,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [279] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1991), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [271] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1847), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56784,76 +57561,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [280] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1879), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [272] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1881), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56863,76 +57650,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [281] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1883), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [273] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1841), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -56942,76 +57739,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [282] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1888), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [274] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1891), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57021,76 +57828,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [283] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1930), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [275] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1895), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57100,76 +57917,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [284] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1982), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [276] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1900), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57179,76 +58006,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [285] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1938), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [277] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1930), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57258,76 +58095,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [286] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1942), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [278] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1889), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57337,76 +58184,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [287] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1947), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [279] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1938), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57416,155 +58273,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [288] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1974), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [280] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1942), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(4), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), - [aux_sym_comparison_operator_token37] = ACTIONS(143), - [aux_sym_comparison_operator_token50] = ACTIONS(143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), - [anon_sym_DOLLAR_CARET] = ACTIONS(137), - [anon_sym_DOLLAR_QMARK] = ACTIONS(137), - [anon_sym_DOLLAR_] = ACTIONS(137), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(4), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(119), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(1125), + [aux_sym_comparison_operator_token37] = ACTIONS(143), + [aux_sym_comparison_operator_token50] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_DOLLAR_CARET] = ACTIONS(137), + [anon_sym_DOLLAR_QMARK] = ACTIONS(137), + [anon_sym_DOLLAR_] = ACTIONS(137), [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [289] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1877), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [281] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1947), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57574,76 +58451,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), }, - [290] = { - [sym__literal] = STATE(156), - [sym_integer_literal] = STATE(156), - [sym_string_literal] = STATE(156), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(156), - [sym_pipeline] = STATE(1986), - [sym_left_assignment_expression] = STATE(1323), - [sym_assignment_expression] = STATE(2063), - [sym_command] = STATE(1359), - [sym_command_invokation_operator] = STATE(730), - [sym_command_name] = STATE(752), - [sym_foreach_command] = STATE(1430), - [sym__expression] = STATE(912), - [sym_logical_expression] = STATE(983), - [sym_bitwise_expression] = STATE(913), + [282] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1973), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), [sym_comparison_expression] = STATE(200), [sym_additive_expression] = STATE(196), [sym_multiplicative_expression] = STATE(190), - [sym_format_expression] = STATE(180), - [sym_range_expression] = STATE(179), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(162), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(156), - [sym__value] = STATE(156), - [sym_parenthesized_expression] = STATE(156), - [sym_sub_expression] = STATE(156), - [sym_array_expression] = STATE(156), - [sym_script_block_expression] = STATE(156), - [sym_hash_literal_expression] = STATE(156), - [sym_post_increment_expression] = STATE(156), - [sym_post_decrement_expression] = STATE(156), - [sym_member_access] = STATE(156), - [sym_element_access] = STATE(156), - [sym_invokation_expression] = STATE(156), - [sym_invokation_foreach_expression] = STATE(115), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(4), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(119), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(1125), + [aux_sym_comparison_operator_token37] = ACTIONS(143), + [aux_sym_comparison_operator_token50] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_DOLLAR_CARET] = ACTIONS(137), + [anon_sym_DOLLAR_QMARK] = ACTIONS(137), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(137), + [sym_braced_variable] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), + }, + [283] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1788), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(4), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(119), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(1125), + [aux_sym_comparison_operator_token37] = ACTIONS(143), + [aux_sym_comparison_operator_token50] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_DOLLAR_CARET] = ACTIONS(137), + [anon_sym_DOLLAR_QMARK] = ACTIONS(137), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(137), + [sym_braced_variable] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), + }, + [284] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1981), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(4), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(119), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(1125), + [aux_sym_comparison_operator_token37] = ACTIONS(143), + [aux_sym_comparison_operator_token50] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_DOLLAR_CARET] = ACTIONS(137), + [anon_sym_DOLLAR_QMARK] = ACTIONS(137), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(137), + [sym_braced_variable] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), + }, + [285] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1985), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(4), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(119), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(1125), + [aux_sym_comparison_operator_token37] = ACTIONS(143), + [aux_sym_comparison_operator_token50] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_DOLLAR_CARET] = ACTIONS(137), + [anon_sym_DOLLAR_QMARK] = ACTIONS(137), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(137), + [sym_braced_variable] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(15), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), + }, + [286] = { + [sym__literal] = STATE(155), + [sym_integer_literal] = STATE(155), + [sym_string_literal] = STATE(155), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(155), + [sym_pipeline] = STATE(1990), + [sym_left_assignment_expression] = STATE(1269), + [sym_assignment_expression] = STATE(2033), + [sym_command] = STATE(1360), + [sym_command_invokation_operator] = STATE(589), + [sym_command_name] = STATE(716), + [sym_foreach_command] = STATE(1503), + [sym__expression] = STATE(818), + [sym_logical_expression] = STATE(953), + [sym_bitwise_expression] = STATE(753), + [sym_comparison_expression] = STATE(200), + [sym_additive_expression] = STATE(196), + [sym_multiplicative_expression] = STATE(190), + [sym_format_expression] = STATE(185), + [sym_range_expression] = STATE(187), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(157), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(155), + [sym__value] = STATE(155), + [sym_parenthesized_expression] = STATE(155), + [sym_sub_expression] = STATE(155), + [sym_array_expression] = STATE(155), + [sym_script_block_expression] = STATE(155), + [sym_hash_literal_expression] = STATE(155), + [sym_post_increment_expression] = STATE(155), + [sym_post_decrement_expression] = STATE(155), + [sym_member_access] = STATE(155), + [sym_element_access] = STATE(155), + [sym_invokation_expression] = STATE(155), + [sym_invokation_foreach_expression] = STATE(104), [sym_type_literal] = STATE(4), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(119), - [sym_real_literal] = ACTIONS(1269), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1271), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1273), - [sym_verbatim_string_characters] = ACTIONS(1275), - [sym_verbatim_here_string_characters] = ACTIONS(1275), + [sym_real_literal] = ACTIONS(1117), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1119), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1121), + [sym_verbatim_string_characters] = ACTIONS(1123), + [sym_verbatim_here_string_characters] = ACTIONS(1123), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1125), [aux_sym_comparison_operator_token37] = ACTIONS(143), [aux_sym_comparison_operator_token50] = ACTIONS(143), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), @@ -57653,4113 +58896,3543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(137), [aux_sym_variable_token2] = ACTIONS(137), [sym_braced_variable] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(15), - [aux_sym_command_name_token1] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1285), - [aux_sym_foreach_command_token1] = ACTIONS(1285), + [aux_sym_command_name_token1] = ACTIONS(1131), + [aux_sym_command_name_token2] = ACTIONS(1131), + [aux_sym_command_name_token3] = ACTIONS(1131), + [aux_sym_command_name_token4] = ACTIONS(1131), + [aux_sym_command_name_token5] = ACTIONS(1131), + [aux_sym_command_name_token6] = ACTIONS(1131), + [aux_sym_command_name_token7] = ACTIONS(1131), + [aux_sym_command_name_token8] = ACTIONS(1131), + [aux_sym_command_name_token9] = ACTIONS(1131), + [aux_sym_command_name_token10] = ACTIONS(1131), + [aux_sym_command_name_token11] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1133), + [aux_sym_foreach_command_token1] = ACTIONS(1133), [anon_sym_PLUS] = ACTIONS(143), [anon_sym_DASH] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token1] = ACTIONS(143), [anon_sym_BANG] = ACTIONS(143), [aux_sym_expression_with_unary_operator_token2] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1139), + [anon_sym_AT_LPAREN] = ACTIONS(1141), + [anon_sym_AT_LBRACE] = ACTIONS(1143), + }, + [287] = { + [sym_catch_clauses] = STATE(311), + [sym_catch_clause] = STATE(293), + [sym_finally_clause] = STATE(368), + [aux_sym_catch_clauses_repeat1] = STATE(293), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1291), + [sym_hexadecimal_integer_literal] = ACTIONS(1291), + [sym_real_literal] = ACTIONS(1291), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1291), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1291), + [sym_verbatim_string_characters] = ACTIONS(1291), + [sym_verbatim_here_string_characters] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [aux_sym_comparison_operator_token37] = ACTIONS(1291), + [aux_sym_comparison_operator_token50] = ACTIONS(1291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1291), + [anon_sym_DOLLAR_CARET] = ACTIONS(1291), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1291), + [anon_sym_DOLLAR_] = ACTIONS(1291), + [aux_sym_variable_token1] = ACTIONS(1291), + [aux_sym_variable_token2] = ACTIONS(1291), + [sym_braced_variable] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [aux_sym_if_statement_token1] = ACTIONS(1291), + [aux_sym_switch_statement_token1] = ACTIONS(1291), + [aux_sym_foreach_statement_token1] = ACTIONS(1291), + [aux_sym_for_statement_token1] = ACTIONS(1291), + [aux_sym_while_statement_token1] = ACTIONS(1291), + [aux_sym_do_statement_token1] = ACTIONS(1291), + [aux_sym_function_statement_token1] = ACTIONS(1291), + [aux_sym_function_statement_token2] = ACTIONS(1291), + [aux_sym_function_statement_token3] = ACTIONS(1291), + [aux_sym_flow_control_statement_token1] = ACTIONS(1291), + [aux_sym_flow_control_statement_token2] = ACTIONS(1291), + [aux_sym_flow_control_statement_token3] = ACTIONS(1291), + [aux_sym_flow_control_statement_token4] = ACTIONS(1291), + [aux_sym_flow_control_statement_token5] = ACTIONS(1291), + [sym_label] = ACTIONS(1291), + [aux_sym_trap_statement_token1] = ACTIONS(1291), + [aux_sym_try_statement_token1] = ACTIONS(1291), + [aux_sym_catch_clause_token1] = ACTIONS(1293), + [aux_sym_finally_clause_token1] = ACTIONS(1295), + [aux_sym_data_statement_token1] = ACTIONS(1291), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1291), + [aux_sym_parallel_statement_token1] = ACTIONS(1291), + [aux_sym_sequence_statement_token1] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [aux_sym_command_name_token1] = ACTIONS(1291), + [aux_sym_command_name_token2] = ACTIONS(1291), + [aux_sym_command_name_token3] = ACTIONS(1291), + [aux_sym_command_name_token4] = ACTIONS(1291), + [aux_sym_command_name_token5] = ACTIONS(1291), + [aux_sym_command_name_token6] = ACTIONS(1291), + [aux_sym_command_name_token7] = ACTIONS(1291), + [aux_sym_command_name_token8] = ACTIONS(1291), + [aux_sym_command_name_token9] = ACTIONS(1291), + [aux_sym_command_name_token10] = ACTIONS(1291), + [aux_sym_command_name_token11] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [aux_sym_foreach_command_token1] = ACTIONS(1291), + [aux_sym_class_statement_token1] = ACTIONS(1291), + [aux_sym_enum_statement_token1] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), + [anon_sym_AT_LPAREN] = ACTIONS(1291), + [anon_sym_AT_LBRACE] = ACTIONS(1291), + }, + [288] = { + [sym_elseif_clauses] = STATE(312), + [sym_elseif_clause] = STATE(297), + [sym_else_clause] = STATE(334), + [aux_sym_elseif_clauses_repeat1] = STATE(297), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1297), + [sym_hexadecimal_integer_literal] = ACTIONS(1297), + [sym_real_literal] = ACTIONS(1297), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1297), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1297), + [sym_verbatim_string_characters] = ACTIONS(1297), + [sym_verbatim_here_string_characters] = ACTIONS(1297), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [aux_sym_comparison_operator_token37] = ACTIONS(1297), + [aux_sym_comparison_operator_token50] = ACTIONS(1297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1297), + [anon_sym_DOLLAR_CARET] = ACTIONS(1297), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1297), + [anon_sym_DOLLAR_] = ACTIONS(1297), + [aux_sym_variable_token1] = ACTIONS(1297), + [aux_sym_variable_token2] = ACTIONS(1297), + [sym_braced_variable] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [aux_sym_if_statement_token1] = ACTIONS(1297), + [aux_sym_elseif_clause_token1] = ACTIONS(1299), + [aux_sym_else_clause_token1] = ACTIONS(1301), + [aux_sym_switch_statement_token1] = ACTIONS(1297), + [aux_sym_foreach_statement_token1] = ACTIONS(1297), + [aux_sym_for_statement_token1] = ACTIONS(1297), + [aux_sym_while_statement_token1] = ACTIONS(1297), + [aux_sym_do_statement_token1] = ACTIONS(1297), + [aux_sym_function_statement_token1] = ACTIONS(1297), + [aux_sym_function_statement_token2] = ACTIONS(1297), + [aux_sym_function_statement_token3] = ACTIONS(1297), + [aux_sym_flow_control_statement_token1] = ACTIONS(1297), + [aux_sym_flow_control_statement_token2] = ACTIONS(1297), + [aux_sym_flow_control_statement_token3] = ACTIONS(1297), + [aux_sym_flow_control_statement_token4] = ACTIONS(1297), + [aux_sym_flow_control_statement_token5] = ACTIONS(1297), + [sym_label] = ACTIONS(1297), + [aux_sym_trap_statement_token1] = ACTIONS(1297), + [aux_sym_try_statement_token1] = ACTIONS(1297), + [aux_sym_data_statement_token1] = ACTIONS(1297), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1297), + [aux_sym_parallel_statement_token1] = ACTIONS(1297), + [aux_sym_sequence_statement_token1] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [aux_sym_command_name_token1] = ACTIONS(1297), + [aux_sym_command_name_token2] = ACTIONS(1297), + [aux_sym_command_name_token3] = ACTIONS(1297), + [aux_sym_command_name_token4] = ACTIONS(1297), + [aux_sym_command_name_token5] = ACTIONS(1297), + [aux_sym_command_name_token6] = ACTIONS(1297), + [aux_sym_command_name_token7] = ACTIONS(1297), + [aux_sym_command_name_token8] = ACTIONS(1297), + [aux_sym_command_name_token9] = ACTIONS(1297), + [aux_sym_command_name_token10] = ACTIONS(1297), + [aux_sym_command_name_token11] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [aux_sym_foreach_command_token1] = ACTIONS(1297), + [aux_sym_class_statement_token1] = ACTIONS(1297), + [aux_sym_enum_statement_token1] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1297), + [anon_sym_AT_LPAREN] = ACTIONS(1297), + [anon_sym_AT_LBRACE] = ACTIONS(1297), + }, + [289] = { + [sym_catch_clauses] = STATE(320), + [sym_catch_clause] = STATE(300), + [sym_finally_clause] = STATE(424), + [aux_sym_catch_clauses_repeat1] = STATE(300), + [ts_builtin_sym_end] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1291), + [sym_hexadecimal_integer_literal] = ACTIONS(1291), + [sym_real_literal] = ACTIONS(1291), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1291), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1291), + [sym_verbatim_string_characters] = ACTIONS(1291), + [sym_verbatim_here_string_characters] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [aux_sym_comparison_operator_token37] = ACTIONS(1291), + [aux_sym_comparison_operator_token50] = ACTIONS(1291), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1291), + [anon_sym_DOLLAR_CARET] = ACTIONS(1291), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1291), + [anon_sym_DOLLAR_] = ACTIONS(1291), + [aux_sym_variable_token1] = ACTIONS(1291), + [aux_sym_variable_token2] = ACTIONS(1291), + [sym_braced_variable] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1291), + [aux_sym_if_statement_token1] = ACTIONS(1291), + [aux_sym_switch_statement_token1] = ACTIONS(1291), + [aux_sym_foreach_statement_token1] = ACTIONS(1291), + [aux_sym_for_statement_token1] = ACTIONS(1291), + [aux_sym_while_statement_token1] = ACTIONS(1291), + [aux_sym_do_statement_token1] = ACTIONS(1291), + [aux_sym_function_statement_token1] = ACTIONS(1291), + [aux_sym_function_statement_token2] = ACTIONS(1291), + [aux_sym_function_statement_token3] = ACTIONS(1291), + [aux_sym_flow_control_statement_token1] = ACTIONS(1291), + [aux_sym_flow_control_statement_token2] = ACTIONS(1291), + [aux_sym_flow_control_statement_token3] = ACTIONS(1291), + [aux_sym_flow_control_statement_token4] = ACTIONS(1291), + [aux_sym_flow_control_statement_token5] = ACTIONS(1291), + [sym_label] = ACTIONS(1291), + [aux_sym_trap_statement_token1] = ACTIONS(1291), + [aux_sym_try_statement_token1] = ACTIONS(1291), + [aux_sym_catch_clause_token1] = ACTIONS(1305), + [aux_sym_finally_clause_token1] = ACTIONS(1307), + [aux_sym_data_statement_token1] = ACTIONS(1291), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1291), + [aux_sym_parallel_statement_token1] = ACTIONS(1291), + [aux_sym_sequence_statement_token1] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [aux_sym_command_name_token1] = ACTIONS(1291), + [aux_sym_command_name_token2] = ACTIONS(1291), + [aux_sym_command_name_token3] = ACTIONS(1291), + [aux_sym_command_name_token4] = ACTIONS(1291), + [aux_sym_command_name_token5] = ACTIONS(1291), + [aux_sym_command_name_token6] = ACTIONS(1291), + [aux_sym_command_name_token7] = ACTIONS(1291), + [aux_sym_command_name_token8] = ACTIONS(1291), + [aux_sym_command_name_token9] = ACTIONS(1291), + [aux_sym_command_name_token10] = ACTIONS(1291), + [aux_sym_command_name_token11] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [aux_sym_foreach_command_token1] = ACTIONS(1291), + [aux_sym_class_statement_token1] = ACTIONS(1291), + [aux_sym_enum_statement_token1] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1291), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1291), - [anon_sym_AT_LPAREN] = ACTIONS(1293), - [anon_sym_AT_LBRACE] = ACTIONS(1295), + [anon_sym_AT_LPAREN] = ACTIONS(1291), + [anon_sym_AT_LBRACE] = ACTIONS(1291), + }, + [290] = { + [sym_elseif_clauses] = STATE(318), + [sym_elseif_clause] = STATE(302), + [sym_else_clause] = STATE(418), + [aux_sym_elseif_clauses_repeat1] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1297), + [sym_hexadecimal_integer_literal] = ACTIONS(1297), + [sym_real_literal] = ACTIONS(1297), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1297), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1297), + [sym_verbatim_string_characters] = ACTIONS(1297), + [sym_verbatim_here_string_characters] = ACTIONS(1297), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [aux_sym_comparison_operator_token37] = ACTIONS(1297), + [aux_sym_comparison_operator_token50] = ACTIONS(1297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1297), + [anon_sym_DOLLAR_CARET] = ACTIONS(1297), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1297), + [anon_sym_DOLLAR_] = ACTIONS(1297), + [aux_sym_variable_token1] = ACTIONS(1297), + [aux_sym_variable_token2] = ACTIONS(1297), + [sym_braced_variable] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [aux_sym_if_statement_token1] = ACTIONS(1297), + [aux_sym_elseif_clause_token1] = ACTIONS(1311), + [aux_sym_else_clause_token1] = ACTIONS(1313), + [aux_sym_switch_statement_token1] = ACTIONS(1297), + [aux_sym_foreach_statement_token1] = ACTIONS(1297), + [aux_sym_for_statement_token1] = ACTIONS(1297), + [aux_sym_while_statement_token1] = ACTIONS(1297), + [aux_sym_do_statement_token1] = ACTIONS(1297), + [aux_sym_function_statement_token1] = ACTIONS(1297), + [aux_sym_function_statement_token2] = ACTIONS(1297), + [aux_sym_function_statement_token3] = ACTIONS(1297), + [aux_sym_flow_control_statement_token1] = ACTIONS(1297), + [aux_sym_flow_control_statement_token2] = ACTIONS(1297), + [aux_sym_flow_control_statement_token3] = ACTIONS(1297), + [aux_sym_flow_control_statement_token4] = ACTIONS(1297), + [aux_sym_flow_control_statement_token5] = ACTIONS(1297), + [sym_label] = ACTIONS(1297), + [aux_sym_trap_statement_token1] = ACTIONS(1297), + [aux_sym_try_statement_token1] = ACTIONS(1297), + [aux_sym_data_statement_token1] = ACTIONS(1297), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1297), + [aux_sym_parallel_statement_token1] = ACTIONS(1297), + [aux_sym_sequence_statement_token1] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [aux_sym_command_name_token1] = ACTIONS(1297), + [aux_sym_command_name_token2] = ACTIONS(1297), + [aux_sym_command_name_token3] = ACTIONS(1297), + [aux_sym_command_name_token4] = ACTIONS(1297), + [aux_sym_command_name_token5] = ACTIONS(1297), + [aux_sym_command_name_token6] = ACTIONS(1297), + [aux_sym_command_name_token7] = ACTIONS(1297), + [aux_sym_command_name_token8] = ACTIONS(1297), + [aux_sym_command_name_token9] = ACTIONS(1297), + [aux_sym_command_name_token10] = ACTIONS(1297), + [aux_sym_command_name_token11] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [aux_sym_foreach_command_token1] = ACTIONS(1297), + [aux_sym_class_statement_token1] = ACTIONS(1297), + [aux_sym_enum_statement_token1] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1297), + [anon_sym_AT_LPAREN] = ACTIONS(1297), + [anon_sym_AT_LBRACE] = ACTIONS(1297), }, [291] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(745), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DOT2] = ACTIONS(1299), - [anon_sym_COLON_COLON] = ACTIONS(1301), - [anon_sym_RBRACK] = ACTIONS(651), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1315), + [sym_hexadecimal_integer_literal] = ACTIONS(1315), + [sym_real_literal] = ACTIONS(1315), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1315), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1315), + [sym_verbatim_string_characters] = ACTIONS(1315), + [sym_verbatim_here_string_characters] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [aux_sym_comparison_operator_token37] = ACTIONS(1315), + [aux_sym_comparison_operator_token50] = ACTIONS(1315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1315), + [anon_sym_DOLLAR_CARET] = ACTIONS(1315), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1315), + [anon_sym_DOLLAR_] = ACTIONS(1315), + [aux_sym_variable_token1] = ACTIONS(1315), + [aux_sym_variable_token2] = ACTIONS(1315), + [sym_braced_variable] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [aux_sym_param_block_token1] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [aux_sym_block_name_token1] = ACTIONS(1315), + [aux_sym_block_name_token2] = ACTIONS(1315), + [aux_sym_block_name_token3] = ACTIONS(1315), + [aux_sym_block_name_token4] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [aux_sym_if_statement_token1] = ACTIONS(1315), + [aux_sym_switch_statement_token1] = ACTIONS(1315), + [aux_sym_foreach_statement_token1] = ACTIONS(1315), + [aux_sym_for_statement_token1] = ACTIONS(1315), + [aux_sym_while_statement_token1] = ACTIONS(1315), + [aux_sym_do_statement_token1] = ACTIONS(1315), + [aux_sym_function_statement_token1] = ACTIONS(1315), + [aux_sym_function_statement_token2] = ACTIONS(1315), + [aux_sym_function_statement_token3] = ACTIONS(1315), + [aux_sym_flow_control_statement_token1] = ACTIONS(1315), + [aux_sym_flow_control_statement_token2] = ACTIONS(1315), + [aux_sym_flow_control_statement_token3] = ACTIONS(1315), + [aux_sym_flow_control_statement_token4] = ACTIONS(1315), + [aux_sym_flow_control_statement_token5] = ACTIONS(1315), + [sym_label] = ACTIONS(1315), + [aux_sym_trap_statement_token1] = ACTIONS(1315), + [aux_sym_try_statement_token1] = ACTIONS(1315), + [aux_sym_data_statement_token1] = ACTIONS(1315), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1315), + [aux_sym_parallel_statement_token1] = ACTIONS(1315), + [aux_sym_sequence_statement_token1] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [aux_sym_command_name_token1] = ACTIONS(1315), + [aux_sym_command_name_token2] = ACTIONS(1315), + [aux_sym_command_name_token3] = ACTIONS(1315), + [aux_sym_command_name_token4] = ACTIONS(1315), + [aux_sym_command_name_token5] = ACTIONS(1315), + [aux_sym_command_name_token6] = ACTIONS(1315), + [aux_sym_command_name_token7] = ACTIONS(1315), + [aux_sym_command_name_token8] = ACTIONS(1315), + [aux_sym_command_name_token9] = ACTIONS(1315), + [aux_sym_command_name_token10] = ACTIONS(1315), + [aux_sym_command_name_token11] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1315), + [aux_sym_foreach_command_token1] = ACTIONS(1315), + [aux_sym_class_statement_token1] = ACTIONS(1315), + [aux_sym_enum_statement_token1] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1315), + [anon_sym_AT_LPAREN] = ACTIONS(1315), + [anon_sym_AT_LBRACE] = ACTIONS(1315), + [sym__statement_terminator] = ACTIONS(1317), }, [292] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(733), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DOT2] = ACTIONS(1303), - [anon_sym_COLON_COLON] = ACTIONS(1305), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), - [sym__statement_terminator] = ACTIONS(651), + [sym_catch_clause] = STATE(292), + [aux_sym_catch_clauses_repeat1] = STATE(292), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1319), + [sym_hexadecimal_integer_literal] = ACTIONS(1319), + [sym_real_literal] = ACTIONS(1319), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1319), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1319), + [sym_verbatim_string_characters] = ACTIONS(1319), + [sym_verbatim_here_string_characters] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [aux_sym_comparison_operator_token37] = ACTIONS(1319), + [aux_sym_comparison_operator_token50] = ACTIONS(1319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1319), + [anon_sym_DOLLAR_CARET] = ACTIONS(1319), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1319), + [anon_sym_DOLLAR_] = ACTIONS(1319), + [aux_sym_variable_token1] = ACTIONS(1319), + [aux_sym_variable_token2] = ACTIONS(1319), + [sym_braced_variable] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [aux_sym_if_statement_token1] = ACTIONS(1319), + [aux_sym_switch_statement_token1] = ACTIONS(1319), + [aux_sym_foreach_statement_token1] = ACTIONS(1319), + [aux_sym_for_statement_token1] = ACTIONS(1319), + [aux_sym_while_statement_token1] = ACTIONS(1319), + [aux_sym_do_statement_token1] = ACTIONS(1319), + [aux_sym_function_statement_token1] = ACTIONS(1319), + [aux_sym_function_statement_token2] = ACTIONS(1319), + [aux_sym_function_statement_token3] = ACTIONS(1319), + [aux_sym_flow_control_statement_token1] = ACTIONS(1319), + [aux_sym_flow_control_statement_token2] = ACTIONS(1319), + [aux_sym_flow_control_statement_token3] = ACTIONS(1319), + [aux_sym_flow_control_statement_token4] = ACTIONS(1319), + [aux_sym_flow_control_statement_token5] = ACTIONS(1319), + [sym_label] = ACTIONS(1319), + [aux_sym_trap_statement_token1] = ACTIONS(1319), + [aux_sym_try_statement_token1] = ACTIONS(1319), + [aux_sym_catch_clause_token1] = ACTIONS(1321), + [aux_sym_finally_clause_token1] = ACTIONS(1319), + [aux_sym_data_statement_token1] = ACTIONS(1319), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1319), + [aux_sym_parallel_statement_token1] = ACTIONS(1319), + [aux_sym_sequence_statement_token1] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [aux_sym_command_name_token1] = ACTIONS(1319), + [aux_sym_command_name_token2] = ACTIONS(1319), + [aux_sym_command_name_token3] = ACTIONS(1319), + [aux_sym_command_name_token4] = ACTIONS(1319), + [aux_sym_command_name_token5] = ACTIONS(1319), + [aux_sym_command_name_token6] = ACTIONS(1319), + [aux_sym_command_name_token7] = ACTIONS(1319), + [aux_sym_command_name_token8] = ACTIONS(1319), + [aux_sym_command_name_token9] = ACTIONS(1319), + [aux_sym_command_name_token10] = ACTIONS(1319), + [aux_sym_command_name_token11] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [aux_sym_foreach_command_token1] = ACTIONS(1319), + [aux_sym_class_statement_token1] = ACTIONS(1319), + [aux_sym_enum_statement_token1] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), + [anon_sym_AT_LPAREN] = ACTIONS(1319), + [anon_sym_AT_LBRACE] = ACTIONS(1319), }, [293] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(745), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(749), - [anon_sym_DOT2] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1309), - [anon_sym_RBRACK] = ACTIONS(651), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), + [sym_catch_clause] = STATE(292), + [aux_sym_catch_clauses_repeat1] = STATE(292), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1324), + [sym_hexadecimal_integer_literal] = ACTIONS(1324), + [sym_real_literal] = ACTIONS(1324), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1324), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1324), + [sym_verbatim_string_characters] = ACTIONS(1324), + [sym_verbatim_here_string_characters] = ACTIONS(1324), + [anon_sym_DOT] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [aux_sym_comparison_operator_token37] = ACTIONS(1324), + [aux_sym_comparison_operator_token50] = ACTIONS(1324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1324), + [anon_sym_DOLLAR_CARET] = ACTIONS(1324), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_] = ACTIONS(1324), + [aux_sym_variable_token1] = ACTIONS(1324), + [aux_sym_variable_token2] = ACTIONS(1324), + [sym_braced_variable] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [aux_sym_if_statement_token1] = ACTIONS(1324), + [aux_sym_switch_statement_token1] = ACTIONS(1324), + [aux_sym_foreach_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token1] = ACTIONS(1324), + [aux_sym_while_statement_token1] = ACTIONS(1324), + [aux_sym_do_statement_token1] = ACTIONS(1324), + [aux_sym_function_statement_token1] = ACTIONS(1324), + [aux_sym_function_statement_token2] = ACTIONS(1324), + [aux_sym_function_statement_token3] = ACTIONS(1324), + [aux_sym_flow_control_statement_token1] = ACTIONS(1324), + [aux_sym_flow_control_statement_token2] = ACTIONS(1324), + [aux_sym_flow_control_statement_token3] = ACTIONS(1324), + [aux_sym_flow_control_statement_token4] = ACTIONS(1324), + [aux_sym_flow_control_statement_token5] = ACTIONS(1324), + [sym_label] = ACTIONS(1324), + [aux_sym_trap_statement_token1] = ACTIONS(1324), + [aux_sym_try_statement_token1] = ACTIONS(1324), + [aux_sym_catch_clause_token1] = ACTIONS(1293), + [aux_sym_finally_clause_token1] = ACTIONS(1324), + [aux_sym_data_statement_token1] = ACTIONS(1324), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1324), + [aux_sym_parallel_statement_token1] = ACTIONS(1324), + [aux_sym_sequence_statement_token1] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [aux_sym_command_name_token1] = ACTIONS(1324), + [aux_sym_command_name_token2] = ACTIONS(1324), + [aux_sym_command_name_token3] = ACTIONS(1324), + [aux_sym_command_name_token4] = ACTIONS(1324), + [aux_sym_command_name_token5] = ACTIONS(1324), + [aux_sym_command_name_token6] = ACTIONS(1324), + [aux_sym_command_name_token7] = ACTIONS(1324), + [aux_sym_command_name_token8] = ACTIONS(1324), + [aux_sym_command_name_token9] = ACTIONS(1324), + [aux_sym_command_name_token10] = ACTIONS(1324), + [aux_sym_command_name_token11] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [aux_sym_foreach_command_token1] = ACTIONS(1324), + [aux_sym_class_statement_token1] = ACTIONS(1324), + [aux_sym_enum_statement_token1] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_AT_LPAREN] = ACTIONS(1324), + [anon_sym_AT_LBRACE] = ACTIONS(1324), }, [294] = { - [sym_comment] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(733), - [aux_sym_comparison_operator_token1] = ACTIONS(651), - [aux_sym_comparison_operator_token2] = ACTIONS(651), - [aux_sym_comparison_operator_token3] = ACTIONS(651), - [aux_sym_comparison_operator_token4] = ACTIONS(651), - [aux_sym_comparison_operator_token5] = ACTIONS(651), - [aux_sym_comparison_operator_token6] = ACTIONS(651), - [aux_sym_comparison_operator_token7] = ACTIONS(651), - [aux_sym_comparison_operator_token8] = ACTIONS(651), - [aux_sym_comparison_operator_token9] = ACTIONS(651), - [aux_sym_comparison_operator_token10] = ACTIONS(651), - [aux_sym_comparison_operator_token11] = ACTIONS(651), - [aux_sym_comparison_operator_token12] = ACTIONS(651), - [aux_sym_comparison_operator_token13] = ACTIONS(651), - [aux_sym_comparison_operator_token14] = ACTIONS(651), - [aux_sym_comparison_operator_token15] = ACTIONS(651), - [aux_sym_comparison_operator_token16] = ACTIONS(651), - [aux_sym_comparison_operator_token17] = ACTIONS(651), - [aux_sym_comparison_operator_token18] = ACTIONS(651), - [aux_sym_comparison_operator_token19] = ACTIONS(651), - [aux_sym_comparison_operator_token20] = ACTIONS(651), - [aux_sym_comparison_operator_token21] = ACTIONS(651), - [aux_sym_comparison_operator_token22] = ACTIONS(651), - [aux_sym_comparison_operator_token23] = ACTIONS(651), - [aux_sym_comparison_operator_token24] = ACTIONS(651), - [aux_sym_comparison_operator_token25] = ACTIONS(651), - [aux_sym_comparison_operator_token26] = ACTIONS(651), - [aux_sym_comparison_operator_token27] = ACTIONS(651), - [aux_sym_comparison_operator_token28] = ACTIONS(653), - [aux_sym_comparison_operator_token29] = ACTIONS(651), - [aux_sym_comparison_operator_token30] = ACTIONS(651), - [aux_sym_comparison_operator_token31] = ACTIONS(651), - [aux_sym_comparison_operator_token32] = ACTIONS(651), - [aux_sym_comparison_operator_token33] = ACTIONS(651), - [aux_sym_comparison_operator_token34] = ACTIONS(653), - [aux_sym_comparison_operator_token35] = ACTIONS(651), - [aux_sym_comparison_operator_token36] = ACTIONS(651), - [aux_sym_comparison_operator_token37] = ACTIONS(651), - [aux_sym_comparison_operator_token38] = ACTIONS(651), - [aux_sym_comparison_operator_token39] = ACTIONS(651), - [aux_sym_comparison_operator_token40] = ACTIONS(651), - [aux_sym_comparison_operator_token41] = ACTIONS(651), - [aux_sym_comparison_operator_token42] = ACTIONS(651), - [aux_sym_comparison_operator_token43] = ACTIONS(651), - [aux_sym_comparison_operator_token44] = ACTIONS(651), - [aux_sym_comparison_operator_token45] = ACTIONS(651), - [aux_sym_comparison_operator_token46] = ACTIONS(651), - [aux_sym_comparison_operator_token47] = ACTIONS(651), - [aux_sym_comparison_operator_token48] = ACTIONS(651), - [aux_sym_comparison_operator_token49] = ACTIONS(651), - [aux_sym_comparison_operator_token50] = ACTIONS(651), - [aux_sym_format_operator_token1] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [aux_sym_logical_expression_token1] = ACTIONS(651), - [aux_sym_logical_expression_token2] = ACTIONS(651), - [aux_sym_logical_expression_token3] = ACTIONS(651), - [aux_sym_bitwise_expression_token1] = ACTIONS(651), - [aux_sym_bitwise_expression_token2] = ACTIONS(651), - [aux_sym_bitwise_expression_token3] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_BSLASH] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_DOT_DOT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(737), - [anon_sym_DOT2] = ACTIONS(1311), - [anon_sym_COLON_COLON] = ACTIONS(1313), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), - [sym__statement_terminator] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1326), + [sym_hexadecimal_integer_literal] = ACTIONS(1326), + [sym_real_literal] = ACTIONS(1326), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1326), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1326), + [sym_verbatim_string_characters] = ACTIONS(1326), + [sym_verbatim_here_string_characters] = ACTIONS(1326), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [aux_sym_comparison_operator_token37] = ACTIONS(1326), + [aux_sym_comparison_operator_token50] = ACTIONS(1326), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1326), + [anon_sym_DOLLAR_CARET] = ACTIONS(1326), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_] = ACTIONS(1326), + [aux_sym_variable_token1] = ACTIONS(1326), + [aux_sym_variable_token2] = ACTIONS(1326), + [sym_braced_variable] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [aux_sym_param_block_token1] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_COMMA] = ACTIONS(1326), + [aux_sym_block_name_token1] = ACTIONS(1326), + [aux_sym_block_name_token2] = ACTIONS(1326), + [aux_sym_block_name_token3] = ACTIONS(1326), + [aux_sym_block_name_token4] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_function_statement_token1] = ACTIONS(1326), + [aux_sym_function_statement_token2] = ACTIONS(1326), + [aux_sym_function_statement_token3] = ACTIONS(1326), + [aux_sym_flow_control_statement_token1] = ACTIONS(1326), + [aux_sym_flow_control_statement_token2] = ACTIONS(1326), + [aux_sym_flow_control_statement_token3] = ACTIONS(1326), + [aux_sym_flow_control_statement_token4] = ACTIONS(1326), + [aux_sym_flow_control_statement_token5] = ACTIONS(1326), + [sym_label] = ACTIONS(1326), + [aux_sym_trap_statement_token1] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_data_statement_token1] = ACTIONS(1326), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1326), + [aux_sym_parallel_statement_token1] = ACTIONS(1326), + [aux_sym_sequence_statement_token1] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [aux_sym_command_name_token1] = ACTIONS(1326), + [aux_sym_command_name_token2] = ACTIONS(1326), + [aux_sym_command_name_token3] = ACTIONS(1326), + [aux_sym_command_name_token4] = ACTIONS(1326), + [aux_sym_command_name_token5] = ACTIONS(1326), + [aux_sym_command_name_token6] = ACTIONS(1326), + [aux_sym_command_name_token7] = ACTIONS(1326), + [aux_sym_command_name_token8] = ACTIONS(1326), + [aux_sym_command_name_token9] = ACTIONS(1326), + [aux_sym_command_name_token10] = ACTIONS(1326), + [aux_sym_command_name_token11] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [aux_sym_foreach_command_token1] = ACTIONS(1326), + [aux_sym_class_statement_token1] = ACTIONS(1326), + [aux_sym_enum_statement_token1] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_AT_LPAREN] = ACTIONS(1326), + [anon_sym_AT_LBRACE] = ACTIONS(1326), + [sym__statement_terminator] = ACTIONS(1328), }, [295] = { - [aux_sym_array_literal_expression_repeat1] = STATE(295), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(775), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_RBRACK] = ACTIONS(775), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1330), + [sym_hexadecimal_integer_literal] = ACTIONS(1330), + [sym_real_literal] = ACTIONS(1330), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1330), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1330), + [sym_verbatim_string_characters] = ACTIONS(1330), + [sym_verbatim_here_string_characters] = ACTIONS(1330), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [aux_sym_comparison_operator_token37] = ACTIONS(1330), + [aux_sym_comparison_operator_token50] = ACTIONS(1330), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1330), + [anon_sym_DOLLAR_CARET] = ACTIONS(1330), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_] = ACTIONS(1330), + [aux_sym_variable_token1] = ACTIONS(1330), + [aux_sym_variable_token2] = ACTIONS(1330), + [sym_braced_variable] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [aux_sym_param_block_token1] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1330), + [aux_sym_block_name_token1] = ACTIONS(1330), + [aux_sym_block_name_token2] = ACTIONS(1330), + [aux_sym_block_name_token3] = ACTIONS(1330), + [aux_sym_block_name_token4] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [aux_sym_if_statement_token1] = ACTIONS(1330), + [aux_sym_switch_statement_token1] = ACTIONS(1330), + [aux_sym_foreach_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token1] = ACTIONS(1330), + [aux_sym_while_statement_token1] = ACTIONS(1330), + [aux_sym_do_statement_token1] = ACTIONS(1330), + [aux_sym_function_statement_token1] = ACTIONS(1330), + [aux_sym_function_statement_token2] = ACTIONS(1330), + [aux_sym_function_statement_token3] = ACTIONS(1330), + [aux_sym_flow_control_statement_token1] = ACTIONS(1330), + [aux_sym_flow_control_statement_token2] = ACTIONS(1330), + [aux_sym_flow_control_statement_token3] = ACTIONS(1330), + [aux_sym_flow_control_statement_token4] = ACTIONS(1330), + [aux_sym_flow_control_statement_token5] = ACTIONS(1330), + [sym_label] = ACTIONS(1330), + [aux_sym_trap_statement_token1] = ACTIONS(1330), + [aux_sym_try_statement_token1] = ACTIONS(1330), + [aux_sym_data_statement_token1] = ACTIONS(1330), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1330), + [aux_sym_parallel_statement_token1] = ACTIONS(1330), + [aux_sym_sequence_statement_token1] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [aux_sym_command_name_token1] = ACTIONS(1330), + [aux_sym_command_name_token2] = ACTIONS(1330), + [aux_sym_command_name_token3] = ACTIONS(1330), + [aux_sym_command_name_token4] = ACTIONS(1330), + [aux_sym_command_name_token5] = ACTIONS(1330), + [aux_sym_command_name_token6] = ACTIONS(1330), + [aux_sym_command_name_token7] = ACTIONS(1330), + [aux_sym_command_name_token8] = ACTIONS(1330), + [aux_sym_command_name_token9] = ACTIONS(1330), + [aux_sym_command_name_token10] = ACTIONS(1330), + [aux_sym_command_name_token11] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [aux_sym_foreach_command_token1] = ACTIONS(1330), + [aux_sym_class_statement_token1] = ACTIONS(1330), + [aux_sym_enum_statement_token1] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_AT_LPAREN] = ACTIONS(1330), + [anon_sym_AT_LBRACE] = ACTIONS(1330), + [sym__statement_terminator] = ACTIONS(1332), }, [296] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1555), - [sym_logical_expression] = STATE(1392), - [sym_bitwise_expression] = STATE(1310), - [sym_comparison_expression] = STATE(556), - [sym_additive_expression] = STATE(526), - [sym_multiplicative_expression] = STATE(371), - [sym_format_expression] = STATE(320), - [sym_range_expression] = STATE(321), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(298), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), - [sym_attribute_arguments] = STATE(1874), - [sym_attribute_argument] = STATE(1476), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [sym_simple_name] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [aux_sym_script_block_repeat1] = STATE(296), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1334), + [sym_hexadecimal_integer_literal] = ACTIONS(1334), + [sym_real_literal] = ACTIONS(1334), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1334), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1334), + [sym_verbatim_string_characters] = ACTIONS(1334), + [sym_verbatim_here_string_characters] = ACTIONS(1334), + [anon_sym_DOT] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1334), + [aux_sym_comparison_operator_token37] = ACTIONS(1334), + [aux_sym_comparison_operator_token50] = ACTIONS(1334), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1334), + [anon_sym_DOLLAR_CARET] = ACTIONS(1334), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1334), + [anon_sym_DOLLAR_] = ACTIONS(1334), + [aux_sym_variable_token1] = ACTIONS(1334), + [aux_sym_variable_token2] = ACTIONS(1334), + [sym_braced_variable] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1334), + [aux_sym_block_name_token1] = ACTIONS(1334), + [aux_sym_block_name_token2] = ACTIONS(1334), + [aux_sym_block_name_token3] = ACTIONS(1334), + [aux_sym_block_name_token4] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [aux_sym_if_statement_token1] = ACTIONS(1334), + [aux_sym_switch_statement_token1] = ACTIONS(1334), + [aux_sym_foreach_statement_token1] = ACTIONS(1334), + [aux_sym_for_statement_token1] = ACTIONS(1334), + [aux_sym_while_statement_token1] = ACTIONS(1334), + [aux_sym_do_statement_token1] = ACTIONS(1334), + [aux_sym_function_statement_token1] = ACTIONS(1334), + [aux_sym_function_statement_token2] = ACTIONS(1334), + [aux_sym_function_statement_token3] = ACTIONS(1334), + [aux_sym_flow_control_statement_token1] = ACTIONS(1334), + [aux_sym_flow_control_statement_token2] = ACTIONS(1334), + [aux_sym_flow_control_statement_token3] = ACTIONS(1334), + [aux_sym_flow_control_statement_token4] = ACTIONS(1334), + [aux_sym_flow_control_statement_token5] = ACTIONS(1334), + [sym_label] = ACTIONS(1334), + [aux_sym_trap_statement_token1] = ACTIONS(1334), + [aux_sym_try_statement_token1] = ACTIONS(1334), + [aux_sym_data_statement_token1] = ACTIONS(1334), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1334), + [aux_sym_parallel_statement_token1] = ACTIONS(1334), + [aux_sym_sequence_statement_token1] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [aux_sym_command_name_token1] = ACTIONS(1334), + [aux_sym_command_name_token2] = ACTIONS(1334), + [aux_sym_command_name_token3] = ACTIONS(1334), + [aux_sym_command_name_token4] = ACTIONS(1334), + [aux_sym_command_name_token5] = ACTIONS(1334), + [aux_sym_command_name_token6] = ACTIONS(1334), + [aux_sym_command_name_token7] = ACTIONS(1334), + [aux_sym_command_name_token8] = ACTIONS(1334), + [aux_sym_command_name_token9] = ACTIONS(1334), + [aux_sym_command_name_token10] = ACTIONS(1334), + [aux_sym_command_name_token11] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [aux_sym_foreach_command_token1] = ACTIONS(1334), + [aux_sym_class_statement_token1] = ACTIONS(1334), + [aux_sym_enum_statement_token1] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), + [anon_sym_AT_LPAREN] = ACTIONS(1334), + [anon_sym_AT_LBRACE] = ACTIONS(1334), }, [297] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1555), - [sym_logical_expression] = STATE(1392), - [sym_bitwise_expression] = STATE(1310), - [sym_comparison_expression] = STATE(556), - [sym_additive_expression] = STATE(526), - [sym_multiplicative_expression] = STATE(371), - [sym_format_expression] = STATE(320), - [sym_range_expression] = STATE(321), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(298), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), - [sym_attribute_arguments] = STATE(2075), - [sym_attribute_argument] = STATE(1476), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [sym_simple_name] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [sym_elseif_clause] = STATE(298), + [aux_sym_elseif_clauses_repeat1] = STATE(298), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1339), + [sym_hexadecimal_integer_literal] = ACTIONS(1339), + [sym_real_literal] = ACTIONS(1339), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1339), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1339), + [sym_verbatim_string_characters] = ACTIONS(1339), + [sym_verbatim_here_string_characters] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [aux_sym_comparison_operator_token37] = ACTIONS(1339), + [aux_sym_comparison_operator_token50] = ACTIONS(1339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1339), + [anon_sym_DOLLAR_CARET] = ACTIONS(1339), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1339), + [anon_sym_DOLLAR_] = ACTIONS(1339), + [aux_sym_variable_token1] = ACTIONS(1339), + [aux_sym_variable_token2] = ACTIONS(1339), + [sym_braced_variable] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [aux_sym_if_statement_token1] = ACTIONS(1339), + [aux_sym_elseif_clause_token1] = ACTIONS(1299), + [aux_sym_else_clause_token1] = ACTIONS(1339), + [aux_sym_switch_statement_token1] = ACTIONS(1339), + [aux_sym_foreach_statement_token1] = ACTIONS(1339), + [aux_sym_for_statement_token1] = ACTIONS(1339), + [aux_sym_while_statement_token1] = ACTIONS(1339), + [aux_sym_do_statement_token1] = ACTIONS(1339), + [aux_sym_function_statement_token1] = ACTIONS(1339), + [aux_sym_function_statement_token2] = ACTIONS(1339), + [aux_sym_function_statement_token3] = ACTIONS(1339), + [aux_sym_flow_control_statement_token1] = ACTIONS(1339), + [aux_sym_flow_control_statement_token2] = ACTIONS(1339), + [aux_sym_flow_control_statement_token3] = ACTIONS(1339), + [aux_sym_flow_control_statement_token4] = ACTIONS(1339), + [aux_sym_flow_control_statement_token5] = ACTIONS(1339), + [sym_label] = ACTIONS(1339), + [aux_sym_trap_statement_token1] = ACTIONS(1339), + [aux_sym_try_statement_token1] = ACTIONS(1339), + [aux_sym_data_statement_token1] = ACTIONS(1339), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1339), + [aux_sym_parallel_statement_token1] = ACTIONS(1339), + [aux_sym_sequence_statement_token1] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [aux_sym_command_name_token1] = ACTIONS(1339), + [aux_sym_command_name_token2] = ACTIONS(1339), + [aux_sym_command_name_token3] = ACTIONS(1339), + [aux_sym_command_name_token4] = ACTIONS(1339), + [aux_sym_command_name_token5] = ACTIONS(1339), + [aux_sym_command_name_token6] = ACTIONS(1339), + [aux_sym_command_name_token7] = ACTIONS(1339), + [aux_sym_command_name_token8] = ACTIONS(1339), + [aux_sym_command_name_token9] = ACTIONS(1339), + [aux_sym_command_name_token10] = ACTIONS(1339), + [aux_sym_command_name_token11] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [aux_sym_foreach_command_token1] = ACTIONS(1339), + [aux_sym_class_statement_token1] = ACTIONS(1339), + [aux_sym_enum_statement_token1] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), + [anon_sym_AT_LPAREN] = ACTIONS(1339), + [anon_sym_AT_LBRACE] = ACTIONS(1339), }, [298] = { - [aux_sym_array_literal_expression_repeat1] = STATE(302), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(782), - [aux_sym_comparison_operator_token2] = ACTIONS(782), - [aux_sym_comparison_operator_token3] = ACTIONS(782), - [aux_sym_comparison_operator_token4] = ACTIONS(782), - [aux_sym_comparison_operator_token5] = ACTIONS(782), - [aux_sym_comparison_operator_token6] = ACTIONS(782), - [aux_sym_comparison_operator_token7] = ACTIONS(782), - [aux_sym_comparison_operator_token8] = ACTIONS(782), - [aux_sym_comparison_operator_token9] = ACTIONS(782), - [aux_sym_comparison_operator_token10] = ACTIONS(782), - [aux_sym_comparison_operator_token11] = ACTIONS(782), - [aux_sym_comparison_operator_token12] = ACTIONS(782), - [aux_sym_comparison_operator_token13] = ACTIONS(782), - [aux_sym_comparison_operator_token14] = ACTIONS(782), - [aux_sym_comparison_operator_token15] = ACTIONS(782), - [aux_sym_comparison_operator_token16] = ACTIONS(782), - [aux_sym_comparison_operator_token17] = ACTIONS(782), - [aux_sym_comparison_operator_token18] = ACTIONS(782), - [aux_sym_comparison_operator_token19] = ACTIONS(782), - [aux_sym_comparison_operator_token20] = ACTIONS(782), - [aux_sym_comparison_operator_token21] = ACTIONS(782), - [aux_sym_comparison_operator_token22] = ACTIONS(782), - [aux_sym_comparison_operator_token23] = ACTIONS(782), - [aux_sym_comparison_operator_token24] = ACTIONS(782), - [aux_sym_comparison_operator_token25] = ACTIONS(782), - [aux_sym_comparison_operator_token26] = ACTIONS(782), - [aux_sym_comparison_operator_token27] = ACTIONS(782), - [aux_sym_comparison_operator_token28] = ACTIONS(784), - [aux_sym_comparison_operator_token29] = ACTIONS(782), - [aux_sym_comparison_operator_token30] = ACTIONS(782), - [aux_sym_comparison_operator_token31] = ACTIONS(782), - [aux_sym_comparison_operator_token32] = ACTIONS(782), - [aux_sym_comparison_operator_token33] = ACTIONS(782), - [aux_sym_comparison_operator_token34] = ACTIONS(784), - [aux_sym_comparison_operator_token35] = ACTIONS(782), - [aux_sym_comparison_operator_token36] = ACTIONS(782), - [aux_sym_comparison_operator_token37] = ACTIONS(782), - [aux_sym_comparison_operator_token38] = ACTIONS(782), - [aux_sym_comparison_operator_token39] = ACTIONS(782), - [aux_sym_comparison_operator_token40] = ACTIONS(782), - [aux_sym_comparison_operator_token41] = ACTIONS(782), - [aux_sym_comparison_operator_token42] = ACTIONS(782), - [aux_sym_comparison_operator_token43] = ACTIONS(782), - [aux_sym_comparison_operator_token44] = ACTIONS(782), - [aux_sym_comparison_operator_token45] = ACTIONS(782), - [aux_sym_comparison_operator_token46] = ACTIONS(782), - [aux_sym_comparison_operator_token47] = ACTIONS(782), - [aux_sym_comparison_operator_token48] = ACTIONS(782), - [aux_sym_comparison_operator_token49] = ACTIONS(782), - [aux_sym_comparison_operator_token50] = ACTIONS(782), - [aux_sym_format_operator_token1] = ACTIONS(782), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(782), - [anon_sym_PERCENT] = ACTIONS(782), - [aux_sym_logical_expression_token1] = ACTIONS(782), - [aux_sym_logical_expression_token2] = ACTIONS(782), - [aux_sym_logical_expression_token3] = ACTIONS(782), - [aux_sym_bitwise_expression_token1] = ACTIONS(782), - [aux_sym_bitwise_expression_token2] = ACTIONS(782), - [aux_sym_bitwise_expression_token3] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(782), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_DOT_DOT] = ACTIONS(782), + [sym_elseif_clause] = STATE(298), + [aux_sym_elseif_clauses_repeat1] = STATE(298), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1341), + [sym_hexadecimal_integer_literal] = ACTIONS(1341), + [sym_real_literal] = ACTIONS(1341), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1341), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1341), + [sym_verbatim_string_characters] = ACTIONS(1341), + [sym_verbatim_here_string_characters] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [aux_sym_comparison_operator_token37] = ACTIONS(1341), + [aux_sym_comparison_operator_token50] = ACTIONS(1341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1341), + [anon_sym_DOLLAR_CARET] = ACTIONS(1341), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1341), + [anon_sym_DOLLAR_] = ACTIONS(1341), + [aux_sym_variable_token1] = ACTIONS(1341), + [aux_sym_variable_token2] = ACTIONS(1341), + [sym_braced_variable] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [aux_sym_if_statement_token1] = ACTIONS(1341), + [aux_sym_elseif_clause_token1] = ACTIONS(1343), + [aux_sym_else_clause_token1] = ACTIONS(1341), + [aux_sym_switch_statement_token1] = ACTIONS(1341), + [aux_sym_foreach_statement_token1] = ACTIONS(1341), + [aux_sym_for_statement_token1] = ACTIONS(1341), + [aux_sym_while_statement_token1] = ACTIONS(1341), + [aux_sym_do_statement_token1] = ACTIONS(1341), + [aux_sym_function_statement_token1] = ACTIONS(1341), + [aux_sym_function_statement_token2] = ACTIONS(1341), + [aux_sym_function_statement_token3] = ACTIONS(1341), + [aux_sym_flow_control_statement_token1] = ACTIONS(1341), + [aux_sym_flow_control_statement_token2] = ACTIONS(1341), + [aux_sym_flow_control_statement_token3] = ACTIONS(1341), + [aux_sym_flow_control_statement_token4] = ACTIONS(1341), + [aux_sym_flow_control_statement_token5] = ACTIONS(1341), + [sym_label] = ACTIONS(1341), + [aux_sym_trap_statement_token1] = ACTIONS(1341), + [aux_sym_try_statement_token1] = ACTIONS(1341), + [aux_sym_data_statement_token1] = ACTIONS(1341), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1341), + [aux_sym_parallel_statement_token1] = ACTIONS(1341), + [aux_sym_sequence_statement_token1] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [aux_sym_command_name_token1] = ACTIONS(1341), + [aux_sym_command_name_token2] = ACTIONS(1341), + [aux_sym_command_name_token3] = ACTIONS(1341), + [aux_sym_command_name_token4] = ACTIONS(1341), + [aux_sym_command_name_token5] = ACTIONS(1341), + [aux_sym_command_name_token6] = ACTIONS(1341), + [aux_sym_command_name_token7] = ACTIONS(1341), + [aux_sym_command_name_token8] = ACTIONS(1341), + [aux_sym_command_name_token9] = ACTIONS(1341), + [aux_sym_command_name_token10] = ACTIONS(1341), + [aux_sym_command_name_token11] = ACTIONS(1341), + [anon_sym_PERCENT] = ACTIONS(1341), + [aux_sym_foreach_command_token1] = ACTIONS(1341), + [aux_sym_class_statement_token1] = ACTIONS(1341), + [aux_sym_enum_statement_token1] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1341), + [anon_sym_AT_LPAREN] = ACTIONS(1341), + [anon_sym_AT_LBRACE] = ACTIONS(1341), }, [299] = { - [aux_sym_array_literal_expression_repeat1] = STATE(299), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(775), - [aux_sym_comparison_operator_token2] = ACTIONS(775), - [aux_sym_comparison_operator_token3] = ACTIONS(775), - [aux_sym_comparison_operator_token4] = ACTIONS(775), - [aux_sym_comparison_operator_token5] = ACTIONS(775), - [aux_sym_comparison_operator_token6] = ACTIONS(775), - [aux_sym_comparison_operator_token7] = ACTIONS(775), - [aux_sym_comparison_operator_token8] = ACTIONS(775), - [aux_sym_comparison_operator_token9] = ACTIONS(775), - [aux_sym_comparison_operator_token10] = ACTIONS(775), - [aux_sym_comparison_operator_token11] = ACTIONS(775), - [aux_sym_comparison_operator_token12] = ACTIONS(775), - [aux_sym_comparison_operator_token13] = ACTIONS(775), - [aux_sym_comparison_operator_token14] = ACTIONS(775), - [aux_sym_comparison_operator_token15] = ACTIONS(775), - [aux_sym_comparison_operator_token16] = ACTIONS(775), - [aux_sym_comparison_operator_token17] = ACTIONS(775), - [aux_sym_comparison_operator_token18] = ACTIONS(775), - [aux_sym_comparison_operator_token19] = ACTIONS(775), - [aux_sym_comparison_operator_token20] = ACTIONS(775), - [aux_sym_comparison_operator_token21] = ACTIONS(775), - [aux_sym_comparison_operator_token22] = ACTIONS(775), - [aux_sym_comparison_operator_token23] = ACTIONS(775), - [aux_sym_comparison_operator_token24] = ACTIONS(775), - [aux_sym_comparison_operator_token25] = ACTIONS(775), - [aux_sym_comparison_operator_token26] = ACTIONS(775), - [aux_sym_comparison_operator_token27] = ACTIONS(775), - [aux_sym_comparison_operator_token28] = ACTIONS(777), - [aux_sym_comparison_operator_token29] = ACTIONS(775), - [aux_sym_comparison_operator_token30] = ACTIONS(775), - [aux_sym_comparison_operator_token31] = ACTIONS(775), - [aux_sym_comparison_operator_token32] = ACTIONS(775), - [aux_sym_comparison_operator_token33] = ACTIONS(775), - [aux_sym_comparison_operator_token34] = ACTIONS(777), - [aux_sym_comparison_operator_token35] = ACTIONS(775), - [aux_sym_comparison_operator_token36] = ACTIONS(775), - [aux_sym_comparison_operator_token37] = ACTIONS(775), - [aux_sym_comparison_operator_token38] = ACTIONS(775), - [aux_sym_comparison_operator_token39] = ACTIONS(775), - [aux_sym_comparison_operator_token40] = ACTIONS(775), - [aux_sym_comparison_operator_token41] = ACTIONS(775), - [aux_sym_comparison_operator_token42] = ACTIONS(775), - [aux_sym_comparison_operator_token43] = ACTIONS(775), - [aux_sym_comparison_operator_token44] = ACTIONS(775), - [aux_sym_comparison_operator_token45] = ACTIONS(775), - [aux_sym_comparison_operator_token46] = ACTIONS(775), - [aux_sym_comparison_operator_token47] = ACTIONS(775), - [aux_sym_comparison_operator_token48] = ACTIONS(775), - [aux_sym_comparison_operator_token49] = ACTIONS(775), - [aux_sym_comparison_operator_token50] = ACTIONS(775), - [aux_sym_format_operator_token1] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(775), - [aux_sym_logical_expression_token1] = ACTIONS(775), - [aux_sym_logical_expression_token2] = ACTIONS(775), - [aux_sym_logical_expression_token3] = ACTIONS(775), - [aux_sym_bitwise_expression_token1] = ACTIONS(775), - [aux_sym_bitwise_expression_token2] = ACTIONS(775), - [aux_sym_bitwise_expression_token3] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_DOT_DOT] = ACTIONS(775), - [sym__statement_terminator] = ACTIONS(775), + [sym_catch_clause] = STATE(299), + [aux_sym_catch_clauses_repeat1] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1319), + [sym_hexadecimal_integer_literal] = ACTIONS(1319), + [sym_real_literal] = ACTIONS(1319), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1319), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1319), + [sym_verbatim_string_characters] = ACTIONS(1319), + [sym_verbatim_here_string_characters] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [aux_sym_comparison_operator_token37] = ACTIONS(1319), + [aux_sym_comparison_operator_token50] = ACTIONS(1319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1319), + [anon_sym_DOLLAR_CARET] = ACTIONS(1319), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1319), + [anon_sym_DOLLAR_] = ACTIONS(1319), + [aux_sym_variable_token1] = ACTIONS(1319), + [aux_sym_variable_token2] = ACTIONS(1319), + [sym_braced_variable] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1319), + [aux_sym_if_statement_token1] = ACTIONS(1319), + [aux_sym_switch_statement_token1] = ACTIONS(1319), + [aux_sym_foreach_statement_token1] = ACTIONS(1319), + [aux_sym_for_statement_token1] = ACTIONS(1319), + [aux_sym_while_statement_token1] = ACTIONS(1319), + [aux_sym_do_statement_token1] = ACTIONS(1319), + [aux_sym_function_statement_token1] = ACTIONS(1319), + [aux_sym_function_statement_token2] = ACTIONS(1319), + [aux_sym_function_statement_token3] = ACTIONS(1319), + [aux_sym_flow_control_statement_token1] = ACTIONS(1319), + [aux_sym_flow_control_statement_token2] = ACTIONS(1319), + [aux_sym_flow_control_statement_token3] = ACTIONS(1319), + [aux_sym_flow_control_statement_token4] = ACTIONS(1319), + [aux_sym_flow_control_statement_token5] = ACTIONS(1319), + [sym_label] = ACTIONS(1319), + [aux_sym_trap_statement_token1] = ACTIONS(1319), + [aux_sym_try_statement_token1] = ACTIONS(1319), + [aux_sym_catch_clause_token1] = ACTIONS(1348), + [aux_sym_finally_clause_token1] = ACTIONS(1319), + [aux_sym_data_statement_token1] = ACTIONS(1319), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1319), + [aux_sym_parallel_statement_token1] = ACTIONS(1319), + [aux_sym_sequence_statement_token1] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [aux_sym_command_name_token1] = ACTIONS(1319), + [aux_sym_command_name_token2] = ACTIONS(1319), + [aux_sym_command_name_token3] = ACTIONS(1319), + [aux_sym_command_name_token4] = ACTIONS(1319), + [aux_sym_command_name_token5] = ACTIONS(1319), + [aux_sym_command_name_token6] = ACTIONS(1319), + [aux_sym_command_name_token7] = ACTIONS(1319), + [aux_sym_command_name_token8] = ACTIONS(1319), + [aux_sym_command_name_token9] = ACTIONS(1319), + [aux_sym_command_name_token10] = ACTIONS(1319), + [aux_sym_command_name_token11] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [aux_sym_foreach_command_token1] = ACTIONS(1319), + [aux_sym_class_statement_token1] = ACTIONS(1319), + [aux_sym_enum_statement_token1] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1319), + [anon_sym_AT_LPAREN] = ACTIONS(1319), + [anon_sym_AT_LBRACE] = ACTIONS(1319), }, [300] = { - [sym_catch_clauses] = STATE(389), - [sym_catch_clause] = STATE(351), - [sym_finally_clause] = STATE(453), - [aux_sym_catch_clauses_repeat1] = STATE(351), + [sym_catch_clause] = STATE(299), + [aux_sym_catch_clauses_repeat1] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(1351), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1327), - [sym_hexadecimal_integer_literal] = ACTIONS(1327), - [sym_real_literal] = ACTIONS(1327), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1327), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1327), - [sym_verbatim_string_characters] = ACTIONS(1327), - [sym_verbatim_here_string_characters] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [aux_sym_comparison_operator_token37] = ACTIONS(1327), - [aux_sym_comparison_operator_token50] = ACTIONS(1327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1327), - [anon_sym_DOLLAR_CARET] = ACTIONS(1327), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1327), - [anon_sym_DOLLAR_] = ACTIONS(1327), - [aux_sym_variable_token1] = ACTIONS(1327), - [aux_sym_variable_token2] = ACTIONS(1327), - [sym_braced_variable] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [aux_sym_if_statement_token1] = ACTIONS(1327), - [aux_sym_switch_statement_token1] = ACTIONS(1327), - [aux_sym_foreach_statement_token1] = ACTIONS(1327), - [aux_sym_for_statement_token1] = ACTIONS(1327), - [aux_sym_while_statement_token1] = ACTIONS(1327), - [aux_sym_do_statement_token1] = ACTIONS(1327), - [aux_sym_function_statement_token1] = ACTIONS(1327), - [aux_sym_function_statement_token2] = ACTIONS(1327), - [aux_sym_function_statement_token3] = ACTIONS(1327), - [aux_sym_flow_control_statement_token1] = ACTIONS(1327), - [aux_sym_flow_control_statement_token2] = ACTIONS(1327), - [aux_sym_flow_control_statement_token3] = ACTIONS(1327), - [aux_sym_flow_control_statement_token4] = ACTIONS(1327), - [aux_sym_flow_control_statement_token5] = ACTIONS(1327), - [sym_label] = ACTIONS(1327), - [aux_sym_trap_statement_token1] = ACTIONS(1327), - [aux_sym_try_statement_token1] = ACTIONS(1327), - [aux_sym_catch_clause_token1] = ACTIONS(1329), - [aux_sym_finally_clause_token1] = ACTIONS(1331), - [aux_sym_data_statement_token1] = ACTIONS(1327), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1327), - [aux_sym_parallel_statement_token1] = ACTIONS(1327), - [aux_sym_sequence_statement_token1] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [aux_sym_command_name_token1] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [aux_sym_foreach_command_token1] = ACTIONS(1327), - [aux_sym_class_statement_token1] = ACTIONS(1327), - [aux_sym_enum_statement_token1] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1327), - [anon_sym_AT_LPAREN] = ACTIONS(1327), - [anon_sym_AT_LBRACE] = ACTIONS(1327), + [sym_decimal_integer_literal] = ACTIONS(1324), + [sym_hexadecimal_integer_literal] = ACTIONS(1324), + [sym_real_literal] = ACTIONS(1324), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1324), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1324), + [sym_verbatim_string_characters] = ACTIONS(1324), + [sym_verbatim_here_string_characters] = ACTIONS(1324), + [anon_sym_DOT] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [aux_sym_comparison_operator_token37] = ACTIONS(1324), + [aux_sym_comparison_operator_token50] = ACTIONS(1324), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1324), + [anon_sym_DOLLAR_CARET] = ACTIONS(1324), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_] = ACTIONS(1324), + [aux_sym_variable_token1] = ACTIONS(1324), + [aux_sym_variable_token2] = ACTIONS(1324), + [sym_braced_variable] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [aux_sym_if_statement_token1] = ACTIONS(1324), + [aux_sym_switch_statement_token1] = ACTIONS(1324), + [aux_sym_foreach_statement_token1] = ACTIONS(1324), + [aux_sym_for_statement_token1] = ACTIONS(1324), + [aux_sym_while_statement_token1] = ACTIONS(1324), + [aux_sym_do_statement_token1] = ACTIONS(1324), + [aux_sym_function_statement_token1] = ACTIONS(1324), + [aux_sym_function_statement_token2] = ACTIONS(1324), + [aux_sym_function_statement_token3] = ACTIONS(1324), + [aux_sym_flow_control_statement_token1] = ACTIONS(1324), + [aux_sym_flow_control_statement_token2] = ACTIONS(1324), + [aux_sym_flow_control_statement_token3] = ACTIONS(1324), + [aux_sym_flow_control_statement_token4] = ACTIONS(1324), + [aux_sym_flow_control_statement_token5] = ACTIONS(1324), + [sym_label] = ACTIONS(1324), + [aux_sym_trap_statement_token1] = ACTIONS(1324), + [aux_sym_try_statement_token1] = ACTIONS(1324), + [aux_sym_catch_clause_token1] = ACTIONS(1305), + [aux_sym_finally_clause_token1] = ACTIONS(1324), + [aux_sym_data_statement_token1] = ACTIONS(1324), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1324), + [aux_sym_parallel_statement_token1] = ACTIONS(1324), + [aux_sym_sequence_statement_token1] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [aux_sym_command_name_token1] = ACTIONS(1324), + [aux_sym_command_name_token2] = ACTIONS(1324), + [aux_sym_command_name_token3] = ACTIONS(1324), + [aux_sym_command_name_token4] = ACTIONS(1324), + [aux_sym_command_name_token5] = ACTIONS(1324), + [aux_sym_command_name_token6] = ACTIONS(1324), + [aux_sym_command_name_token7] = ACTIONS(1324), + [aux_sym_command_name_token8] = ACTIONS(1324), + [aux_sym_command_name_token9] = ACTIONS(1324), + [aux_sym_command_name_token10] = ACTIONS(1324), + [aux_sym_command_name_token11] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [aux_sym_foreach_command_token1] = ACTIONS(1324), + [aux_sym_class_statement_token1] = ACTIONS(1324), + [aux_sym_enum_statement_token1] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_AT_LPAREN] = ACTIONS(1324), + [anon_sym_AT_LBRACE] = ACTIONS(1324), }, [301] = { + [sym_elseif_clause] = STATE(301), + [aux_sym_elseif_clauses_repeat1] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(1353), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(251), - [sym_real_literal] = ACTIONS(251), - [aux_sym_expandable_string_literal_token1] = ACTIONS(251), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(251), - [sym_verbatim_string_characters] = ACTIONS(251), - [sym_verbatim_here_string_characters] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(251), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(251), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(251), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(251), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(251), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(251), - [anon_sym_2_GT_AMP1] = ACTIONS(251), - [anon_sym_3_GT_AMP1] = ACTIONS(251), - [anon_sym_4_GT_AMP1] = ACTIONS(251), - [anon_sym_5_GT_AMP1] = ACTIONS(251), - [anon_sym_6_GT_AMP1] = ACTIONS(251), - [anon_sym_STAR_GT_AMP2] = ACTIONS(251), - [anon_sym_1_GT_AMP2] = ACTIONS(251), - [anon_sym_3_GT_AMP2] = ACTIONS(251), - [anon_sym_4_GT_AMP2] = ACTIONS(251), - [anon_sym_5_GT_AMP2] = ACTIONS(251), - [anon_sym_6_GT_AMP2] = ACTIONS(251), - [aux_sym_comparison_operator_token37] = ACTIONS(251), - [aux_sym_comparison_operator_token50] = ACTIONS(251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_CARET] = ACTIONS(251), - [anon_sym_DOLLAR_QMARK] = ACTIONS(251), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(251), - [sym_braced_variable] = ACTIONS(251), - [sym_command_parameter] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(251), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [sym_stop_parsing] = ACTIONS(251), - [anon_sym_SPACE] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(251), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(251), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_AT_LPAREN] = ACTIONS(251), - [anon_sym_AT_LBRACE] = ACTIONS(251), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(251), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), - [sym__statement_terminator] = ACTIONS(253), + [sym_decimal_integer_literal] = ACTIONS(1341), + [sym_hexadecimal_integer_literal] = ACTIONS(1341), + [sym_real_literal] = ACTIONS(1341), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1341), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1341), + [sym_verbatim_string_characters] = ACTIONS(1341), + [sym_verbatim_here_string_characters] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [aux_sym_comparison_operator_token37] = ACTIONS(1341), + [aux_sym_comparison_operator_token50] = ACTIONS(1341), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1341), + [anon_sym_DOLLAR_CARET] = ACTIONS(1341), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1341), + [anon_sym_DOLLAR_] = ACTIONS(1341), + [aux_sym_variable_token1] = ACTIONS(1341), + [aux_sym_variable_token2] = ACTIONS(1341), + [sym_braced_variable] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_if_statement_token1] = ACTIONS(1341), + [aux_sym_elseif_clause_token1] = ACTIONS(1355), + [aux_sym_else_clause_token1] = ACTIONS(1341), + [aux_sym_switch_statement_token1] = ACTIONS(1341), + [aux_sym_foreach_statement_token1] = ACTIONS(1341), + [aux_sym_for_statement_token1] = ACTIONS(1341), + [aux_sym_while_statement_token1] = ACTIONS(1341), + [aux_sym_do_statement_token1] = ACTIONS(1341), + [aux_sym_function_statement_token1] = ACTIONS(1341), + [aux_sym_function_statement_token2] = ACTIONS(1341), + [aux_sym_function_statement_token3] = ACTIONS(1341), + [aux_sym_flow_control_statement_token1] = ACTIONS(1341), + [aux_sym_flow_control_statement_token2] = ACTIONS(1341), + [aux_sym_flow_control_statement_token3] = ACTIONS(1341), + [aux_sym_flow_control_statement_token4] = ACTIONS(1341), + [aux_sym_flow_control_statement_token5] = ACTIONS(1341), + [sym_label] = ACTIONS(1341), + [aux_sym_trap_statement_token1] = ACTIONS(1341), + [aux_sym_try_statement_token1] = ACTIONS(1341), + [aux_sym_data_statement_token1] = ACTIONS(1341), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1341), + [aux_sym_parallel_statement_token1] = ACTIONS(1341), + [aux_sym_sequence_statement_token1] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [aux_sym_command_name_token1] = ACTIONS(1341), + [aux_sym_command_name_token2] = ACTIONS(1341), + [aux_sym_command_name_token3] = ACTIONS(1341), + [aux_sym_command_name_token4] = ACTIONS(1341), + [aux_sym_command_name_token5] = ACTIONS(1341), + [aux_sym_command_name_token6] = ACTIONS(1341), + [aux_sym_command_name_token7] = ACTIONS(1341), + [aux_sym_command_name_token8] = ACTIONS(1341), + [aux_sym_command_name_token9] = ACTIONS(1341), + [aux_sym_command_name_token10] = ACTIONS(1341), + [aux_sym_command_name_token11] = ACTIONS(1341), + [anon_sym_PERCENT] = ACTIONS(1341), + [aux_sym_foreach_command_token1] = ACTIONS(1341), + [aux_sym_class_statement_token1] = ACTIONS(1341), + [aux_sym_enum_statement_token1] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1341), + [anon_sym_AT_LPAREN] = ACTIONS(1341), + [anon_sym_AT_LBRACE] = ACTIONS(1341), }, [302] = { - [aux_sym_array_literal_expression_repeat1] = STATE(295), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(769), - [aux_sym_comparison_operator_token2] = ACTIONS(769), - [aux_sym_comparison_operator_token3] = ACTIONS(769), - [aux_sym_comparison_operator_token4] = ACTIONS(769), - [aux_sym_comparison_operator_token5] = ACTIONS(769), - [aux_sym_comparison_operator_token6] = ACTIONS(769), - [aux_sym_comparison_operator_token7] = ACTIONS(769), - [aux_sym_comparison_operator_token8] = ACTIONS(769), - [aux_sym_comparison_operator_token9] = ACTIONS(769), - [aux_sym_comparison_operator_token10] = ACTIONS(769), - [aux_sym_comparison_operator_token11] = ACTIONS(769), - [aux_sym_comparison_operator_token12] = ACTIONS(769), - [aux_sym_comparison_operator_token13] = ACTIONS(769), - [aux_sym_comparison_operator_token14] = ACTIONS(769), - [aux_sym_comparison_operator_token15] = ACTIONS(769), - [aux_sym_comparison_operator_token16] = ACTIONS(769), - [aux_sym_comparison_operator_token17] = ACTIONS(769), - [aux_sym_comparison_operator_token18] = ACTIONS(769), - [aux_sym_comparison_operator_token19] = ACTIONS(769), - [aux_sym_comparison_operator_token20] = ACTIONS(769), - [aux_sym_comparison_operator_token21] = ACTIONS(769), - [aux_sym_comparison_operator_token22] = ACTIONS(769), - [aux_sym_comparison_operator_token23] = ACTIONS(769), - [aux_sym_comparison_operator_token24] = ACTIONS(769), - [aux_sym_comparison_operator_token25] = ACTIONS(769), - [aux_sym_comparison_operator_token26] = ACTIONS(769), - [aux_sym_comparison_operator_token27] = ACTIONS(769), - [aux_sym_comparison_operator_token28] = ACTIONS(771), - [aux_sym_comparison_operator_token29] = ACTIONS(769), - [aux_sym_comparison_operator_token30] = ACTIONS(769), - [aux_sym_comparison_operator_token31] = ACTIONS(769), - [aux_sym_comparison_operator_token32] = ACTIONS(769), - [aux_sym_comparison_operator_token33] = ACTIONS(769), - [aux_sym_comparison_operator_token34] = ACTIONS(771), - [aux_sym_comparison_operator_token35] = ACTIONS(769), - [aux_sym_comparison_operator_token36] = ACTIONS(769), - [aux_sym_comparison_operator_token37] = ACTIONS(769), - [aux_sym_comparison_operator_token38] = ACTIONS(769), - [aux_sym_comparison_operator_token39] = ACTIONS(769), - [aux_sym_comparison_operator_token40] = ACTIONS(769), - [aux_sym_comparison_operator_token41] = ACTIONS(769), - [aux_sym_comparison_operator_token42] = ACTIONS(769), - [aux_sym_comparison_operator_token43] = ACTIONS(769), - [aux_sym_comparison_operator_token44] = ACTIONS(769), - [aux_sym_comparison_operator_token45] = ACTIONS(769), - [aux_sym_comparison_operator_token46] = ACTIONS(769), - [aux_sym_comparison_operator_token47] = ACTIONS(769), - [aux_sym_comparison_operator_token48] = ACTIONS(769), - [aux_sym_comparison_operator_token49] = ACTIONS(769), - [aux_sym_comparison_operator_token50] = ACTIONS(769), - [aux_sym_format_operator_token1] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(769), - [aux_sym_logical_expression_token1] = ACTIONS(769), - [aux_sym_logical_expression_token2] = ACTIONS(769), - [aux_sym_logical_expression_token3] = ACTIONS(769), - [aux_sym_bitwise_expression_token1] = ACTIONS(769), - [aux_sym_bitwise_expression_token2] = ACTIONS(769), - [aux_sym_bitwise_expression_token3] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_DOT_DOT] = ACTIONS(769), + [sym_elseif_clause] = STATE(301), + [aux_sym_elseif_clauses_repeat1] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1339), + [sym_hexadecimal_integer_literal] = ACTIONS(1339), + [sym_real_literal] = ACTIONS(1339), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1339), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1339), + [sym_verbatim_string_characters] = ACTIONS(1339), + [sym_verbatim_here_string_characters] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [aux_sym_comparison_operator_token37] = ACTIONS(1339), + [aux_sym_comparison_operator_token50] = ACTIONS(1339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1339), + [anon_sym_DOLLAR_CARET] = ACTIONS(1339), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1339), + [anon_sym_DOLLAR_] = ACTIONS(1339), + [aux_sym_variable_token1] = ACTIONS(1339), + [aux_sym_variable_token2] = ACTIONS(1339), + [sym_braced_variable] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1339), + [aux_sym_if_statement_token1] = ACTIONS(1339), + [aux_sym_elseif_clause_token1] = ACTIONS(1311), + [aux_sym_else_clause_token1] = ACTIONS(1339), + [aux_sym_switch_statement_token1] = ACTIONS(1339), + [aux_sym_foreach_statement_token1] = ACTIONS(1339), + [aux_sym_for_statement_token1] = ACTIONS(1339), + [aux_sym_while_statement_token1] = ACTIONS(1339), + [aux_sym_do_statement_token1] = ACTIONS(1339), + [aux_sym_function_statement_token1] = ACTIONS(1339), + [aux_sym_function_statement_token2] = ACTIONS(1339), + [aux_sym_function_statement_token3] = ACTIONS(1339), + [aux_sym_flow_control_statement_token1] = ACTIONS(1339), + [aux_sym_flow_control_statement_token2] = ACTIONS(1339), + [aux_sym_flow_control_statement_token3] = ACTIONS(1339), + [aux_sym_flow_control_statement_token4] = ACTIONS(1339), + [aux_sym_flow_control_statement_token5] = ACTIONS(1339), + [sym_label] = ACTIONS(1339), + [aux_sym_trap_statement_token1] = ACTIONS(1339), + [aux_sym_try_statement_token1] = ACTIONS(1339), + [aux_sym_data_statement_token1] = ACTIONS(1339), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1339), + [aux_sym_parallel_statement_token1] = ACTIONS(1339), + [aux_sym_sequence_statement_token1] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [aux_sym_command_name_token1] = ACTIONS(1339), + [aux_sym_command_name_token2] = ACTIONS(1339), + [aux_sym_command_name_token3] = ACTIONS(1339), + [aux_sym_command_name_token4] = ACTIONS(1339), + [aux_sym_command_name_token5] = ACTIONS(1339), + [aux_sym_command_name_token6] = ACTIONS(1339), + [aux_sym_command_name_token7] = ACTIONS(1339), + [aux_sym_command_name_token8] = ACTIONS(1339), + [aux_sym_command_name_token9] = ACTIONS(1339), + [aux_sym_command_name_token10] = ACTIONS(1339), + [aux_sym_command_name_token11] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [aux_sym_foreach_command_token1] = ACTIONS(1339), + [aux_sym_class_statement_token1] = ACTIONS(1339), + [aux_sym_enum_statement_token1] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), + [anon_sym_AT_LPAREN] = ACTIONS(1339), + [anon_sym_AT_LBRACE] = ACTIONS(1339), }, [303] = { - [aux_sym_array_literal_expression_repeat1] = STATE(299), [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(769), - [aux_sym_comparison_operator_token2] = ACTIONS(769), - [aux_sym_comparison_operator_token3] = ACTIONS(769), - [aux_sym_comparison_operator_token4] = ACTIONS(769), - [aux_sym_comparison_operator_token5] = ACTIONS(769), - [aux_sym_comparison_operator_token6] = ACTIONS(769), - [aux_sym_comparison_operator_token7] = ACTIONS(769), - [aux_sym_comparison_operator_token8] = ACTIONS(769), - [aux_sym_comparison_operator_token9] = ACTIONS(769), - [aux_sym_comparison_operator_token10] = ACTIONS(769), - [aux_sym_comparison_operator_token11] = ACTIONS(769), - [aux_sym_comparison_operator_token12] = ACTIONS(769), - [aux_sym_comparison_operator_token13] = ACTIONS(769), - [aux_sym_comparison_operator_token14] = ACTIONS(769), - [aux_sym_comparison_operator_token15] = ACTIONS(769), - [aux_sym_comparison_operator_token16] = ACTIONS(769), - [aux_sym_comparison_operator_token17] = ACTIONS(769), - [aux_sym_comparison_operator_token18] = ACTIONS(769), - [aux_sym_comparison_operator_token19] = ACTIONS(769), - [aux_sym_comparison_operator_token20] = ACTIONS(769), - [aux_sym_comparison_operator_token21] = ACTIONS(769), - [aux_sym_comparison_operator_token22] = ACTIONS(769), - [aux_sym_comparison_operator_token23] = ACTIONS(769), - [aux_sym_comparison_operator_token24] = ACTIONS(769), - [aux_sym_comparison_operator_token25] = ACTIONS(769), - [aux_sym_comparison_operator_token26] = ACTIONS(769), - [aux_sym_comparison_operator_token27] = ACTIONS(769), - [aux_sym_comparison_operator_token28] = ACTIONS(771), - [aux_sym_comparison_operator_token29] = ACTIONS(769), - [aux_sym_comparison_operator_token30] = ACTIONS(769), - [aux_sym_comparison_operator_token31] = ACTIONS(769), - [aux_sym_comparison_operator_token32] = ACTIONS(769), - [aux_sym_comparison_operator_token33] = ACTIONS(769), - [aux_sym_comparison_operator_token34] = ACTIONS(771), - [aux_sym_comparison_operator_token35] = ACTIONS(769), - [aux_sym_comparison_operator_token36] = ACTIONS(769), - [aux_sym_comparison_operator_token37] = ACTIONS(769), - [aux_sym_comparison_operator_token38] = ACTIONS(769), - [aux_sym_comparison_operator_token39] = ACTIONS(769), - [aux_sym_comparison_operator_token40] = ACTIONS(769), - [aux_sym_comparison_operator_token41] = ACTIONS(769), - [aux_sym_comparison_operator_token42] = ACTIONS(769), - [aux_sym_comparison_operator_token43] = ACTIONS(769), - [aux_sym_comparison_operator_token44] = ACTIONS(769), - [aux_sym_comparison_operator_token45] = ACTIONS(769), - [aux_sym_comparison_operator_token46] = ACTIONS(769), - [aux_sym_comparison_operator_token47] = ACTIONS(769), - [aux_sym_comparison_operator_token48] = ACTIONS(769), - [aux_sym_comparison_operator_token49] = ACTIONS(769), - [aux_sym_comparison_operator_token50] = ACTIONS(769), - [aux_sym_format_operator_token1] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(769), - [aux_sym_logical_expression_token1] = ACTIONS(769), - [aux_sym_logical_expression_token2] = ACTIONS(769), - [aux_sym_logical_expression_token3] = ACTIONS(769), - [aux_sym_bitwise_expression_token1] = ACTIONS(769), - [aux_sym_bitwise_expression_token2] = ACTIONS(769), - [aux_sym_bitwise_expression_token3] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_DOT_DOT] = ACTIONS(769), - [sym__statement_terminator] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(745), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_DOT2] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(695), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), }, [304] = { - [aux_sym_array_literal_expression_repeat1] = STATE(303), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(782), - [aux_sym_comparison_operator_token2] = ACTIONS(782), - [aux_sym_comparison_operator_token3] = ACTIONS(782), - [aux_sym_comparison_operator_token4] = ACTIONS(782), - [aux_sym_comparison_operator_token5] = ACTIONS(782), - [aux_sym_comparison_operator_token6] = ACTIONS(782), - [aux_sym_comparison_operator_token7] = ACTIONS(782), - [aux_sym_comparison_operator_token8] = ACTIONS(782), - [aux_sym_comparison_operator_token9] = ACTIONS(782), - [aux_sym_comparison_operator_token10] = ACTIONS(782), - [aux_sym_comparison_operator_token11] = ACTIONS(782), - [aux_sym_comparison_operator_token12] = ACTIONS(782), - [aux_sym_comparison_operator_token13] = ACTIONS(782), - [aux_sym_comparison_operator_token14] = ACTIONS(782), - [aux_sym_comparison_operator_token15] = ACTIONS(782), - [aux_sym_comparison_operator_token16] = ACTIONS(782), - [aux_sym_comparison_operator_token17] = ACTIONS(782), - [aux_sym_comparison_operator_token18] = ACTIONS(782), - [aux_sym_comparison_operator_token19] = ACTIONS(782), - [aux_sym_comparison_operator_token20] = ACTIONS(782), - [aux_sym_comparison_operator_token21] = ACTIONS(782), - [aux_sym_comparison_operator_token22] = ACTIONS(782), - [aux_sym_comparison_operator_token23] = ACTIONS(782), - [aux_sym_comparison_operator_token24] = ACTIONS(782), - [aux_sym_comparison_operator_token25] = ACTIONS(782), - [aux_sym_comparison_operator_token26] = ACTIONS(782), - [aux_sym_comparison_operator_token27] = ACTIONS(782), - [aux_sym_comparison_operator_token28] = ACTIONS(784), - [aux_sym_comparison_operator_token29] = ACTIONS(782), - [aux_sym_comparison_operator_token30] = ACTIONS(782), - [aux_sym_comparison_operator_token31] = ACTIONS(782), - [aux_sym_comparison_operator_token32] = ACTIONS(782), - [aux_sym_comparison_operator_token33] = ACTIONS(782), - [aux_sym_comparison_operator_token34] = ACTIONS(784), - [aux_sym_comparison_operator_token35] = ACTIONS(782), - [aux_sym_comparison_operator_token36] = ACTIONS(782), - [aux_sym_comparison_operator_token37] = ACTIONS(782), - [aux_sym_comparison_operator_token38] = ACTIONS(782), - [aux_sym_comparison_operator_token39] = ACTIONS(782), - [aux_sym_comparison_operator_token40] = ACTIONS(782), - [aux_sym_comparison_operator_token41] = ACTIONS(782), - [aux_sym_comparison_operator_token42] = ACTIONS(782), - [aux_sym_comparison_operator_token43] = ACTIONS(782), - [aux_sym_comparison_operator_token44] = ACTIONS(782), - [aux_sym_comparison_operator_token45] = ACTIONS(782), - [aux_sym_comparison_operator_token46] = ACTIONS(782), - [aux_sym_comparison_operator_token47] = ACTIONS(782), - [aux_sym_comparison_operator_token48] = ACTIONS(782), - [aux_sym_comparison_operator_token49] = ACTIONS(782), - [aux_sym_comparison_operator_token50] = ACTIONS(782), - [aux_sym_format_operator_token1] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(782), - [aux_sym_logical_expression_token1] = ACTIONS(782), - [aux_sym_logical_expression_token2] = ACTIONS(782), - [aux_sym_logical_expression_token3] = ACTIONS(782), - [aux_sym_bitwise_expression_token1] = ACTIONS(782), - [aux_sym_bitwise_expression_token2] = ACTIONS(782), - [aux_sym_bitwise_expression_token3] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(782), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_DOT_DOT] = ACTIONS(782), - [sym__statement_terminator] = ACTIONS(782), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1364), + [sym_hexadecimal_integer_literal] = ACTIONS(1364), + [sym_real_literal] = ACTIONS(1364), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1364), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1364), + [sym_verbatim_string_characters] = ACTIONS(1364), + [sym_verbatim_here_string_characters] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [aux_sym_comparison_operator_token37] = ACTIONS(1364), + [aux_sym_comparison_operator_token50] = ACTIONS(1364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_CARET] = ACTIONS(1364), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_] = ACTIONS(1364), + [aux_sym_variable_token1] = ACTIONS(1364), + [aux_sym_variable_token2] = ACTIONS(1364), + [sym_braced_variable] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [aux_sym_block_name_token1] = ACTIONS(1366), + [aux_sym_block_name_token2] = ACTIONS(1366), + [aux_sym_block_name_token3] = ACTIONS(1366), + [aux_sym_block_name_token4] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token2] = ACTIONS(1364), + [aux_sym_function_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token1] = ACTIONS(1364), + [aux_sym_flow_control_statement_token2] = ACTIONS(1364), + [aux_sym_flow_control_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token4] = ACTIONS(1364), + [aux_sym_flow_control_statement_token5] = ACTIONS(1364), + [sym_label] = ACTIONS(1364), + [aux_sym_trap_statement_token1] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_data_statement_token1] = ACTIONS(1364), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1364), + [aux_sym_parallel_statement_token1] = ACTIONS(1364), + [aux_sym_sequence_statement_token1] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [aux_sym_command_name_token1] = ACTIONS(1364), + [aux_sym_command_name_token2] = ACTIONS(1364), + [aux_sym_command_name_token3] = ACTIONS(1364), + [aux_sym_command_name_token4] = ACTIONS(1364), + [aux_sym_command_name_token5] = ACTIONS(1364), + [aux_sym_command_name_token6] = ACTIONS(1364), + [aux_sym_command_name_token7] = ACTIONS(1364), + [aux_sym_command_name_token8] = ACTIONS(1364), + [aux_sym_command_name_token9] = ACTIONS(1364), + [aux_sym_command_name_token10] = ACTIONS(1364), + [aux_sym_command_name_token11] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [aux_sym_foreach_command_token1] = ACTIONS(1364), + [aux_sym_class_statement_token1] = ACTIONS(1364), + [aux_sym_enum_statement_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LBRACE] = ACTIONS(1364), }, [305] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(251), - [sym_real_literal] = ACTIONS(251), - [aux_sym_expandable_string_literal_token1] = ACTIONS(251), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(251), - [sym_verbatim_string_characters] = ACTIONS(251), - [sym_verbatim_here_string_characters] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(251), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(251), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(251), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(251), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(251), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(251), - [anon_sym_2_GT_AMP1] = ACTIONS(251), - [anon_sym_3_GT_AMP1] = ACTIONS(251), - [anon_sym_4_GT_AMP1] = ACTIONS(251), - [anon_sym_5_GT_AMP1] = ACTIONS(251), - [anon_sym_6_GT_AMP1] = ACTIONS(251), - [anon_sym_STAR_GT_AMP2] = ACTIONS(251), - [anon_sym_1_GT_AMP2] = ACTIONS(251), - [anon_sym_3_GT_AMP2] = ACTIONS(251), - [anon_sym_4_GT_AMP2] = ACTIONS(251), - [anon_sym_5_GT_AMP2] = ACTIONS(251), - [anon_sym_6_GT_AMP2] = ACTIONS(251), - [aux_sym_comparison_operator_token37] = ACTIONS(251), - [aux_sym_comparison_operator_token50] = ACTIONS(251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_CARET] = ACTIONS(251), - [anon_sym_DOLLAR_QMARK] = ACTIONS(251), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(251), - [sym_braced_variable] = ACTIONS(251), - [sym_command_parameter] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [sym_stop_parsing] = ACTIONS(251), - [anon_sym_SPACE] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(251), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(251), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_AT_LPAREN] = ACTIONS(251), - [anon_sym_AT_LBRACE] = ACTIONS(251), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(251), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_catch_clause_token1] = ACTIONS(1368), + [aux_sym_finally_clause_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), }, [306] = { - [aux_sym_array_literal_expression_repeat1] = STATE(307), [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(782), - [aux_sym_comparison_operator_token2] = ACTIONS(782), - [aux_sym_comparison_operator_token3] = ACTIONS(782), - [aux_sym_comparison_operator_token4] = ACTIONS(782), - [aux_sym_comparison_operator_token5] = ACTIONS(782), - [aux_sym_comparison_operator_token6] = ACTIONS(782), - [aux_sym_comparison_operator_token7] = ACTIONS(782), - [aux_sym_comparison_operator_token8] = ACTIONS(782), - [aux_sym_comparison_operator_token9] = ACTIONS(782), - [aux_sym_comparison_operator_token10] = ACTIONS(782), - [aux_sym_comparison_operator_token11] = ACTIONS(782), - [aux_sym_comparison_operator_token12] = ACTIONS(782), - [aux_sym_comparison_operator_token13] = ACTIONS(782), - [aux_sym_comparison_operator_token14] = ACTIONS(782), - [aux_sym_comparison_operator_token15] = ACTIONS(782), - [aux_sym_comparison_operator_token16] = ACTIONS(782), - [aux_sym_comparison_operator_token17] = ACTIONS(782), - [aux_sym_comparison_operator_token18] = ACTIONS(782), - [aux_sym_comparison_operator_token19] = ACTIONS(782), - [aux_sym_comparison_operator_token20] = ACTIONS(782), - [aux_sym_comparison_operator_token21] = ACTIONS(782), - [aux_sym_comparison_operator_token22] = ACTIONS(782), - [aux_sym_comparison_operator_token23] = ACTIONS(782), - [aux_sym_comparison_operator_token24] = ACTIONS(782), - [aux_sym_comparison_operator_token25] = ACTIONS(782), - [aux_sym_comparison_operator_token26] = ACTIONS(782), - [aux_sym_comparison_operator_token27] = ACTIONS(782), - [aux_sym_comparison_operator_token28] = ACTIONS(784), - [aux_sym_comparison_operator_token29] = ACTIONS(782), - [aux_sym_comparison_operator_token30] = ACTIONS(782), - [aux_sym_comparison_operator_token31] = ACTIONS(782), - [aux_sym_comparison_operator_token32] = ACTIONS(782), - [aux_sym_comparison_operator_token33] = ACTIONS(782), - [aux_sym_comparison_operator_token34] = ACTIONS(784), - [aux_sym_comparison_operator_token35] = ACTIONS(782), - [aux_sym_comparison_operator_token36] = ACTIONS(782), - [aux_sym_comparison_operator_token37] = ACTIONS(782), - [aux_sym_comparison_operator_token38] = ACTIONS(782), - [aux_sym_comparison_operator_token39] = ACTIONS(782), - [aux_sym_comparison_operator_token40] = ACTIONS(782), - [aux_sym_comparison_operator_token41] = ACTIONS(782), - [aux_sym_comparison_operator_token42] = ACTIONS(782), - [aux_sym_comparison_operator_token43] = ACTIONS(782), - [aux_sym_comparison_operator_token44] = ACTIONS(782), - [aux_sym_comparison_operator_token45] = ACTIONS(782), - [aux_sym_comparison_operator_token46] = ACTIONS(782), - [aux_sym_comparison_operator_token47] = ACTIONS(782), - [aux_sym_comparison_operator_token48] = ACTIONS(782), - [aux_sym_comparison_operator_token49] = ACTIONS(782), - [aux_sym_comparison_operator_token50] = ACTIONS(782), - [aux_sym_format_operator_token1] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(782), - [aux_sym_logical_expression_token1] = ACTIONS(782), - [aux_sym_logical_expression_token2] = ACTIONS(782), - [aux_sym_logical_expression_token3] = ACTIONS(782), - [aux_sym_bitwise_expression_token1] = ACTIONS(782), - [aux_sym_bitwise_expression_token2] = ACTIONS(782), - [aux_sym_bitwise_expression_token3] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(782), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(782), - [anon_sym_DOT_DOT] = ACTIONS(782), - [anon_sym_RBRACK] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(745), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_DOT2] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(695), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(755), }, [307] = { - [aux_sym_array_literal_expression_repeat1] = STATE(295), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(769), - [aux_sym_comparison_operator_token2] = ACTIONS(769), - [aux_sym_comparison_operator_token3] = ACTIONS(769), - [aux_sym_comparison_operator_token4] = ACTIONS(769), - [aux_sym_comparison_operator_token5] = ACTIONS(769), - [aux_sym_comparison_operator_token6] = ACTIONS(769), - [aux_sym_comparison_operator_token7] = ACTIONS(769), - [aux_sym_comparison_operator_token8] = ACTIONS(769), - [aux_sym_comparison_operator_token9] = ACTIONS(769), - [aux_sym_comparison_operator_token10] = ACTIONS(769), - [aux_sym_comparison_operator_token11] = ACTIONS(769), - [aux_sym_comparison_operator_token12] = ACTIONS(769), - [aux_sym_comparison_operator_token13] = ACTIONS(769), - [aux_sym_comparison_operator_token14] = ACTIONS(769), - [aux_sym_comparison_operator_token15] = ACTIONS(769), - [aux_sym_comparison_operator_token16] = ACTIONS(769), - [aux_sym_comparison_operator_token17] = ACTIONS(769), - [aux_sym_comparison_operator_token18] = ACTIONS(769), - [aux_sym_comparison_operator_token19] = ACTIONS(769), - [aux_sym_comparison_operator_token20] = ACTIONS(769), - [aux_sym_comparison_operator_token21] = ACTIONS(769), - [aux_sym_comparison_operator_token22] = ACTIONS(769), - [aux_sym_comparison_operator_token23] = ACTIONS(769), - [aux_sym_comparison_operator_token24] = ACTIONS(769), - [aux_sym_comparison_operator_token25] = ACTIONS(769), - [aux_sym_comparison_operator_token26] = ACTIONS(769), - [aux_sym_comparison_operator_token27] = ACTIONS(769), - [aux_sym_comparison_operator_token28] = ACTIONS(771), - [aux_sym_comparison_operator_token29] = ACTIONS(769), - [aux_sym_comparison_operator_token30] = ACTIONS(769), - [aux_sym_comparison_operator_token31] = ACTIONS(769), - [aux_sym_comparison_operator_token32] = ACTIONS(769), - [aux_sym_comparison_operator_token33] = ACTIONS(769), - [aux_sym_comparison_operator_token34] = ACTIONS(771), - [aux_sym_comparison_operator_token35] = ACTIONS(769), - [aux_sym_comparison_operator_token36] = ACTIONS(769), - [aux_sym_comparison_operator_token37] = ACTIONS(769), - [aux_sym_comparison_operator_token38] = ACTIONS(769), - [aux_sym_comparison_operator_token39] = ACTIONS(769), - [aux_sym_comparison_operator_token40] = ACTIONS(769), - [aux_sym_comparison_operator_token41] = ACTIONS(769), - [aux_sym_comparison_operator_token42] = ACTIONS(769), - [aux_sym_comparison_operator_token43] = ACTIONS(769), - [aux_sym_comparison_operator_token44] = ACTIONS(769), - [aux_sym_comparison_operator_token45] = ACTIONS(769), - [aux_sym_comparison_operator_token46] = ACTIONS(769), - [aux_sym_comparison_operator_token47] = ACTIONS(769), - [aux_sym_comparison_operator_token48] = ACTIONS(769), - [aux_sym_comparison_operator_token49] = ACTIONS(769), - [aux_sym_comparison_operator_token50] = ACTIONS(769), - [aux_sym_format_operator_token1] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(769), - [aux_sym_logical_expression_token1] = ACTIONS(769), - [aux_sym_logical_expression_token2] = ACTIONS(769), - [aux_sym_logical_expression_token3] = ACTIONS(769), - [aux_sym_bitwise_expression_token1] = ACTIONS(769), - [aux_sym_bitwise_expression_token2] = ACTIONS(769), - [aux_sym_bitwise_expression_token3] = ACTIONS(769), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_DOT_DOT] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_elseif_clause_token1] = ACTIONS(1374), + [aux_sym_else_clause_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), }, [308] = { - [sym_elseif_clauses] = STATE(380), - [sym_elseif_clause] = STATE(323), - [sym_else_clause] = STATE(432), - [aux_sym_elseif_clauses_repeat1] = STATE(323), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1337), - [sym_hexadecimal_integer_literal] = ACTIONS(1337), - [sym_real_literal] = ACTIONS(1337), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1337), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1337), - [sym_verbatim_string_characters] = ACTIONS(1337), - [sym_verbatim_here_string_characters] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [aux_sym_comparison_operator_token37] = ACTIONS(1337), - [aux_sym_comparison_operator_token50] = ACTIONS(1337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1337), - [anon_sym_DOLLAR_CARET] = ACTIONS(1337), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1337), - [anon_sym_DOLLAR_] = ACTIONS(1337), - [aux_sym_variable_token1] = ACTIONS(1337), - [aux_sym_variable_token2] = ACTIONS(1337), - [sym_braced_variable] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [aux_sym_if_statement_token1] = ACTIONS(1337), - [aux_sym_elseif_clause_token1] = ACTIONS(1339), - [aux_sym_else_clause_token1] = ACTIONS(1341), - [aux_sym_switch_statement_token1] = ACTIONS(1337), - [aux_sym_foreach_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token1] = ACTIONS(1337), - [aux_sym_while_statement_token1] = ACTIONS(1337), - [aux_sym_do_statement_token1] = ACTIONS(1337), - [aux_sym_function_statement_token1] = ACTIONS(1337), - [aux_sym_function_statement_token2] = ACTIONS(1337), - [aux_sym_function_statement_token3] = ACTIONS(1337), - [aux_sym_flow_control_statement_token1] = ACTIONS(1337), - [aux_sym_flow_control_statement_token2] = ACTIONS(1337), - [aux_sym_flow_control_statement_token3] = ACTIONS(1337), - [aux_sym_flow_control_statement_token4] = ACTIONS(1337), - [aux_sym_flow_control_statement_token5] = ACTIONS(1337), - [sym_label] = ACTIONS(1337), - [aux_sym_trap_statement_token1] = ACTIONS(1337), - [aux_sym_try_statement_token1] = ACTIONS(1337), - [aux_sym_data_statement_token1] = ACTIONS(1337), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1337), - [aux_sym_parallel_statement_token1] = ACTIONS(1337), - [aux_sym_sequence_statement_token1] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_command_name_token1] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [aux_sym_foreach_command_token1] = ACTIONS(1337), - [aux_sym_class_statement_token1] = ACTIONS(1337), - [aux_sym_enum_statement_token1] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_AT_LPAREN] = ACTIONS(1337), - [anon_sym_AT_LBRACE] = ACTIONS(1337), + [sym_comment] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(733), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_DOT2] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), + [sym__statement_terminator] = ACTIONS(695), }, [309] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(251), - [sym_real_literal] = ACTIONS(251), - [aux_sym_expandable_string_literal_token1] = ACTIONS(251), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(251), - [sym_verbatim_string_characters] = ACTIONS(251), - [sym_verbatim_here_string_characters] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(251), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(251), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(251), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(251), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(251), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(251), - [anon_sym_2_GT_AMP1] = ACTIONS(251), - [anon_sym_3_GT_AMP1] = ACTIONS(251), - [anon_sym_4_GT_AMP1] = ACTIONS(251), - [anon_sym_5_GT_AMP1] = ACTIONS(251), - [anon_sym_6_GT_AMP1] = ACTIONS(251), - [anon_sym_STAR_GT_AMP2] = ACTIONS(251), - [anon_sym_1_GT_AMP2] = ACTIONS(251), - [anon_sym_3_GT_AMP2] = ACTIONS(251), - [anon_sym_4_GT_AMP2] = ACTIONS(251), - [anon_sym_5_GT_AMP2] = ACTIONS(251), - [anon_sym_6_GT_AMP2] = ACTIONS(251), - [aux_sym_comparison_operator_token37] = ACTIONS(251), - [aux_sym_comparison_operator_token50] = ACTIONS(251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_CARET] = ACTIONS(251), - [anon_sym_DOLLAR_QMARK] = ACTIONS(251), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(251), - [sym_braced_variable] = ACTIONS(251), - [sym_command_parameter] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [sym_stop_parsing] = ACTIONS(251), - [anon_sym_SPACE] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(251), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_AT_LPAREN] = ACTIONS(251), - [anon_sym_AT_LBRACE] = ACTIONS(251), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(251), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), + [sym_decimal_integer_literal] = ACTIONS(1380), + [sym_hexadecimal_integer_literal] = ACTIONS(1380), + [sym_real_literal] = ACTIONS(1380), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1380), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1380), + [sym_verbatim_string_characters] = ACTIONS(1380), + [sym_verbatim_here_string_characters] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [aux_sym_comparison_operator_token37] = ACTIONS(1380), + [aux_sym_comparison_operator_token50] = ACTIONS(1380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1380), + [anon_sym_DOLLAR_CARET] = ACTIONS(1380), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1380), + [anon_sym_DOLLAR_] = ACTIONS(1380), + [aux_sym_variable_token1] = ACTIONS(1380), + [aux_sym_variable_token2] = ACTIONS(1380), + [sym_braced_variable] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_COMMA] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [aux_sym_if_statement_token1] = ACTIONS(1380), + [aux_sym_switch_statement_token1] = ACTIONS(1380), + [aux_sym_foreach_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token1] = ACTIONS(1380), + [aux_sym_while_statement_token1] = ACTIONS(1380), + [aux_sym_do_statement_token1] = ACTIONS(1380), + [aux_sym_function_statement_token1] = ACTIONS(1380), + [aux_sym_function_statement_token2] = ACTIONS(1380), + [aux_sym_function_statement_token3] = ACTIONS(1380), + [aux_sym_flow_control_statement_token1] = ACTIONS(1380), + [aux_sym_flow_control_statement_token2] = ACTIONS(1380), + [aux_sym_flow_control_statement_token3] = ACTIONS(1380), + [aux_sym_flow_control_statement_token4] = ACTIONS(1380), + [aux_sym_flow_control_statement_token5] = ACTIONS(1380), + [sym_label] = ACTIONS(1380), + [aux_sym_trap_statement_token1] = ACTIONS(1380), + [aux_sym_try_statement_token1] = ACTIONS(1380), + [aux_sym_catch_clause_token1] = ACTIONS(1380), + [aux_sym_finally_clause_token1] = ACTIONS(1380), + [aux_sym_data_statement_token1] = ACTIONS(1380), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1380), + [aux_sym_parallel_statement_token1] = ACTIONS(1380), + [aux_sym_sequence_statement_token1] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [aux_sym_command_name_token1] = ACTIONS(1380), + [aux_sym_command_name_token2] = ACTIONS(1380), + [aux_sym_command_name_token3] = ACTIONS(1380), + [aux_sym_command_name_token4] = ACTIONS(1380), + [aux_sym_command_name_token5] = ACTIONS(1380), + [aux_sym_command_name_token6] = ACTIONS(1380), + [aux_sym_command_name_token7] = ACTIONS(1380), + [aux_sym_command_name_token8] = ACTIONS(1380), + [aux_sym_command_name_token9] = ACTIONS(1380), + [aux_sym_command_name_token10] = ACTIONS(1380), + [aux_sym_command_name_token11] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [aux_sym_foreach_command_token1] = ACTIONS(1380), + [aux_sym_class_statement_token1] = ACTIONS(1380), + [aux_sym_enum_statement_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1380), + [anon_sym_AT_LPAREN] = ACTIONS(1380), + [anon_sym_AT_LBRACE] = ACTIONS(1380), }, [310] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(251), - [sym_hexadecimal_integer_literal] = ACTIONS(251), - [sym_real_literal] = ACTIONS(251), - [aux_sym_expandable_string_literal_token1] = ACTIONS(251), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(251), - [sym_verbatim_string_characters] = ACTIONS(251), - [sym_verbatim_here_string_characters] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_2_GT] = ACTIONS(251), - [anon_sym_2_GT_GT] = ACTIONS(251), - [anon_sym_3_GT] = ACTIONS(251), - [anon_sym_3_GT_GT] = ACTIONS(251), - [anon_sym_4_GT] = ACTIONS(251), - [anon_sym_4_GT_GT] = ACTIONS(251), - [anon_sym_5_GT] = ACTIONS(251), - [anon_sym_5_GT_GT] = ACTIONS(251), - [anon_sym_6_GT] = ACTIONS(251), - [anon_sym_6_GT_GT] = ACTIONS(251), - [anon_sym_STAR_GT] = ACTIONS(251), - [anon_sym_STAR_GT_GT] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_STAR_GT_AMP1] = ACTIONS(251), - [anon_sym_2_GT_AMP1] = ACTIONS(251), - [anon_sym_3_GT_AMP1] = ACTIONS(251), - [anon_sym_4_GT_AMP1] = ACTIONS(251), - [anon_sym_5_GT_AMP1] = ACTIONS(251), - [anon_sym_6_GT_AMP1] = ACTIONS(251), - [anon_sym_STAR_GT_AMP2] = ACTIONS(251), - [anon_sym_1_GT_AMP2] = ACTIONS(251), - [anon_sym_3_GT_AMP2] = ACTIONS(251), - [anon_sym_4_GT_AMP2] = ACTIONS(251), - [anon_sym_5_GT_AMP2] = ACTIONS(251), - [anon_sym_6_GT_AMP2] = ACTIONS(251), - [aux_sym_comparison_operator_token37] = ACTIONS(251), - [aux_sym_comparison_operator_token50] = ACTIONS(251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_CARET] = ACTIONS(251), - [anon_sym_DOLLAR_QMARK] = ACTIONS(251), - [anon_sym_DOLLAR_] = ACTIONS(251), - [aux_sym_variable_token1] = ACTIONS(251), - [aux_sym_variable_token2] = ACTIONS(251), - [sym_braced_variable] = ACTIONS(251), - [sym_command_parameter] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(251), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [sym_stop_parsing] = ACTIONS(251), - [anon_sym_SPACE] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(251), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_AT_LPAREN] = ACTIONS(251), - [anon_sym_AT_LBRACE] = ACTIONS(251), - [anon_sym_DOT2] = ACTIONS(251), - [anon_sym_COLON_COLON] = ACTIONS(251), - [aux_sym_invokation_foreach_expression_token1] = ACTIONS(253), - [sym__statement_terminator] = ACTIONS(253), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_elseif_clause_token1] = ACTIONS(1368), + [aux_sym_else_clause_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), }, [311] = { - [aux_sym_command_argument_sep_repeat1] = STATE(318), + [sym_finally_clause] = STATE(367), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1345), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), + [sym_decimal_integer_literal] = ACTIONS(1382), + [sym_hexadecimal_integer_literal] = ACTIONS(1382), + [sym_real_literal] = ACTIONS(1382), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1382), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1382), + [sym_verbatim_string_characters] = ACTIONS(1382), + [sym_verbatim_here_string_characters] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [aux_sym_comparison_operator_token37] = ACTIONS(1382), + [aux_sym_comparison_operator_token50] = ACTIONS(1382), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1382), + [anon_sym_DOLLAR_CARET] = ACTIONS(1382), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1382), + [anon_sym_DOLLAR_] = ACTIONS(1382), + [aux_sym_variable_token1] = ACTIONS(1382), + [aux_sym_variable_token2] = ACTIONS(1382), + [sym_braced_variable] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token2] = ACTIONS(1382), + [aux_sym_function_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token1] = ACTIONS(1382), + [aux_sym_flow_control_statement_token2] = ACTIONS(1382), + [aux_sym_flow_control_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token4] = ACTIONS(1382), + [aux_sym_flow_control_statement_token5] = ACTIONS(1382), + [sym_label] = ACTIONS(1382), + [aux_sym_trap_statement_token1] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_finally_clause_token1] = ACTIONS(1295), + [aux_sym_data_statement_token1] = ACTIONS(1382), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1382), + [aux_sym_parallel_statement_token1] = ACTIONS(1382), + [aux_sym_sequence_statement_token1] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_command_name_token1] = ACTIONS(1382), + [aux_sym_command_name_token2] = ACTIONS(1382), + [aux_sym_command_name_token3] = ACTIONS(1382), + [aux_sym_command_name_token4] = ACTIONS(1382), + [aux_sym_command_name_token5] = ACTIONS(1382), + [aux_sym_command_name_token6] = ACTIONS(1382), + [aux_sym_command_name_token7] = ACTIONS(1382), + [aux_sym_command_name_token8] = ACTIONS(1382), + [aux_sym_command_name_token9] = ACTIONS(1382), + [aux_sym_command_name_token10] = ACTIONS(1382), + [aux_sym_command_name_token11] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [aux_sym_foreach_command_token1] = ACTIONS(1382), + [aux_sym_class_statement_token1] = ACTIONS(1382), + [aux_sym_enum_statement_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LBRACE] = ACTIONS(1382), }, [312] = { - [sym_format_operator] = STATE(580), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(809), - [aux_sym_comparison_operator_token2] = ACTIONS(809), - [aux_sym_comparison_operator_token3] = ACTIONS(809), - [aux_sym_comparison_operator_token4] = ACTIONS(809), - [aux_sym_comparison_operator_token5] = ACTIONS(809), - [aux_sym_comparison_operator_token6] = ACTIONS(809), - [aux_sym_comparison_operator_token7] = ACTIONS(809), - [aux_sym_comparison_operator_token8] = ACTIONS(809), - [aux_sym_comparison_operator_token9] = ACTIONS(809), - [aux_sym_comparison_operator_token10] = ACTIONS(809), - [aux_sym_comparison_operator_token11] = ACTIONS(809), - [aux_sym_comparison_operator_token12] = ACTIONS(809), - [aux_sym_comparison_operator_token13] = ACTIONS(809), - [aux_sym_comparison_operator_token14] = ACTIONS(809), - [aux_sym_comparison_operator_token15] = ACTIONS(809), - [aux_sym_comparison_operator_token16] = ACTIONS(809), - [aux_sym_comparison_operator_token17] = ACTIONS(809), - [aux_sym_comparison_operator_token18] = ACTIONS(809), - [aux_sym_comparison_operator_token19] = ACTIONS(809), - [aux_sym_comparison_operator_token20] = ACTIONS(809), - [aux_sym_comparison_operator_token21] = ACTIONS(809), - [aux_sym_comparison_operator_token22] = ACTIONS(809), - [aux_sym_comparison_operator_token23] = ACTIONS(809), - [aux_sym_comparison_operator_token24] = ACTIONS(809), - [aux_sym_comparison_operator_token25] = ACTIONS(809), - [aux_sym_comparison_operator_token26] = ACTIONS(809), - [aux_sym_comparison_operator_token27] = ACTIONS(809), - [aux_sym_comparison_operator_token28] = ACTIONS(811), - [aux_sym_comparison_operator_token29] = ACTIONS(809), - [aux_sym_comparison_operator_token30] = ACTIONS(809), - [aux_sym_comparison_operator_token31] = ACTIONS(809), - [aux_sym_comparison_operator_token32] = ACTIONS(809), - [aux_sym_comparison_operator_token33] = ACTIONS(809), - [aux_sym_comparison_operator_token34] = ACTIONS(811), - [aux_sym_comparison_operator_token35] = ACTIONS(809), - [aux_sym_comparison_operator_token36] = ACTIONS(809), - [aux_sym_comparison_operator_token37] = ACTIONS(809), - [aux_sym_comparison_operator_token38] = ACTIONS(809), - [aux_sym_comparison_operator_token39] = ACTIONS(809), - [aux_sym_comparison_operator_token40] = ACTIONS(809), - [aux_sym_comparison_operator_token41] = ACTIONS(809), - [aux_sym_comparison_operator_token42] = ACTIONS(809), - [aux_sym_comparison_operator_token43] = ACTIONS(809), - [aux_sym_comparison_operator_token44] = ACTIONS(809), - [aux_sym_comparison_operator_token45] = ACTIONS(809), - [aux_sym_comparison_operator_token46] = ACTIONS(809), - [aux_sym_comparison_operator_token47] = ACTIONS(809), - [aux_sym_comparison_operator_token48] = ACTIONS(809), - [aux_sym_comparison_operator_token49] = ACTIONS(809), - [aux_sym_comparison_operator_token50] = ACTIONS(809), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [aux_sym_logical_expression_token1] = ACTIONS(809), - [aux_sym_logical_expression_token2] = ACTIONS(809), - [aux_sym_logical_expression_token3] = ACTIONS(809), - [aux_sym_bitwise_expression_token1] = ACTIONS(809), - [aux_sym_bitwise_expression_token2] = ACTIONS(809), - [aux_sym_bitwise_expression_token3] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), + [sym_else_clause] = STATE(343), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1384), + [sym_hexadecimal_integer_literal] = ACTIONS(1384), + [sym_real_literal] = ACTIONS(1384), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1384), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1384), + [sym_verbatim_string_characters] = ACTIONS(1384), + [sym_verbatim_here_string_characters] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [aux_sym_comparison_operator_token37] = ACTIONS(1384), + [aux_sym_comparison_operator_token50] = ACTIONS(1384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1384), + [anon_sym_DOLLAR_CARET] = ACTIONS(1384), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1384), + [anon_sym_DOLLAR_] = ACTIONS(1384), + [aux_sym_variable_token1] = ACTIONS(1384), + [aux_sym_variable_token2] = ACTIONS(1384), + [sym_braced_variable] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [aux_sym_if_statement_token1] = ACTIONS(1384), + [aux_sym_else_clause_token1] = ACTIONS(1301), + [aux_sym_switch_statement_token1] = ACTIONS(1384), + [aux_sym_foreach_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token1] = ACTIONS(1384), + [aux_sym_while_statement_token1] = ACTIONS(1384), + [aux_sym_do_statement_token1] = ACTIONS(1384), + [aux_sym_function_statement_token1] = ACTIONS(1384), + [aux_sym_function_statement_token2] = ACTIONS(1384), + [aux_sym_function_statement_token3] = ACTIONS(1384), + [aux_sym_flow_control_statement_token1] = ACTIONS(1384), + [aux_sym_flow_control_statement_token2] = ACTIONS(1384), + [aux_sym_flow_control_statement_token3] = ACTIONS(1384), + [aux_sym_flow_control_statement_token4] = ACTIONS(1384), + [aux_sym_flow_control_statement_token5] = ACTIONS(1384), + [sym_label] = ACTIONS(1384), + [aux_sym_trap_statement_token1] = ACTIONS(1384), + [aux_sym_try_statement_token1] = ACTIONS(1384), + [aux_sym_data_statement_token1] = ACTIONS(1384), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1384), + [aux_sym_parallel_statement_token1] = ACTIONS(1384), + [aux_sym_sequence_statement_token1] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [aux_sym_command_name_token1] = ACTIONS(1384), + [aux_sym_command_name_token2] = ACTIONS(1384), + [aux_sym_command_name_token3] = ACTIONS(1384), + [aux_sym_command_name_token4] = ACTIONS(1384), + [aux_sym_command_name_token5] = ACTIONS(1384), + [aux_sym_command_name_token6] = ACTIONS(1384), + [aux_sym_command_name_token7] = ACTIONS(1384), + [aux_sym_command_name_token8] = ACTIONS(1384), + [aux_sym_command_name_token9] = ACTIONS(1384), + [aux_sym_command_name_token10] = ACTIONS(1384), + [aux_sym_command_name_token11] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [aux_sym_foreach_command_token1] = ACTIONS(1384), + [aux_sym_class_statement_token1] = ACTIONS(1384), + [aux_sym_enum_statement_token1] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1384), + [anon_sym_AT_LPAREN] = ACTIONS(1384), + [anon_sym_AT_LBRACE] = ACTIONS(1384), }, [313] = { - [aux_sym_command_argument_sep_repeat1] = STATE(315), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1347), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), - [sym__statement_terminator] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1386), + [sym_hexadecimal_integer_literal] = ACTIONS(1386), + [sym_real_literal] = ACTIONS(1386), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1386), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1386), + [sym_verbatim_string_characters] = ACTIONS(1386), + [sym_verbatim_here_string_characters] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [aux_sym_comparison_operator_token37] = ACTIONS(1386), + [aux_sym_comparison_operator_token50] = ACTIONS(1386), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1386), + [anon_sym_DOLLAR_CARET] = ACTIONS(1386), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1386), + [anon_sym_DOLLAR_] = ACTIONS(1386), + [aux_sym_variable_token1] = ACTIONS(1386), + [aux_sym_variable_token2] = ACTIONS(1386), + [sym_braced_variable] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [aux_sym_if_statement_token1] = ACTIONS(1386), + [aux_sym_elseif_clause_token1] = ACTIONS(1386), + [aux_sym_else_clause_token1] = ACTIONS(1386), + [aux_sym_switch_statement_token1] = ACTIONS(1386), + [aux_sym_foreach_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token1] = ACTIONS(1386), + [aux_sym_while_statement_token1] = ACTIONS(1386), + [aux_sym_do_statement_token1] = ACTIONS(1386), + [aux_sym_function_statement_token1] = ACTIONS(1386), + [aux_sym_function_statement_token2] = ACTIONS(1386), + [aux_sym_function_statement_token3] = ACTIONS(1386), + [aux_sym_flow_control_statement_token1] = ACTIONS(1386), + [aux_sym_flow_control_statement_token2] = ACTIONS(1386), + [aux_sym_flow_control_statement_token3] = ACTIONS(1386), + [aux_sym_flow_control_statement_token4] = ACTIONS(1386), + [aux_sym_flow_control_statement_token5] = ACTIONS(1386), + [sym_label] = ACTIONS(1386), + [aux_sym_trap_statement_token1] = ACTIONS(1386), + [aux_sym_try_statement_token1] = ACTIONS(1386), + [aux_sym_data_statement_token1] = ACTIONS(1386), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1386), + [aux_sym_parallel_statement_token1] = ACTIONS(1386), + [aux_sym_sequence_statement_token1] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [aux_sym_command_name_token1] = ACTIONS(1386), + [aux_sym_command_name_token2] = ACTIONS(1386), + [aux_sym_command_name_token3] = ACTIONS(1386), + [aux_sym_command_name_token4] = ACTIONS(1386), + [aux_sym_command_name_token5] = ACTIONS(1386), + [aux_sym_command_name_token6] = ACTIONS(1386), + [aux_sym_command_name_token7] = ACTIONS(1386), + [aux_sym_command_name_token8] = ACTIONS(1386), + [aux_sym_command_name_token9] = ACTIONS(1386), + [aux_sym_command_name_token10] = ACTIONS(1386), + [aux_sym_command_name_token11] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [aux_sym_foreach_command_token1] = ACTIONS(1386), + [aux_sym_class_statement_token1] = ACTIONS(1386), + [aux_sym_enum_statement_token1] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1386), + [anon_sym_AT_LPAREN] = ACTIONS(1386), + [anon_sym_AT_LBRACE] = ACTIONS(1386), }, [314] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1388), + [sym_hexadecimal_integer_literal] = ACTIONS(1388), + [sym_real_literal] = ACTIONS(1388), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1388), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1388), + [sym_verbatim_string_characters] = ACTIONS(1388), + [sym_verbatim_here_string_characters] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [aux_sym_comparison_operator_token37] = ACTIONS(1388), + [aux_sym_comparison_operator_token50] = ACTIONS(1388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1388), + [anon_sym_DOLLAR_CARET] = ACTIONS(1388), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1388), + [anon_sym_DOLLAR_] = ACTIONS(1388), + [aux_sym_variable_token1] = ACTIONS(1388), + [aux_sym_variable_token2] = ACTIONS(1388), + [sym_braced_variable] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [aux_sym_if_statement_token1] = ACTIONS(1388), + [aux_sym_switch_statement_token1] = ACTIONS(1388), + [aux_sym_foreach_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token1] = ACTIONS(1388), + [aux_sym_while_statement_token1] = ACTIONS(1388), + [aux_sym_do_statement_token1] = ACTIONS(1388), + [aux_sym_function_statement_token1] = ACTIONS(1388), + [aux_sym_function_statement_token2] = ACTIONS(1388), + [aux_sym_function_statement_token3] = ACTIONS(1388), + [aux_sym_flow_control_statement_token1] = ACTIONS(1388), + [aux_sym_flow_control_statement_token2] = ACTIONS(1388), + [aux_sym_flow_control_statement_token3] = ACTIONS(1388), + [aux_sym_flow_control_statement_token4] = ACTIONS(1388), + [aux_sym_flow_control_statement_token5] = ACTIONS(1388), + [sym_label] = ACTIONS(1388), + [aux_sym_trap_statement_token1] = ACTIONS(1388), + [aux_sym_try_statement_token1] = ACTIONS(1388), + [aux_sym_catch_clause_token1] = ACTIONS(1388), + [aux_sym_finally_clause_token1] = ACTIONS(1388), + [aux_sym_data_statement_token1] = ACTIONS(1388), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1388), + [aux_sym_parallel_statement_token1] = ACTIONS(1388), + [aux_sym_sequence_statement_token1] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [aux_sym_command_name_token1] = ACTIONS(1388), + [aux_sym_command_name_token2] = ACTIONS(1388), + [aux_sym_command_name_token3] = ACTIONS(1388), + [aux_sym_command_name_token4] = ACTIONS(1388), + [aux_sym_command_name_token5] = ACTIONS(1388), + [aux_sym_command_name_token6] = ACTIONS(1388), + [aux_sym_command_name_token7] = ACTIONS(1388), + [aux_sym_command_name_token8] = ACTIONS(1388), + [aux_sym_command_name_token9] = ACTIONS(1388), + [aux_sym_command_name_token10] = ACTIONS(1388), + [aux_sym_command_name_token11] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [aux_sym_foreach_command_token1] = ACTIONS(1388), + [aux_sym_class_statement_token1] = ACTIONS(1388), + [aux_sym_enum_statement_token1] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), + [anon_sym_AT_LPAREN] = ACTIONS(1388), + [anon_sym_AT_LBRACE] = ACTIONS(1388), + }, + [315] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_catch_clause_token1] = ACTIONS(1374), + [aux_sym_finally_clause_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_elseif_clause_token1] = ACTIONS(1368), + [aux_sym_else_clause_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), + }, + [317] = { [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(813), - [aux_sym_comparison_operator_token2] = ACTIONS(813), - [aux_sym_comparison_operator_token3] = ACTIONS(813), - [aux_sym_comparison_operator_token4] = ACTIONS(813), - [aux_sym_comparison_operator_token5] = ACTIONS(813), - [aux_sym_comparison_operator_token6] = ACTIONS(813), - [aux_sym_comparison_operator_token7] = ACTIONS(813), - [aux_sym_comparison_operator_token8] = ACTIONS(813), - [aux_sym_comparison_operator_token9] = ACTIONS(813), - [aux_sym_comparison_operator_token10] = ACTIONS(813), - [aux_sym_comparison_operator_token11] = ACTIONS(813), - [aux_sym_comparison_operator_token12] = ACTIONS(813), - [aux_sym_comparison_operator_token13] = ACTIONS(813), - [aux_sym_comparison_operator_token14] = ACTIONS(813), - [aux_sym_comparison_operator_token15] = ACTIONS(813), - [aux_sym_comparison_operator_token16] = ACTIONS(813), - [aux_sym_comparison_operator_token17] = ACTIONS(813), - [aux_sym_comparison_operator_token18] = ACTIONS(813), - [aux_sym_comparison_operator_token19] = ACTIONS(813), - [aux_sym_comparison_operator_token20] = ACTIONS(813), - [aux_sym_comparison_operator_token21] = ACTIONS(813), - [aux_sym_comparison_operator_token22] = ACTIONS(813), - [aux_sym_comparison_operator_token23] = ACTIONS(813), - [aux_sym_comparison_operator_token24] = ACTIONS(813), - [aux_sym_comparison_operator_token25] = ACTIONS(813), - [aux_sym_comparison_operator_token26] = ACTIONS(813), - [aux_sym_comparison_operator_token27] = ACTIONS(813), - [aux_sym_comparison_operator_token28] = ACTIONS(815), - [aux_sym_comparison_operator_token29] = ACTIONS(813), - [aux_sym_comparison_operator_token30] = ACTIONS(813), - [aux_sym_comparison_operator_token31] = ACTIONS(813), - [aux_sym_comparison_operator_token32] = ACTIONS(813), - [aux_sym_comparison_operator_token33] = ACTIONS(813), - [aux_sym_comparison_operator_token34] = ACTIONS(815), - [aux_sym_comparison_operator_token35] = ACTIONS(813), - [aux_sym_comparison_operator_token36] = ACTIONS(813), - [aux_sym_comparison_operator_token37] = ACTIONS(813), - [aux_sym_comparison_operator_token38] = ACTIONS(813), - [aux_sym_comparison_operator_token39] = ACTIONS(813), - [aux_sym_comparison_operator_token40] = ACTIONS(813), - [aux_sym_comparison_operator_token41] = ACTIONS(813), - [aux_sym_comparison_operator_token42] = ACTIONS(813), - [aux_sym_comparison_operator_token43] = ACTIONS(813), - [aux_sym_comparison_operator_token44] = ACTIONS(813), - [aux_sym_comparison_operator_token45] = ACTIONS(813), - [aux_sym_comparison_operator_token46] = ACTIONS(813), - [aux_sym_comparison_operator_token47] = ACTIONS(813), - [aux_sym_comparison_operator_token48] = ACTIONS(813), - [aux_sym_comparison_operator_token49] = ACTIONS(813), - [aux_sym_comparison_operator_token50] = ACTIONS(813), - [aux_sym_format_operator_token1] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_COMMA] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [aux_sym_logical_expression_token1] = ACTIONS(813), - [aux_sym_logical_expression_token2] = ACTIONS(813), - [aux_sym_logical_expression_token3] = ACTIONS(813), - [aux_sym_bitwise_expression_token1] = ACTIONS(813), - [aux_sym_bitwise_expression_token2] = ACTIONS(813), - [aux_sym_bitwise_expression_token3] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(1351), - }, - [315] = { - [aux_sym_command_argument_sep_repeat1] = STATE(315), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1353), - [sym_hexadecimal_integer_literal] = ACTIONS(1353), - [sym_real_literal] = ACTIONS(1353), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1353), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1353), - [sym_verbatim_string_characters] = ACTIONS(1353), - [sym_verbatim_here_string_characters] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_2_GT] = ACTIONS(1353), - [anon_sym_2_GT_GT] = ACTIONS(1353), - [anon_sym_3_GT] = ACTIONS(1353), - [anon_sym_3_GT_GT] = ACTIONS(1353), - [anon_sym_4_GT] = ACTIONS(1353), - [anon_sym_4_GT_GT] = ACTIONS(1353), - [anon_sym_5_GT] = ACTIONS(1353), - [anon_sym_5_GT_GT] = ACTIONS(1353), - [anon_sym_6_GT] = ACTIONS(1353), - [anon_sym_6_GT_GT] = ACTIONS(1353), - [anon_sym_STAR_GT] = ACTIONS(1353), - [anon_sym_STAR_GT_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1353), - [anon_sym_2_GT_AMP1] = ACTIONS(1353), - [anon_sym_3_GT_AMP1] = ACTIONS(1353), - [anon_sym_4_GT_AMP1] = ACTIONS(1353), - [anon_sym_5_GT_AMP1] = ACTIONS(1353), - [anon_sym_6_GT_AMP1] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1353), - [anon_sym_1_GT_AMP2] = ACTIONS(1353), - [anon_sym_3_GT_AMP2] = ACTIONS(1353), - [anon_sym_4_GT_AMP2] = ACTIONS(1353), - [anon_sym_5_GT_AMP2] = ACTIONS(1353), - [anon_sym_6_GT_AMP2] = ACTIONS(1353), - [aux_sym_comparison_operator_token37] = ACTIONS(1353), - [aux_sym_comparison_operator_token50] = ACTIONS(1353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1353), - [anon_sym_DOLLAR_CARET] = ACTIONS(1353), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1353), - [anon_sym_DOLLAR_] = ACTIONS(1353), - [aux_sym_variable_token1] = ACTIONS(1353), - [aux_sym_variable_token2] = ACTIONS(1353), - [sym_braced_variable] = ACTIONS(1353), - [sym_generic_token] = ACTIONS(1353), - [sym_command_parameter] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [sym_stop_parsing] = ACTIONS(1353), - [anon_sym_SPACE] = ACTIONS(1355), - [anon_sym_COLON] = ACTIONS(1353), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LBRACE] = ACTIONS(1353), - [sym__statement_terminator] = ACTIONS(1358), - }, - [316] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1555), - [sym_logical_expression] = STATE(1392), - [sym_bitwise_expression] = STATE(1310), - [sym_comparison_expression] = STATE(556), - [sym_additive_expression] = STATE(526), - [sym_multiplicative_expression] = STATE(371), - [sym_format_expression] = STATE(320), - [sym_range_expression] = STATE(321), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(298), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), - [sym_attribute_argument] = STATE(1616), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [sym_simple_name] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [317] = { - [sym_elseif_clauses] = STATE(418), - [sym_elseif_clause] = STATE(364), - [sym_else_clause] = STATE(530), - [aux_sym_elseif_clauses_repeat1] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1337), - [sym_hexadecimal_integer_literal] = ACTIONS(1337), - [sym_real_literal] = ACTIONS(1337), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1337), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1337), - [sym_verbatim_string_characters] = ACTIONS(1337), - [sym_verbatim_here_string_characters] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [aux_sym_comparison_operator_token37] = ACTIONS(1337), - [aux_sym_comparison_operator_token50] = ACTIONS(1337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1337), - [anon_sym_DOLLAR_CARET] = ACTIONS(1337), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1337), - [anon_sym_DOLLAR_] = ACTIONS(1337), - [aux_sym_variable_token1] = ACTIONS(1337), - [aux_sym_variable_token2] = ACTIONS(1337), - [sym_braced_variable] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [aux_sym_if_statement_token1] = ACTIONS(1337), - [aux_sym_elseif_clause_token1] = ACTIONS(1362), - [aux_sym_else_clause_token1] = ACTIONS(1364), - [aux_sym_switch_statement_token1] = ACTIONS(1337), - [aux_sym_foreach_statement_token1] = ACTIONS(1337), - [aux_sym_for_statement_token1] = ACTIONS(1337), - [aux_sym_while_statement_token1] = ACTIONS(1337), - [aux_sym_do_statement_token1] = ACTIONS(1337), - [aux_sym_function_statement_token1] = ACTIONS(1337), - [aux_sym_function_statement_token2] = ACTIONS(1337), - [aux_sym_function_statement_token3] = ACTIONS(1337), - [aux_sym_flow_control_statement_token1] = ACTIONS(1337), - [aux_sym_flow_control_statement_token2] = ACTIONS(1337), - [aux_sym_flow_control_statement_token3] = ACTIONS(1337), - [aux_sym_flow_control_statement_token4] = ACTIONS(1337), - [aux_sym_flow_control_statement_token5] = ACTIONS(1337), - [sym_label] = ACTIONS(1337), - [aux_sym_trap_statement_token1] = ACTIONS(1337), - [aux_sym_try_statement_token1] = ACTIONS(1337), - [aux_sym_data_statement_token1] = ACTIONS(1337), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1337), - [aux_sym_parallel_statement_token1] = ACTIONS(1337), - [aux_sym_sequence_statement_token1] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_command_name_token1] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [aux_sym_foreach_command_token1] = ACTIONS(1337), - [aux_sym_class_statement_token1] = ACTIONS(1337), - [aux_sym_enum_statement_token1] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_AT_LPAREN] = ACTIONS(1337), - [anon_sym_AT_LBRACE] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(733), + [aux_sym_comparison_operator_token1] = ACTIONS(695), + [aux_sym_comparison_operator_token2] = ACTIONS(695), + [aux_sym_comparison_operator_token3] = ACTIONS(695), + [aux_sym_comparison_operator_token4] = ACTIONS(695), + [aux_sym_comparison_operator_token5] = ACTIONS(695), + [aux_sym_comparison_operator_token6] = ACTIONS(695), + [aux_sym_comparison_operator_token7] = ACTIONS(695), + [aux_sym_comparison_operator_token8] = ACTIONS(695), + [aux_sym_comparison_operator_token9] = ACTIONS(695), + [aux_sym_comparison_operator_token10] = ACTIONS(695), + [aux_sym_comparison_operator_token11] = ACTIONS(695), + [aux_sym_comparison_operator_token12] = ACTIONS(695), + [aux_sym_comparison_operator_token13] = ACTIONS(695), + [aux_sym_comparison_operator_token14] = ACTIONS(695), + [aux_sym_comparison_operator_token15] = ACTIONS(695), + [aux_sym_comparison_operator_token16] = ACTIONS(695), + [aux_sym_comparison_operator_token17] = ACTIONS(695), + [aux_sym_comparison_operator_token18] = ACTIONS(695), + [aux_sym_comparison_operator_token19] = ACTIONS(695), + [aux_sym_comparison_operator_token20] = ACTIONS(695), + [aux_sym_comparison_operator_token21] = ACTIONS(695), + [aux_sym_comparison_operator_token22] = ACTIONS(695), + [aux_sym_comparison_operator_token23] = ACTIONS(695), + [aux_sym_comparison_operator_token24] = ACTIONS(695), + [aux_sym_comparison_operator_token25] = ACTIONS(695), + [aux_sym_comparison_operator_token26] = ACTIONS(695), + [aux_sym_comparison_operator_token27] = ACTIONS(695), + [aux_sym_comparison_operator_token28] = ACTIONS(697), + [aux_sym_comparison_operator_token29] = ACTIONS(695), + [aux_sym_comparison_operator_token30] = ACTIONS(695), + [aux_sym_comparison_operator_token31] = ACTIONS(695), + [aux_sym_comparison_operator_token32] = ACTIONS(695), + [aux_sym_comparison_operator_token33] = ACTIONS(695), + [aux_sym_comparison_operator_token34] = ACTIONS(697), + [aux_sym_comparison_operator_token35] = ACTIONS(695), + [aux_sym_comparison_operator_token36] = ACTIONS(695), + [aux_sym_comparison_operator_token37] = ACTIONS(695), + [aux_sym_comparison_operator_token38] = ACTIONS(695), + [aux_sym_comparison_operator_token39] = ACTIONS(695), + [aux_sym_comparison_operator_token40] = ACTIONS(695), + [aux_sym_comparison_operator_token41] = ACTIONS(695), + [aux_sym_comparison_operator_token42] = ACTIONS(695), + [aux_sym_comparison_operator_token43] = ACTIONS(695), + [aux_sym_comparison_operator_token44] = ACTIONS(695), + [aux_sym_comparison_operator_token45] = ACTIONS(695), + [aux_sym_comparison_operator_token46] = ACTIONS(695), + [aux_sym_comparison_operator_token47] = ACTIONS(695), + [aux_sym_comparison_operator_token48] = ACTIONS(695), + [aux_sym_comparison_operator_token49] = ACTIONS(695), + [aux_sym_comparison_operator_token50] = ACTIONS(695), + [aux_sym_format_operator_token1] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [aux_sym_logical_expression_token1] = ACTIONS(695), + [aux_sym_logical_expression_token2] = ACTIONS(695), + [aux_sym_logical_expression_token3] = ACTIONS(695), + [aux_sym_bitwise_expression_token1] = ACTIONS(695), + [aux_sym_bitwise_expression_token2] = ACTIONS(695), + [aux_sym_bitwise_expression_token3] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(737), + [anon_sym_DOT2] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(743), + [sym__statement_terminator] = ACTIONS(695), }, [318] = { - [aux_sym_command_argument_sep_repeat1] = STATE(318), + [sym_else_clause] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(1396), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1353), - [sym_hexadecimal_integer_literal] = ACTIONS(1353), - [sym_real_literal] = ACTIONS(1353), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1353), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1353), - [sym_verbatim_string_characters] = ACTIONS(1353), - [sym_verbatim_here_string_characters] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_2_GT] = ACTIONS(1353), - [anon_sym_2_GT_GT] = ACTIONS(1353), - [anon_sym_3_GT] = ACTIONS(1353), - [anon_sym_3_GT_GT] = ACTIONS(1353), - [anon_sym_4_GT] = ACTIONS(1353), - [anon_sym_4_GT_GT] = ACTIONS(1353), - [anon_sym_5_GT] = ACTIONS(1353), - [anon_sym_5_GT_GT] = ACTIONS(1353), - [anon_sym_6_GT] = ACTIONS(1353), - [anon_sym_6_GT_GT] = ACTIONS(1353), - [anon_sym_STAR_GT] = ACTIONS(1353), - [anon_sym_STAR_GT_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1353), - [anon_sym_2_GT_AMP1] = ACTIONS(1353), - [anon_sym_3_GT_AMP1] = ACTIONS(1353), - [anon_sym_4_GT_AMP1] = ACTIONS(1353), - [anon_sym_5_GT_AMP1] = ACTIONS(1353), - [anon_sym_6_GT_AMP1] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1353), - [anon_sym_1_GT_AMP2] = ACTIONS(1353), - [anon_sym_3_GT_AMP2] = ACTIONS(1353), - [anon_sym_4_GT_AMP2] = ACTIONS(1353), - [anon_sym_5_GT_AMP2] = ACTIONS(1353), - [anon_sym_6_GT_AMP2] = ACTIONS(1353), - [aux_sym_comparison_operator_token37] = ACTIONS(1353), - [aux_sym_comparison_operator_token50] = ACTIONS(1353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1353), - [anon_sym_DOLLAR_CARET] = ACTIONS(1353), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1353), - [anon_sym_DOLLAR_] = ACTIONS(1353), - [aux_sym_variable_token1] = ACTIONS(1353), - [aux_sym_variable_token2] = ACTIONS(1353), - [sym_braced_variable] = ACTIONS(1353), - [sym_generic_token] = ACTIONS(1353), - [sym_command_parameter] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [sym_stop_parsing] = ACTIONS(1353), - [anon_sym_SPACE] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1353), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LBRACE] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1384), + [sym_hexadecimal_integer_literal] = ACTIONS(1384), + [sym_real_literal] = ACTIONS(1384), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1384), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1384), + [sym_verbatim_string_characters] = ACTIONS(1384), + [sym_verbatim_here_string_characters] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [aux_sym_comparison_operator_token37] = ACTIONS(1384), + [aux_sym_comparison_operator_token50] = ACTIONS(1384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1384), + [anon_sym_DOLLAR_CARET] = ACTIONS(1384), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1384), + [anon_sym_DOLLAR_] = ACTIONS(1384), + [aux_sym_variable_token1] = ACTIONS(1384), + [aux_sym_variable_token2] = ACTIONS(1384), + [sym_braced_variable] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [aux_sym_if_statement_token1] = ACTIONS(1384), + [aux_sym_else_clause_token1] = ACTIONS(1313), + [aux_sym_switch_statement_token1] = ACTIONS(1384), + [aux_sym_foreach_statement_token1] = ACTIONS(1384), + [aux_sym_for_statement_token1] = ACTIONS(1384), + [aux_sym_while_statement_token1] = ACTIONS(1384), + [aux_sym_do_statement_token1] = ACTIONS(1384), + [aux_sym_function_statement_token1] = ACTIONS(1384), + [aux_sym_function_statement_token2] = ACTIONS(1384), + [aux_sym_function_statement_token3] = ACTIONS(1384), + [aux_sym_flow_control_statement_token1] = ACTIONS(1384), + [aux_sym_flow_control_statement_token2] = ACTIONS(1384), + [aux_sym_flow_control_statement_token3] = ACTIONS(1384), + [aux_sym_flow_control_statement_token4] = ACTIONS(1384), + [aux_sym_flow_control_statement_token5] = ACTIONS(1384), + [sym_label] = ACTIONS(1384), + [aux_sym_trap_statement_token1] = ACTIONS(1384), + [aux_sym_try_statement_token1] = ACTIONS(1384), + [aux_sym_data_statement_token1] = ACTIONS(1384), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1384), + [aux_sym_parallel_statement_token1] = ACTIONS(1384), + [aux_sym_sequence_statement_token1] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [aux_sym_command_name_token1] = ACTIONS(1384), + [aux_sym_command_name_token2] = ACTIONS(1384), + [aux_sym_command_name_token3] = ACTIONS(1384), + [aux_sym_command_name_token4] = ACTIONS(1384), + [aux_sym_command_name_token5] = ACTIONS(1384), + [aux_sym_command_name_token6] = ACTIONS(1384), + [aux_sym_command_name_token7] = ACTIONS(1384), + [aux_sym_command_name_token8] = ACTIONS(1384), + [aux_sym_command_name_token9] = ACTIONS(1384), + [aux_sym_command_name_token10] = ACTIONS(1384), + [aux_sym_command_name_token11] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [aux_sym_foreach_command_token1] = ACTIONS(1384), + [aux_sym_class_statement_token1] = ACTIONS(1384), + [aux_sym_enum_statement_token1] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1384), + [anon_sym_AT_LPAREN] = ACTIONS(1384), + [anon_sym_AT_LBRACE] = ACTIONS(1384), }, [319] = { - [sym_catch_clauses] = STATE(413), - [sym_catch_clause] = STATE(361), - [sym_finally_clause] = STATE(509), - [aux_sym_catch_clauses_repeat1] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(1369), + [ts_builtin_sym_end] = ACTIONS(1398), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1327), - [sym_hexadecimal_integer_literal] = ACTIONS(1327), - [sym_real_literal] = ACTIONS(1327), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1327), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1327), - [sym_verbatim_string_characters] = ACTIONS(1327), - [sym_verbatim_here_string_characters] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [aux_sym_comparison_operator_token37] = ACTIONS(1327), - [aux_sym_comparison_operator_token50] = ACTIONS(1327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1327), - [anon_sym_DOLLAR_CARET] = ACTIONS(1327), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1327), - [anon_sym_DOLLAR_] = ACTIONS(1327), - [aux_sym_variable_token1] = ACTIONS(1327), - [aux_sym_variable_token2] = ACTIONS(1327), - [sym_braced_variable] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [aux_sym_if_statement_token1] = ACTIONS(1327), - [aux_sym_switch_statement_token1] = ACTIONS(1327), - [aux_sym_foreach_statement_token1] = ACTIONS(1327), - [aux_sym_for_statement_token1] = ACTIONS(1327), - [aux_sym_while_statement_token1] = ACTIONS(1327), - [aux_sym_do_statement_token1] = ACTIONS(1327), - [aux_sym_function_statement_token1] = ACTIONS(1327), - [aux_sym_function_statement_token2] = ACTIONS(1327), - [aux_sym_function_statement_token3] = ACTIONS(1327), - [aux_sym_flow_control_statement_token1] = ACTIONS(1327), - [aux_sym_flow_control_statement_token2] = ACTIONS(1327), - [aux_sym_flow_control_statement_token3] = ACTIONS(1327), - [aux_sym_flow_control_statement_token4] = ACTIONS(1327), - [aux_sym_flow_control_statement_token5] = ACTIONS(1327), - [sym_label] = ACTIONS(1327), - [aux_sym_trap_statement_token1] = ACTIONS(1327), - [aux_sym_try_statement_token1] = ACTIONS(1327), - [aux_sym_catch_clause_token1] = ACTIONS(1371), - [aux_sym_finally_clause_token1] = ACTIONS(1373), - [aux_sym_data_statement_token1] = ACTIONS(1327), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1327), - [aux_sym_parallel_statement_token1] = ACTIONS(1327), - [aux_sym_sequence_statement_token1] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [aux_sym_command_name_token1] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [aux_sym_foreach_command_token1] = ACTIONS(1327), - [aux_sym_class_statement_token1] = ACTIONS(1327), - [aux_sym_enum_statement_token1] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1327), - [anon_sym_AT_LPAREN] = ACTIONS(1327), - [anon_sym_AT_LBRACE] = ACTIONS(1327), + [sym_decimal_integer_literal] = ACTIONS(1388), + [sym_hexadecimal_integer_literal] = ACTIONS(1388), + [sym_real_literal] = ACTIONS(1388), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1388), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1388), + [sym_verbatim_string_characters] = ACTIONS(1388), + [sym_verbatim_here_string_characters] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [aux_sym_comparison_operator_token37] = ACTIONS(1388), + [aux_sym_comparison_operator_token50] = ACTIONS(1388), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1388), + [anon_sym_DOLLAR_CARET] = ACTIONS(1388), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1388), + [anon_sym_DOLLAR_] = ACTIONS(1388), + [aux_sym_variable_token1] = ACTIONS(1388), + [aux_sym_variable_token2] = ACTIONS(1388), + [sym_braced_variable] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [aux_sym_if_statement_token1] = ACTIONS(1388), + [aux_sym_switch_statement_token1] = ACTIONS(1388), + [aux_sym_foreach_statement_token1] = ACTIONS(1388), + [aux_sym_for_statement_token1] = ACTIONS(1388), + [aux_sym_while_statement_token1] = ACTIONS(1388), + [aux_sym_do_statement_token1] = ACTIONS(1388), + [aux_sym_function_statement_token1] = ACTIONS(1388), + [aux_sym_function_statement_token2] = ACTIONS(1388), + [aux_sym_function_statement_token3] = ACTIONS(1388), + [aux_sym_flow_control_statement_token1] = ACTIONS(1388), + [aux_sym_flow_control_statement_token2] = ACTIONS(1388), + [aux_sym_flow_control_statement_token3] = ACTIONS(1388), + [aux_sym_flow_control_statement_token4] = ACTIONS(1388), + [aux_sym_flow_control_statement_token5] = ACTIONS(1388), + [sym_label] = ACTIONS(1388), + [aux_sym_trap_statement_token1] = ACTIONS(1388), + [aux_sym_try_statement_token1] = ACTIONS(1388), + [aux_sym_catch_clause_token1] = ACTIONS(1388), + [aux_sym_finally_clause_token1] = ACTIONS(1388), + [aux_sym_data_statement_token1] = ACTIONS(1388), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1388), + [aux_sym_parallel_statement_token1] = ACTIONS(1388), + [aux_sym_sequence_statement_token1] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [aux_sym_command_name_token1] = ACTIONS(1388), + [aux_sym_command_name_token2] = ACTIONS(1388), + [aux_sym_command_name_token3] = ACTIONS(1388), + [aux_sym_command_name_token4] = ACTIONS(1388), + [aux_sym_command_name_token5] = ACTIONS(1388), + [aux_sym_command_name_token6] = ACTIONS(1388), + [aux_sym_command_name_token7] = ACTIONS(1388), + [aux_sym_command_name_token8] = ACTIONS(1388), + [aux_sym_command_name_token9] = ACTIONS(1388), + [aux_sym_command_name_token10] = ACTIONS(1388), + [aux_sym_command_name_token11] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [aux_sym_foreach_command_token1] = ACTIONS(1388), + [aux_sym_class_statement_token1] = ACTIONS(1388), + [aux_sym_enum_statement_token1] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), + [anon_sym_AT_LPAREN] = ACTIONS(1388), + [anon_sym_AT_LBRACE] = ACTIONS(1388), }, [320] = { - [sym_format_operator] = STATE(580), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(801), - [aux_sym_comparison_operator_token2] = ACTIONS(801), - [aux_sym_comparison_operator_token3] = ACTIONS(801), - [aux_sym_comparison_operator_token4] = ACTIONS(801), - [aux_sym_comparison_operator_token5] = ACTIONS(801), - [aux_sym_comparison_operator_token6] = ACTIONS(801), - [aux_sym_comparison_operator_token7] = ACTIONS(801), - [aux_sym_comparison_operator_token8] = ACTIONS(801), - [aux_sym_comparison_operator_token9] = ACTIONS(801), - [aux_sym_comparison_operator_token10] = ACTIONS(801), - [aux_sym_comparison_operator_token11] = ACTIONS(801), - [aux_sym_comparison_operator_token12] = ACTIONS(801), - [aux_sym_comparison_operator_token13] = ACTIONS(801), - [aux_sym_comparison_operator_token14] = ACTIONS(801), - [aux_sym_comparison_operator_token15] = ACTIONS(801), - [aux_sym_comparison_operator_token16] = ACTIONS(801), - [aux_sym_comparison_operator_token17] = ACTIONS(801), - [aux_sym_comparison_operator_token18] = ACTIONS(801), - [aux_sym_comparison_operator_token19] = ACTIONS(801), - [aux_sym_comparison_operator_token20] = ACTIONS(801), - [aux_sym_comparison_operator_token21] = ACTIONS(801), - [aux_sym_comparison_operator_token22] = ACTIONS(801), - [aux_sym_comparison_operator_token23] = ACTIONS(801), - [aux_sym_comparison_operator_token24] = ACTIONS(801), - [aux_sym_comparison_operator_token25] = ACTIONS(801), - [aux_sym_comparison_operator_token26] = ACTIONS(801), - [aux_sym_comparison_operator_token27] = ACTIONS(801), - [aux_sym_comparison_operator_token28] = ACTIONS(803), - [aux_sym_comparison_operator_token29] = ACTIONS(801), - [aux_sym_comparison_operator_token30] = ACTIONS(801), - [aux_sym_comparison_operator_token31] = ACTIONS(801), - [aux_sym_comparison_operator_token32] = ACTIONS(801), - [aux_sym_comparison_operator_token33] = ACTIONS(801), - [aux_sym_comparison_operator_token34] = ACTIONS(803), - [aux_sym_comparison_operator_token35] = ACTIONS(801), - [aux_sym_comparison_operator_token36] = ACTIONS(801), - [aux_sym_comparison_operator_token37] = ACTIONS(801), - [aux_sym_comparison_operator_token38] = ACTIONS(801), - [aux_sym_comparison_operator_token39] = ACTIONS(801), - [aux_sym_comparison_operator_token40] = ACTIONS(801), - [aux_sym_comparison_operator_token41] = ACTIONS(801), - [aux_sym_comparison_operator_token42] = ACTIONS(801), - [aux_sym_comparison_operator_token43] = ACTIONS(801), - [aux_sym_comparison_operator_token44] = ACTIONS(801), - [aux_sym_comparison_operator_token45] = ACTIONS(801), - [aux_sym_comparison_operator_token46] = ACTIONS(801), - [aux_sym_comparison_operator_token47] = ACTIONS(801), - [aux_sym_comparison_operator_token48] = ACTIONS(801), - [aux_sym_comparison_operator_token49] = ACTIONS(801), - [aux_sym_comparison_operator_token50] = ACTIONS(801), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_COMMA] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [aux_sym_logical_expression_token1] = ACTIONS(801), - [aux_sym_logical_expression_token2] = ACTIONS(801), - [aux_sym_logical_expression_token3] = ACTIONS(801), - [aux_sym_bitwise_expression_token1] = ACTIONS(801), - [aux_sym_bitwise_expression_token2] = ACTIONS(801), - [aux_sym_bitwise_expression_token3] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), + [sym_finally_clause] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1382), + [sym_hexadecimal_integer_literal] = ACTIONS(1382), + [sym_real_literal] = ACTIONS(1382), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1382), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1382), + [sym_verbatim_string_characters] = ACTIONS(1382), + [sym_verbatim_here_string_characters] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [aux_sym_comparison_operator_token37] = ACTIONS(1382), + [aux_sym_comparison_operator_token50] = ACTIONS(1382), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1382), + [anon_sym_DOLLAR_CARET] = ACTIONS(1382), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1382), + [anon_sym_DOLLAR_] = ACTIONS(1382), + [aux_sym_variable_token1] = ACTIONS(1382), + [aux_sym_variable_token2] = ACTIONS(1382), + [sym_braced_variable] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token2] = ACTIONS(1382), + [aux_sym_function_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token1] = ACTIONS(1382), + [aux_sym_flow_control_statement_token2] = ACTIONS(1382), + [aux_sym_flow_control_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token4] = ACTIONS(1382), + [aux_sym_flow_control_statement_token5] = ACTIONS(1382), + [sym_label] = ACTIONS(1382), + [aux_sym_trap_statement_token1] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_finally_clause_token1] = ACTIONS(1307), + [aux_sym_data_statement_token1] = ACTIONS(1382), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1382), + [aux_sym_parallel_statement_token1] = ACTIONS(1382), + [aux_sym_sequence_statement_token1] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_command_name_token1] = ACTIONS(1382), + [aux_sym_command_name_token2] = ACTIONS(1382), + [aux_sym_command_name_token3] = ACTIONS(1382), + [aux_sym_command_name_token4] = ACTIONS(1382), + [aux_sym_command_name_token5] = ACTIONS(1382), + [aux_sym_command_name_token6] = ACTIONS(1382), + [aux_sym_command_name_token7] = ACTIONS(1382), + [aux_sym_command_name_token8] = ACTIONS(1382), + [aux_sym_command_name_token9] = ACTIONS(1382), + [aux_sym_command_name_token10] = ACTIONS(1382), + [aux_sym_command_name_token11] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [aux_sym_foreach_command_token1] = ACTIONS(1382), + [aux_sym_class_statement_token1] = ACTIONS(1382), + [aux_sym_enum_statement_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LBRACE] = ACTIONS(1382), }, [321] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(795), - [aux_sym_comparison_operator_token2] = ACTIONS(795), - [aux_sym_comparison_operator_token3] = ACTIONS(795), - [aux_sym_comparison_operator_token4] = ACTIONS(795), - [aux_sym_comparison_operator_token5] = ACTIONS(795), - [aux_sym_comparison_operator_token6] = ACTIONS(795), - [aux_sym_comparison_operator_token7] = ACTIONS(795), - [aux_sym_comparison_operator_token8] = ACTIONS(795), - [aux_sym_comparison_operator_token9] = ACTIONS(795), - [aux_sym_comparison_operator_token10] = ACTIONS(795), - [aux_sym_comparison_operator_token11] = ACTIONS(795), - [aux_sym_comparison_operator_token12] = ACTIONS(795), - [aux_sym_comparison_operator_token13] = ACTIONS(795), - [aux_sym_comparison_operator_token14] = ACTIONS(795), - [aux_sym_comparison_operator_token15] = ACTIONS(795), - [aux_sym_comparison_operator_token16] = ACTIONS(795), - [aux_sym_comparison_operator_token17] = ACTIONS(795), - [aux_sym_comparison_operator_token18] = ACTIONS(795), - [aux_sym_comparison_operator_token19] = ACTIONS(795), - [aux_sym_comparison_operator_token20] = ACTIONS(795), - [aux_sym_comparison_operator_token21] = ACTIONS(795), - [aux_sym_comparison_operator_token22] = ACTIONS(795), - [aux_sym_comparison_operator_token23] = ACTIONS(795), - [aux_sym_comparison_operator_token24] = ACTIONS(795), - [aux_sym_comparison_operator_token25] = ACTIONS(795), - [aux_sym_comparison_operator_token26] = ACTIONS(795), - [aux_sym_comparison_operator_token27] = ACTIONS(795), - [aux_sym_comparison_operator_token28] = ACTIONS(797), - [aux_sym_comparison_operator_token29] = ACTIONS(795), - [aux_sym_comparison_operator_token30] = ACTIONS(795), - [aux_sym_comparison_operator_token31] = ACTIONS(795), - [aux_sym_comparison_operator_token32] = ACTIONS(795), - [aux_sym_comparison_operator_token33] = ACTIONS(795), - [aux_sym_comparison_operator_token34] = ACTIONS(797), - [aux_sym_comparison_operator_token35] = ACTIONS(795), - [aux_sym_comparison_operator_token36] = ACTIONS(795), - [aux_sym_comparison_operator_token37] = ACTIONS(795), - [aux_sym_comparison_operator_token38] = ACTIONS(795), - [aux_sym_comparison_operator_token39] = ACTIONS(795), - [aux_sym_comparison_operator_token40] = ACTIONS(795), - [aux_sym_comparison_operator_token41] = ACTIONS(795), - [aux_sym_comparison_operator_token42] = ACTIONS(795), - [aux_sym_comparison_operator_token43] = ACTIONS(795), - [aux_sym_comparison_operator_token44] = ACTIONS(795), - [aux_sym_comparison_operator_token45] = ACTIONS(795), - [aux_sym_comparison_operator_token46] = ACTIONS(795), - [aux_sym_comparison_operator_token47] = ACTIONS(795), - [aux_sym_comparison_operator_token48] = ACTIONS(795), - [aux_sym_comparison_operator_token49] = ACTIONS(795), - [aux_sym_comparison_operator_token50] = ACTIONS(795), - [aux_sym_format_operator_token1] = ACTIONS(795), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_COMMA] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [aux_sym_logical_expression_token1] = ACTIONS(795), - [aux_sym_logical_expression_token2] = ACTIONS(795), - [aux_sym_logical_expression_token3] = ACTIONS(795), - [aux_sym_bitwise_expression_token1] = ACTIONS(795), - [aux_sym_bitwise_expression_token2] = ACTIONS(795), - [aux_sym_bitwise_expression_token3] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_DOT_DOT] = ACTIONS(1351), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_catch_clause_token1] = ACTIONS(1368), + [aux_sym_finally_clause_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), }, [322] = { + [ts_builtin_sym_end] = ACTIONS(1402), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1343), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), - [sym__statement_terminator] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1380), + [sym_hexadecimal_integer_literal] = ACTIONS(1380), + [sym_real_literal] = ACTIONS(1380), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1380), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1380), + [sym_verbatim_string_characters] = ACTIONS(1380), + [sym_verbatim_here_string_characters] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [aux_sym_comparison_operator_token37] = ACTIONS(1380), + [aux_sym_comparison_operator_token50] = ACTIONS(1380), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1380), + [anon_sym_DOLLAR_CARET] = ACTIONS(1380), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1380), + [anon_sym_DOLLAR_] = ACTIONS(1380), + [aux_sym_variable_token1] = ACTIONS(1380), + [aux_sym_variable_token2] = ACTIONS(1380), + [sym_braced_variable] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_COMMA] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [aux_sym_if_statement_token1] = ACTIONS(1380), + [aux_sym_switch_statement_token1] = ACTIONS(1380), + [aux_sym_foreach_statement_token1] = ACTIONS(1380), + [aux_sym_for_statement_token1] = ACTIONS(1380), + [aux_sym_while_statement_token1] = ACTIONS(1380), + [aux_sym_do_statement_token1] = ACTIONS(1380), + [aux_sym_function_statement_token1] = ACTIONS(1380), + [aux_sym_function_statement_token2] = ACTIONS(1380), + [aux_sym_function_statement_token3] = ACTIONS(1380), + [aux_sym_flow_control_statement_token1] = ACTIONS(1380), + [aux_sym_flow_control_statement_token2] = ACTIONS(1380), + [aux_sym_flow_control_statement_token3] = ACTIONS(1380), + [aux_sym_flow_control_statement_token4] = ACTIONS(1380), + [aux_sym_flow_control_statement_token5] = ACTIONS(1380), + [sym_label] = ACTIONS(1380), + [aux_sym_trap_statement_token1] = ACTIONS(1380), + [aux_sym_try_statement_token1] = ACTIONS(1380), + [aux_sym_catch_clause_token1] = ACTIONS(1380), + [aux_sym_finally_clause_token1] = ACTIONS(1380), + [aux_sym_data_statement_token1] = ACTIONS(1380), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1380), + [aux_sym_parallel_statement_token1] = ACTIONS(1380), + [aux_sym_sequence_statement_token1] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [aux_sym_command_name_token1] = ACTIONS(1380), + [aux_sym_command_name_token2] = ACTIONS(1380), + [aux_sym_command_name_token3] = ACTIONS(1380), + [aux_sym_command_name_token4] = ACTIONS(1380), + [aux_sym_command_name_token5] = ACTIONS(1380), + [aux_sym_command_name_token6] = ACTIONS(1380), + [aux_sym_command_name_token7] = ACTIONS(1380), + [aux_sym_command_name_token8] = ACTIONS(1380), + [aux_sym_command_name_token9] = ACTIONS(1380), + [aux_sym_command_name_token10] = ACTIONS(1380), + [aux_sym_command_name_token11] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [aux_sym_foreach_command_token1] = ACTIONS(1380), + [aux_sym_class_statement_token1] = ACTIONS(1380), + [aux_sym_enum_statement_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1380), + [anon_sym_AT_LPAREN] = ACTIONS(1380), + [anon_sym_AT_LBRACE] = ACTIONS(1380), }, [323] = { - [sym_elseif_clause] = STATE(324), - [aux_sym_elseif_clauses_repeat1] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1404), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1375), - [sym_hexadecimal_integer_literal] = ACTIONS(1375), - [sym_real_literal] = ACTIONS(1375), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1375), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1375), - [sym_verbatim_string_characters] = ACTIONS(1375), - [sym_verbatim_here_string_characters] = ACTIONS(1375), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [aux_sym_comparison_operator_token37] = ACTIONS(1375), - [aux_sym_comparison_operator_token50] = ACTIONS(1375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1375), - [anon_sym_DOLLAR_CARET] = ACTIONS(1375), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1375), - [anon_sym_DOLLAR_] = ACTIONS(1375), - [aux_sym_variable_token1] = ACTIONS(1375), - [aux_sym_variable_token2] = ACTIONS(1375), - [sym_braced_variable] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [aux_sym_if_statement_token1] = ACTIONS(1375), - [aux_sym_elseif_clause_token1] = ACTIONS(1339), - [aux_sym_else_clause_token1] = ACTIONS(1375), - [aux_sym_switch_statement_token1] = ACTIONS(1375), - [aux_sym_foreach_statement_token1] = ACTIONS(1375), - [aux_sym_for_statement_token1] = ACTIONS(1375), - [aux_sym_while_statement_token1] = ACTIONS(1375), - [aux_sym_do_statement_token1] = ACTIONS(1375), - [aux_sym_function_statement_token1] = ACTIONS(1375), - [aux_sym_function_statement_token2] = ACTIONS(1375), - [aux_sym_function_statement_token3] = ACTIONS(1375), - [aux_sym_flow_control_statement_token1] = ACTIONS(1375), - [aux_sym_flow_control_statement_token2] = ACTIONS(1375), - [aux_sym_flow_control_statement_token3] = ACTIONS(1375), - [aux_sym_flow_control_statement_token4] = ACTIONS(1375), - [aux_sym_flow_control_statement_token5] = ACTIONS(1375), - [sym_label] = ACTIONS(1375), - [aux_sym_trap_statement_token1] = ACTIONS(1375), - [aux_sym_try_statement_token1] = ACTIONS(1375), - [aux_sym_data_statement_token1] = ACTIONS(1375), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1375), - [aux_sym_parallel_statement_token1] = ACTIONS(1375), - [aux_sym_sequence_statement_token1] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [aux_sym_command_name_token1] = ACTIONS(1375), - [anon_sym_PERCENT] = ACTIONS(1375), - [aux_sym_foreach_command_token1] = ACTIONS(1375), - [aux_sym_class_statement_token1] = ACTIONS(1375), - [aux_sym_enum_statement_token1] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1375), - [anon_sym_AT_LPAREN] = ACTIONS(1375), - [anon_sym_AT_LBRACE] = ACTIONS(1375), + [sym_decimal_integer_literal] = ACTIONS(1386), + [sym_hexadecimal_integer_literal] = ACTIONS(1386), + [sym_real_literal] = ACTIONS(1386), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1386), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1386), + [sym_verbatim_string_characters] = ACTIONS(1386), + [sym_verbatim_here_string_characters] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [aux_sym_comparison_operator_token37] = ACTIONS(1386), + [aux_sym_comparison_operator_token50] = ACTIONS(1386), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1386), + [anon_sym_DOLLAR_CARET] = ACTIONS(1386), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1386), + [anon_sym_DOLLAR_] = ACTIONS(1386), + [aux_sym_variable_token1] = ACTIONS(1386), + [aux_sym_variable_token2] = ACTIONS(1386), + [sym_braced_variable] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [aux_sym_if_statement_token1] = ACTIONS(1386), + [aux_sym_elseif_clause_token1] = ACTIONS(1386), + [aux_sym_else_clause_token1] = ACTIONS(1386), + [aux_sym_switch_statement_token1] = ACTIONS(1386), + [aux_sym_foreach_statement_token1] = ACTIONS(1386), + [aux_sym_for_statement_token1] = ACTIONS(1386), + [aux_sym_while_statement_token1] = ACTIONS(1386), + [aux_sym_do_statement_token1] = ACTIONS(1386), + [aux_sym_function_statement_token1] = ACTIONS(1386), + [aux_sym_function_statement_token2] = ACTIONS(1386), + [aux_sym_function_statement_token3] = ACTIONS(1386), + [aux_sym_flow_control_statement_token1] = ACTIONS(1386), + [aux_sym_flow_control_statement_token2] = ACTIONS(1386), + [aux_sym_flow_control_statement_token3] = ACTIONS(1386), + [aux_sym_flow_control_statement_token4] = ACTIONS(1386), + [aux_sym_flow_control_statement_token5] = ACTIONS(1386), + [sym_label] = ACTIONS(1386), + [aux_sym_trap_statement_token1] = ACTIONS(1386), + [aux_sym_try_statement_token1] = ACTIONS(1386), + [aux_sym_data_statement_token1] = ACTIONS(1386), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1386), + [aux_sym_parallel_statement_token1] = ACTIONS(1386), + [aux_sym_sequence_statement_token1] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [aux_sym_command_name_token1] = ACTIONS(1386), + [aux_sym_command_name_token2] = ACTIONS(1386), + [aux_sym_command_name_token3] = ACTIONS(1386), + [aux_sym_command_name_token4] = ACTIONS(1386), + [aux_sym_command_name_token5] = ACTIONS(1386), + [aux_sym_command_name_token6] = ACTIONS(1386), + [aux_sym_command_name_token7] = ACTIONS(1386), + [aux_sym_command_name_token8] = ACTIONS(1386), + [aux_sym_command_name_token9] = ACTIONS(1386), + [aux_sym_command_name_token10] = ACTIONS(1386), + [aux_sym_command_name_token11] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [aux_sym_foreach_command_token1] = ACTIONS(1386), + [aux_sym_class_statement_token1] = ACTIONS(1386), + [aux_sym_enum_statement_token1] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1386), + [anon_sym_AT_LPAREN] = ACTIONS(1386), + [anon_sym_AT_LBRACE] = ACTIONS(1386), }, [324] = { - [sym_elseif_clause] = STATE(324), - [aux_sym_elseif_clauses_repeat1] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1406), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1377), - [sym_hexadecimal_integer_literal] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1377), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1377), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1377), - [sym_verbatim_string_characters] = ACTIONS(1377), - [sym_verbatim_here_string_characters] = ACTIONS(1377), - [anon_sym_DOT] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1377), - [aux_sym_comparison_operator_token37] = ACTIONS(1377), - [aux_sym_comparison_operator_token50] = ACTIONS(1377), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1377), - [anon_sym_DOLLAR_CARET] = ACTIONS(1377), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1377), - [anon_sym_DOLLAR_] = ACTIONS(1377), - [aux_sym_variable_token1] = ACTIONS(1377), - [aux_sym_variable_token2] = ACTIONS(1377), - [sym_braced_variable] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [aux_sym_if_statement_token1] = ACTIONS(1377), - [aux_sym_elseif_clause_token1] = ACTIONS(1379), - [aux_sym_else_clause_token1] = ACTIONS(1377), - [aux_sym_switch_statement_token1] = ACTIONS(1377), - [aux_sym_foreach_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token1] = ACTIONS(1377), - [aux_sym_while_statement_token1] = ACTIONS(1377), - [aux_sym_do_statement_token1] = ACTIONS(1377), - [aux_sym_function_statement_token1] = ACTIONS(1377), - [aux_sym_function_statement_token2] = ACTIONS(1377), - [aux_sym_function_statement_token3] = ACTIONS(1377), - [aux_sym_flow_control_statement_token1] = ACTIONS(1377), - [aux_sym_flow_control_statement_token2] = ACTIONS(1377), - [aux_sym_flow_control_statement_token3] = ACTIONS(1377), - [aux_sym_flow_control_statement_token4] = ACTIONS(1377), - [aux_sym_flow_control_statement_token5] = ACTIONS(1377), - [sym_label] = ACTIONS(1377), - [aux_sym_trap_statement_token1] = ACTIONS(1377), - [aux_sym_try_statement_token1] = ACTIONS(1377), - [aux_sym_data_statement_token1] = ACTIONS(1377), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1377), - [aux_sym_parallel_statement_token1] = ACTIONS(1377), - [aux_sym_sequence_statement_token1] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [aux_sym_command_name_token1] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [aux_sym_foreach_command_token1] = ACTIONS(1377), - [aux_sym_class_statement_token1] = ACTIONS(1377), - [aux_sym_enum_statement_token1] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1377), - [anon_sym_AT_LPAREN] = ACTIONS(1377), - [anon_sym_AT_LBRACE] = ACTIONS(1377), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_elseif_clause_token1] = ACTIONS(1374), + [aux_sym_else_clause_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), }, [325] = { - [aux_sym_command_argument_sep_repeat1] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1406), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1382), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), - [sym__statement_terminator] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_catch_clause_token1] = ACTIONS(1374), + [aux_sym_finally_clause_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), }, [326] = { - [aux_sym_command_argument_sep_repeat1] = STATE(326), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1353), - [sym_hexadecimal_integer_literal] = ACTIONS(1353), - [sym_real_literal] = ACTIONS(1353), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1353), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1353), - [sym_verbatim_string_characters] = ACTIONS(1353), - [sym_verbatim_here_string_characters] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_2_GT] = ACTIONS(1353), - [anon_sym_2_GT_GT] = ACTIONS(1353), - [anon_sym_3_GT] = ACTIONS(1353), - [anon_sym_3_GT_GT] = ACTIONS(1353), - [anon_sym_4_GT] = ACTIONS(1353), - [anon_sym_4_GT_GT] = ACTIONS(1353), - [anon_sym_5_GT] = ACTIONS(1353), - [anon_sym_5_GT_GT] = ACTIONS(1353), - [anon_sym_6_GT] = ACTIONS(1353), - [anon_sym_6_GT_GT] = ACTIONS(1353), - [anon_sym_STAR_GT] = ACTIONS(1353), - [anon_sym_STAR_GT_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1353), - [anon_sym_2_GT_AMP1] = ACTIONS(1353), - [anon_sym_3_GT_AMP1] = ACTIONS(1353), - [anon_sym_4_GT_AMP1] = ACTIONS(1353), - [anon_sym_5_GT_AMP1] = ACTIONS(1353), - [anon_sym_6_GT_AMP1] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1353), - [anon_sym_1_GT_AMP2] = ACTIONS(1353), - [anon_sym_3_GT_AMP2] = ACTIONS(1353), - [anon_sym_4_GT_AMP2] = ACTIONS(1353), - [anon_sym_5_GT_AMP2] = ACTIONS(1353), - [anon_sym_6_GT_AMP2] = ACTIONS(1353), - [aux_sym_comparison_operator_token37] = ACTIONS(1353), - [aux_sym_comparison_operator_token50] = ACTIONS(1353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1353), - [anon_sym_DOLLAR_CARET] = ACTIONS(1353), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1353), - [anon_sym_DOLLAR_] = ACTIONS(1353), - [aux_sym_variable_token1] = ACTIONS(1353), - [aux_sym_variable_token2] = ACTIONS(1353), - [sym_braced_variable] = ACTIONS(1353), - [sym_generic_token] = ACTIONS(1353), - [sym_command_parameter] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [sym_stop_parsing] = ACTIONS(1353), - [anon_sym_SPACE] = ACTIONS(1384), - [anon_sym_COLON] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LBRACE] = ACTIONS(1353), - [sym__statement_terminator] = ACTIONS(1358), + [sym_decimal_integer_literal] = ACTIONS(1408), + [sym_hexadecimal_integer_literal] = ACTIONS(1408), + [sym_real_literal] = ACTIONS(1408), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1408), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1408), + [sym_verbatim_string_characters] = ACTIONS(1408), + [sym_verbatim_here_string_characters] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [aux_sym_comparison_operator_token37] = ACTIONS(1408), + [aux_sym_comparison_operator_token50] = ACTIONS(1408), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1408), + [anon_sym_DOLLAR_CARET] = ACTIONS(1408), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1408), + [anon_sym_DOLLAR_] = ACTIONS(1408), + [aux_sym_variable_token1] = ACTIONS(1408), + [aux_sym_variable_token2] = ACTIONS(1408), + [sym_braced_variable] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym_if_statement_token1] = ACTIONS(1408), + [aux_sym_switch_statement_token1] = ACTIONS(1408), + [aux_sym_foreach_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token1] = ACTIONS(1408), + [aux_sym_while_statement_token1] = ACTIONS(1408), + [aux_sym_do_statement_token1] = ACTIONS(1408), + [aux_sym_function_statement_token1] = ACTIONS(1408), + [aux_sym_function_statement_token2] = ACTIONS(1408), + [aux_sym_function_statement_token3] = ACTIONS(1408), + [aux_sym_flow_control_statement_token1] = ACTIONS(1408), + [aux_sym_flow_control_statement_token2] = ACTIONS(1408), + [aux_sym_flow_control_statement_token3] = ACTIONS(1408), + [aux_sym_flow_control_statement_token4] = ACTIONS(1408), + [aux_sym_flow_control_statement_token5] = ACTIONS(1408), + [sym_label] = ACTIONS(1408), + [aux_sym_trap_statement_token1] = ACTIONS(1408), + [aux_sym_try_statement_token1] = ACTIONS(1408), + [aux_sym_data_statement_token1] = ACTIONS(1408), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1408), + [aux_sym_parallel_statement_token1] = ACTIONS(1408), + [aux_sym_sequence_statement_token1] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [aux_sym_command_name_token1] = ACTIONS(1408), + [aux_sym_command_name_token2] = ACTIONS(1408), + [aux_sym_command_name_token3] = ACTIONS(1408), + [aux_sym_command_name_token4] = ACTIONS(1408), + [aux_sym_command_name_token5] = ACTIONS(1408), + [aux_sym_command_name_token6] = ACTIONS(1408), + [aux_sym_command_name_token7] = ACTIONS(1408), + [aux_sym_command_name_token8] = ACTIONS(1408), + [aux_sym_command_name_token9] = ACTIONS(1408), + [aux_sym_command_name_token10] = ACTIONS(1408), + [aux_sym_command_name_token11] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [aux_sym_foreach_command_token1] = ACTIONS(1408), + [aux_sym_class_statement_token1] = ACTIONS(1408), + [aux_sym_enum_statement_token1] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1408), + [anon_sym_AT_LPAREN] = ACTIONS(1408), + [anon_sym_AT_LBRACE] = ACTIONS(1408), }, [327] = { - [aux_sym_command_argument_sep_repeat1] = STATE(328), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), + [sym_decimal_integer_literal] = ACTIONS(1410), + [sym_hexadecimal_integer_literal] = ACTIONS(1410), + [sym_real_literal] = ACTIONS(1410), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1410), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1410), + [sym_verbatim_string_characters] = ACTIONS(1410), + [sym_verbatim_here_string_characters] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [aux_sym_comparison_operator_token37] = ACTIONS(1410), + [aux_sym_comparison_operator_token50] = ACTIONS(1410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1410), + [anon_sym_DOLLAR_CARET] = ACTIONS(1410), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1410), + [anon_sym_DOLLAR_] = ACTIONS(1410), + [aux_sym_variable_token1] = ACTIONS(1410), + [aux_sym_variable_token2] = ACTIONS(1410), + [sym_braced_variable] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [aux_sym_if_statement_token1] = ACTIONS(1410), + [aux_sym_switch_statement_token1] = ACTIONS(1410), + [aux_sym_foreach_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token1] = ACTIONS(1410), + [aux_sym_while_statement_token1] = ACTIONS(1410), + [aux_sym_do_statement_token1] = ACTIONS(1410), + [aux_sym_function_statement_token1] = ACTIONS(1410), + [aux_sym_function_statement_token2] = ACTIONS(1410), + [aux_sym_function_statement_token3] = ACTIONS(1410), + [aux_sym_flow_control_statement_token1] = ACTIONS(1410), + [aux_sym_flow_control_statement_token2] = ACTIONS(1410), + [aux_sym_flow_control_statement_token3] = ACTIONS(1410), + [aux_sym_flow_control_statement_token4] = ACTIONS(1410), + [aux_sym_flow_control_statement_token5] = ACTIONS(1410), + [sym_label] = ACTIONS(1410), + [aux_sym_trap_statement_token1] = ACTIONS(1410), + [aux_sym_try_statement_token1] = ACTIONS(1410), + [aux_sym_data_statement_token1] = ACTIONS(1410), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1410), + [aux_sym_parallel_statement_token1] = ACTIONS(1410), + [aux_sym_sequence_statement_token1] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [aux_sym_command_name_token1] = ACTIONS(1410), + [aux_sym_command_name_token2] = ACTIONS(1410), + [aux_sym_command_name_token3] = ACTIONS(1410), + [aux_sym_command_name_token4] = ACTIONS(1410), + [aux_sym_command_name_token5] = ACTIONS(1410), + [aux_sym_command_name_token6] = ACTIONS(1410), + [aux_sym_command_name_token7] = ACTIONS(1410), + [aux_sym_command_name_token8] = ACTIONS(1410), + [aux_sym_command_name_token9] = ACTIONS(1410), + [aux_sym_command_name_token10] = ACTIONS(1410), + [aux_sym_command_name_token11] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [aux_sym_foreach_command_token1] = ACTIONS(1410), + [aux_sym_class_statement_token1] = ACTIONS(1410), + [aux_sym_enum_statement_token1] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_AT_LPAREN] = ACTIONS(1410), + [anon_sym_AT_LBRACE] = ACTIONS(1410), }, [328] = { - [aux_sym_command_argument_sep_repeat1] = STATE(328), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1353), - [sym_hexadecimal_integer_literal] = ACTIONS(1353), - [sym_real_literal] = ACTIONS(1353), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1353), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1353), - [sym_verbatim_string_characters] = ACTIONS(1353), - [sym_verbatim_here_string_characters] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_2_GT] = ACTIONS(1353), - [anon_sym_2_GT_GT] = ACTIONS(1353), - [anon_sym_3_GT] = ACTIONS(1353), - [anon_sym_3_GT_GT] = ACTIONS(1353), - [anon_sym_4_GT] = ACTIONS(1353), - [anon_sym_4_GT_GT] = ACTIONS(1353), - [anon_sym_5_GT] = ACTIONS(1353), - [anon_sym_5_GT_GT] = ACTIONS(1353), - [anon_sym_6_GT] = ACTIONS(1353), - [anon_sym_6_GT_GT] = ACTIONS(1353), - [anon_sym_STAR_GT] = ACTIONS(1353), - [anon_sym_STAR_GT_GT] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1353), - [anon_sym_2_GT_AMP1] = ACTIONS(1353), - [anon_sym_3_GT_AMP1] = ACTIONS(1353), - [anon_sym_4_GT_AMP1] = ACTIONS(1353), - [anon_sym_5_GT_AMP1] = ACTIONS(1353), - [anon_sym_6_GT_AMP1] = ACTIONS(1353), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1353), - [anon_sym_1_GT_AMP2] = ACTIONS(1353), - [anon_sym_3_GT_AMP2] = ACTIONS(1353), - [anon_sym_4_GT_AMP2] = ACTIONS(1353), - [anon_sym_5_GT_AMP2] = ACTIONS(1353), - [anon_sym_6_GT_AMP2] = ACTIONS(1353), - [aux_sym_comparison_operator_token37] = ACTIONS(1353), - [aux_sym_comparison_operator_token50] = ACTIONS(1353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1353), - [anon_sym_DOLLAR_CARET] = ACTIONS(1353), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1353), - [anon_sym_DOLLAR_] = ACTIONS(1353), - [aux_sym_variable_token1] = ACTIONS(1353), - [aux_sym_variable_token2] = ACTIONS(1353), - [sym_braced_variable] = ACTIONS(1353), - [sym_generic_token] = ACTIONS(1353), - [sym_command_parameter] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [sym_stop_parsing] = ACTIONS(1353), - [anon_sym_SPACE] = ACTIONS(1389), - [anon_sym_COLON] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LPAREN] = ACTIONS(1353), - [anon_sym_AT_LBRACE] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1412), + [sym_hexadecimal_integer_literal] = ACTIONS(1412), + [sym_real_literal] = ACTIONS(1412), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1412), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1412), + [sym_verbatim_string_characters] = ACTIONS(1412), + [sym_verbatim_here_string_characters] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [aux_sym_comparison_operator_token37] = ACTIONS(1412), + [aux_sym_comparison_operator_token50] = ACTIONS(1412), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1412), + [anon_sym_DOLLAR_CARET] = ACTIONS(1412), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1412), + [anon_sym_DOLLAR_] = ACTIONS(1412), + [aux_sym_variable_token1] = ACTIONS(1412), + [aux_sym_variable_token2] = ACTIONS(1412), + [sym_braced_variable] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym_if_statement_token1] = ACTIONS(1412), + [aux_sym_switch_statement_token1] = ACTIONS(1412), + [aux_sym_foreach_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token1] = ACTIONS(1412), + [aux_sym_while_statement_token1] = ACTIONS(1412), + [aux_sym_do_statement_token1] = ACTIONS(1412), + [aux_sym_function_statement_token1] = ACTIONS(1412), + [aux_sym_function_statement_token2] = ACTIONS(1412), + [aux_sym_function_statement_token3] = ACTIONS(1412), + [aux_sym_flow_control_statement_token1] = ACTIONS(1412), + [aux_sym_flow_control_statement_token2] = ACTIONS(1412), + [aux_sym_flow_control_statement_token3] = ACTIONS(1412), + [aux_sym_flow_control_statement_token4] = ACTIONS(1412), + [aux_sym_flow_control_statement_token5] = ACTIONS(1412), + [sym_label] = ACTIONS(1412), + [aux_sym_trap_statement_token1] = ACTIONS(1412), + [aux_sym_try_statement_token1] = ACTIONS(1412), + [aux_sym_data_statement_token1] = ACTIONS(1412), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1412), + [aux_sym_parallel_statement_token1] = ACTIONS(1412), + [aux_sym_sequence_statement_token1] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [aux_sym_command_name_token1] = ACTIONS(1412), + [aux_sym_command_name_token2] = ACTIONS(1412), + [aux_sym_command_name_token3] = ACTIONS(1412), + [aux_sym_command_name_token4] = ACTIONS(1412), + [aux_sym_command_name_token5] = ACTIONS(1412), + [aux_sym_command_name_token6] = ACTIONS(1412), + [aux_sym_command_name_token7] = ACTIONS(1412), + [aux_sym_command_name_token8] = ACTIONS(1412), + [aux_sym_command_name_token9] = ACTIONS(1412), + [aux_sym_command_name_token10] = ACTIONS(1412), + [aux_sym_command_name_token11] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [aux_sym_foreach_command_token1] = ACTIONS(1412), + [aux_sym_class_statement_token1] = ACTIONS(1412), + [aux_sym_enum_statement_token1] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), + [anon_sym_AT_LPAREN] = ACTIONS(1412), + [anon_sym_AT_LBRACE] = ACTIONS(1412), }, [329] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1878), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1414), + [sym_hexadecimal_integer_literal] = ACTIONS(1414), + [sym_real_literal] = ACTIONS(1414), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1414), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1414), + [sym_verbatim_string_characters] = ACTIONS(1414), + [sym_verbatim_here_string_characters] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [aux_sym_comparison_operator_token37] = ACTIONS(1414), + [aux_sym_comparison_operator_token50] = ACTIONS(1414), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1414), + [anon_sym_DOLLAR_CARET] = ACTIONS(1414), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1414), + [anon_sym_DOLLAR_] = ACTIONS(1414), + [aux_sym_variable_token1] = ACTIONS(1414), + [aux_sym_variable_token2] = ACTIONS(1414), + [sym_braced_variable] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [aux_sym_if_statement_token1] = ACTIONS(1414), + [aux_sym_switch_statement_token1] = ACTIONS(1414), + [aux_sym_foreach_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token1] = ACTIONS(1414), + [aux_sym_while_statement_token1] = ACTIONS(1414), + [aux_sym_do_statement_token1] = ACTIONS(1414), + [aux_sym_function_statement_token1] = ACTIONS(1414), + [aux_sym_function_statement_token2] = ACTIONS(1414), + [aux_sym_function_statement_token3] = ACTIONS(1414), + [aux_sym_flow_control_statement_token1] = ACTIONS(1414), + [aux_sym_flow_control_statement_token2] = ACTIONS(1414), + [aux_sym_flow_control_statement_token3] = ACTIONS(1414), + [aux_sym_flow_control_statement_token4] = ACTIONS(1414), + [aux_sym_flow_control_statement_token5] = ACTIONS(1414), + [sym_label] = ACTIONS(1414), + [aux_sym_trap_statement_token1] = ACTIONS(1414), + [aux_sym_try_statement_token1] = ACTIONS(1414), + [aux_sym_data_statement_token1] = ACTIONS(1414), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1414), + [aux_sym_parallel_statement_token1] = ACTIONS(1414), + [aux_sym_sequence_statement_token1] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [aux_sym_command_name_token1] = ACTIONS(1414), + [aux_sym_command_name_token2] = ACTIONS(1414), + [aux_sym_command_name_token3] = ACTIONS(1414), + [aux_sym_command_name_token4] = ACTIONS(1414), + [aux_sym_command_name_token5] = ACTIONS(1414), + [aux_sym_command_name_token6] = ACTIONS(1414), + [aux_sym_command_name_token7] = ACTIONS(1414), + [aux_sym_command_name_token8] = ACTIONS(1414), + [aux_sym_command_name_token9] = ACTIONS(1414), + [aux_sym_command_name_token10] = ACTIONS(1414), + [aux_sym_command_name_token11] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [aux_sym_foreach_command_token1] = ACTIONS(1414), + [aux_sym_class_statement_token1] = ACTIONS(1414), + [aux_sym_enum_statement_token1] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1414), + [anon_sym_AT_LPAREN] = ACTIONS(1414), + [anon_sym_AT_LBRACE] = ACTIONS(1414), }, [330] = { - [sym_format_operator] = STATE(577), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(809), - [aux_sym_comparison_operator_token2] = ACTIONS(809), - [aux_sym_comparison_operator_token3] = ACTIONS(809), - [aux_sym_comparison_operator_token4] = ACTIONS(809), - [aux_sym_comparison_operator_token5] = ACTIONS(809), - [aux_sym_comparison_operator_token6] = ACTIONS(809), - [aux_sym_comparison_operator_token7] = ACTIONS(809), - [aux_sym_comparison_operator_token8] = ACTIONS(809), - [aux_sym_comparison_operator_token9] = ACTIONS(809), - [aux_sym_comparison_operator_token10] = ACTIONS(809), - [aux_sym_comparison_operator_token11] = ACTIONS(809), - [aux_sym_comparison_operator_token12] = ACTIONS(809), - [aux_sym_comparison_operator_token13] = ACTIONS(809), - [aux_sym_comparison_operator_token14] = ACTIONS(809), - [aux_sym_comparison_operator_token15] = ACTIONS(809), - [aux_sym_comparison_operator_token16] = ACTIONS(809), - [aux_sym_comparison_operator_token17] = ACTIONS(809), - [aux_sym_comparison_operator_token18] = ACTIONS(809), - [aux_sym_comparison_operator_token19] = ACTIONS(809), - [aux_sym_comparison_operator_token20] = ACTIONS(809), - [aux_sym_comparison_operator_token21] = ACTIONS(809), - [aux_sym_comparison_operator_token22] = ACTIONS(809), - [aux_sym_comparison_operator_token23] = ACTIONS(809), - [aux_sym_comparison_operator_token24] = ACTIONS(809), - [aux_sym_comparison_operator_token25] = ACTIONS(809), - [aux_sym_comparison_operator_token26] = ACTIONS(809), - [aux_sym_comparison_operator_token27] = ACTIONS(809), - [aux_sym_comparison_operator_token28] = ACTIONS(811), - [aux_sym_comparison_operator_token29] = ACTIONS(809), - [aux_sym_comparison_operator_token30] = ACTIONS(809), - [aux_sym_comparison_operator_token31] = ACTIONS(809), - [aux_sym_comparison_operator_token32] = ACTIONS(809), - [aux_sym_comparison_operator_token33] = ACTIONS(809), - [aux_sym_comparison_operator_token34] = ACTIONS(811), - [aux_sym_comparison_operator_token35] = ACTIONS(809), - [aux_sym_comparison_operator_token36] = ACTIONS(809), - [aux_sym_comparison_operator_token37] = ACTIONS(809), - [aux_sym_comparison_operator_token38] = ACTIONS(809), - [aux_sym_comparison_operator_token39] = ACTIONS(809), - [aux_sym_comparison_operator_token40] = ACTIONS(809), - [aux_sym_comparison_operator_token41] = ACTIONS(809), - [aux_sym_comparison_operator_token42] = ACTIONS(809), - [aux_sym_comparison_operator_token43] = ACTIONS(809), - [aux_sym_comparison_operator_token44] = ACTIONS(809), - [aux_sym_comparison_operator_token45] = ACTIONS(809), - [aux_sym_comparison_operator_token46] = ACTIONS(809), - [aux_sym_comparison_operator_token47] = ACTIONS(809), - [aux_sym_comparison_operator_token48] = ACTIONS(809), - [aux_sym_comparison_operator_token49] = ACTIONS(809), - [aux_sym_comparison_operator_token50] = ACTIONS(809), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(809), - [aux_sym_logical_expression_token1] = ACTIONS(809), - [aux_sym_logical_expression_token2] = ACTIONS(809), - [aux_sym_logical_expression_token3] = ACTIONS(809), - [aux_sym_bitwise_expression_token1] = ACTIONS(809), - [aux_sym_bitwise_expression_token2] = ACTIONS(809), - [aux_sym_bitwise_expression_token3] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [sym__statement_terminator] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1416), + [sym_hexadecimal_integer_literal] = ACTIONS(1416), + [sym_real_literal] = ACTIONS(1416), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1416), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1416), + [sym_verbatim_string_characters] = ACTIONS(1416), + [sym_verbatim_here_string_characters] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [aux_sym_comparison_operator_token37] = ACTIONS(1416), + [aux_sym_comparison_operator_token50] = ACTIONS(1416), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1416), + [anon_sym_DOLLAR_CARET] = ACTIONS(1416), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1416), + [anon_sym_DOLLAR_] = ACTIONS(1416), + [aux_sym_variable_token1] = ACTIONS(1416), + [aux_sym_variable_token2] = ACTIONS(1416), + [sym_braced_variable] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym_if_statement_token1] = ACTIONS(1416), + [aux_sym_switch_statement_token1] = ACTIONS(1416), + [aux_sym_foreach_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token1] = ACTIONS(1416), + [aux_sym_while_statement_token1] = ACTIONS(1416), + [aux_sym_do_statement_token1] = ACTIONS(1416), + [aux_sym_function_statement_token1] = ACTIONS(1416), + [aux_sym_function_statement_token2] = ACTIONS(1416), + [aux_sym_function_statement_token3] = ACTIONS(1416), + [aux_sym_flow_control_statement_token1] = ACTIONS(1416), + [aux_sym_flow_control_statement_token2] = ACTIONS(1416), + [aux_sym_flow_control_statement_token3] = ACTIONS(1416), + [aux_sym_flow_control_statement_token4] = ACTIONS(1416), + [aux_sym_flow_control_statement_token5] = ACTIONS(1416), + [sym_label] = ACTIONS(1416), + [aux_sym_trap_statement_token1] = ACTIONS(1416), + [aux_sym_try_statement_token1] = ACTIONS(1416), + [aux_sym_data_statement_token1] = ACTIONS(1416), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1416), + [aux_sym_parallel_statement_token1] = ACTIONS(1416), + [aux_sym_sequence_statement_token1] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [aux_sym_command_name_token1] = ACTIONS(1416), + [aux_sym_command_name_token2] = ACTIONS(1416), + [aux_sym_command_name_token3] = ACTIONS(1416), + [aux_sym_command_name_token4] = ACTIONS(1416), + [aux_sym_command_name_token5] = ACTIONS(1416), + [aux_sym_command_name_token6] = ACTIONS(1416), + [aux_sym_command_name_token7] = ACTIONS(1416), + [aux_sym_command_name_token8] = ACTIONS(1416), + [aux_sym_command_name_token9] = ACTIONS(1416), + [aux_sym_command_name_token10] = ACTIONS(1416), + [aux_sym_command_name_token11] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [aux_sym_foreach_command_token1] = ACTIONS(1416), + [aux_sym_class_statement_token1] = ACTIONS(1416), + [aux_sym_enum_statement_token1] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), + [anon_sym_AT_LPAREN] = ACTIONS(1416), + [anon_sym_AT_LBRACE] = ACTIONS(1416), }, [331] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(813), - [aux_sym_comparison_operator_token2] = ACTIONS(813), - [aux_sym_comparison_operator_token3] = ACTIONS(813), - [aux_sym_comparison_operator_token4] = ACTIONS(813), - [aux_sym_comparison_operator_token5] = ACTIONS(813), - [aux_sym_comparison_operator_token6] = ACTIONS(813), - [aux_sym_comparison_operator_token7] = ACTIONS(813), - [aux_sym_comparison_operator_token8] = ACTIONS(813), - [aux_sym_comparison_operator_token9] = ACTIONS(813), - [aux_sym_comparison_operator_token10] = ACTIONS(813), - [aux_sym_comparison_operator_token11] = ACTIONS(813), - [aux_sym_comparison_operator_token12] = ACTIONS(813), - [aux_sym_comparison_operator_token13] = ACTIONS(813), - [aux_sym_comparison_operator_token14] = ACTIONS(813), - [aux_sym_comparison_operator_token15] = ACTIONS(813), - [aux_sym_comparison_operator_token16] = ACTIONS(813), - [aux_sym_comparison_operator_token17] = ACTIONS(813), - [aux_sym_comparison_operator_token18] = ACTIONS(813), - [aux_sym_comparison_operator_token19] = ACTIONS(813), - [aux_sym_comparison_operator_token20] = ACTIONS(813), - [aux_sym_comparison_operator_token21] = ACTIONS(813), - [aux_sym_comparison_operator_token22] = ACTIONS(813), - [aux_sym_comparison_operator_token23] = ACTIONS(813), - [aux_sym_comparison_operator_token24] = ACTIONS(813), - [aux_sym_comparison_operator_token25] = ACTIONS(813), - [aux_sym_comparison_operator_token26] = ACTIONS(813), - [aux_sym_comparison_operator_token27] = ACTIONS(813), - [aux_sym_comparison_operator_token28] = ACTIONS(815), - [aux_sym_comparison_operator_token29] = ACTIONS(813), - [aux_sym_comparison_operator_token30] = ACTIONS(813), - [aux_sym_comparison_operator_token31] = ACTIONS(813), - [aux_sym_comparison_operator_token32] = ACTIONS(813), - [aux_sym_comparison_operator_token33] = ACTIONS(813), - [aux_sym_comparison_operator_token34] = ACTIONS(815), - [aux_sym_comparison_operator_token35] = ACTIONS(813), - [aux_sym_comparison_operator_token36] = ACTIONS(813), - [aux_sym_comparison_operator_token37] = ACTIONS(813), - [aux_sym_comparison_operator_token38] = ACTIONS(813), - [aux_sym_comparison_operator_token39] = ACTIONS(813), - [aux_sym_comparison_operator_token40] = ACTIONS(813), - [aux_sym_comparison_operator_token41] = ACTIONS(813), - [aux_sym_comparison_operator_token42] = ACTIONS(813), - [aux_sym_comparison_operator_token43] = ACTIONS(813), - [aux_sym_comparison_operator_token44] = ACTIONS(813), - [aux_sym_comparison_operator_token45] = ACTIONS(813), - [aux_sym_comparison_operator_token46] = ACTIONS(813), - [aux_sym_comparison_operator_token47] = ACTIONS(813), - [aux_sym_comparison_operator_token48] = ACTIONS(813), - [aux_sym_comparison_operator_token49] = ACTIONS(813), - [aux_sym_comparison_operator_token50] = ACTIONS(813), - [aux_sym_format_operator_token1] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [aux_sym_logical_expression_token1] = ACTIONS(813), - [aux_sym_logical_expression_token2] = ACTIONS(813), - [aux_sym_logical_expression_token3] = ACTIONS(813), - [aux_sym_bitwise_expression_token1] = ACTIONS(813), - [aux_sym_bitwise_expression_token2] = ACTIONS(813), - [aux_sym_bitwise_expression_token3] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [sym__statement_terminator] = ACTIONS(813), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1418), + [sym_hexadecimal_integer_literal] = ACTIONS(1418), + [sym_real_literal] = ACTIONS(1418), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1418), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1418), + [sym_verbatim_string_characters] = ACTIONS(1418), + [sym_verbatim_here_string_characters] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [aux_sym_comparison_operator_token37] = ACTIONS(1418), + [aux_sym_comparison_operator_token50] = ACTIONS(1418), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1418), + [anon_sym_DOLLAR_CARET] = ACTIONS(1418), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1418), + [anon_sym_DOLLAR_] = ACTIONS(1418), + [aux_sym_variable_token1] = ACTIONS(1418), + [aux_sym_variable_token2] = ACTIONS(1418), + [sym_braced_variable] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [aux_sym_if_statement_token1] = ACTIONS(1418), + [aux_sym_switch_statement_token1] = ACTIONS(1418), + [aux_sym_foreach_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token1] = ACTIONS(1418), + [aux_sym_while_statement_token1] = ACTIONS(1418), + [aux_sym_do_statement_token1] = ACTIONS(1418), + [aux_sym_function_statement_token1] = ACTIONS(1418), + [aux_sym_function_statement_token2] = ACTIONS(1418), + [aux_sym_function_statement_token3] = ACTIONS(1418), + [aux_sym_flow_control_statement_token1] = ACTIONS(1418), + [aux_sym_flow_control_statement_token2] = ACTIONS(1418), + [aux_sym_flow_control_statement_token3] = ACTIONS(1418), + [aux_sym_flow_control_statement_token4] = ACTIONS(1418), + [aux_sym_flow_control_statement_token5] = ACTIONS(1418), + [sym_label] = ACTIONS(1418), + [aux_sym_trap_statement_token1] = ACTIONS(1418), + [aux_sym_try_statement_token1] = ACTIONS(1418), + [aux_sym_data_statement_token1] = ACTIONS(1418), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1418), + [aux_sym_parallel_statement_token1] = ACTIONS(1418), + [aux_sym_sequence_statement_token1] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [aux_sym_command_name_token1] = ACTIONS(1418), + [aux_sym_command_name_token2] = ACTIONS(1418), + [aux_sym_command_name_token3] = ACTIONS(1418), + [aux_sym_command_name_token4] = ACTIONS(1418), + [aux_sym_command_name_token5] = ACTIONS(1418), + [aux_sym_command_name_token6] = ACTIONS(1418), + [aux_sym_command_name_token7] = ACTIONS(1418), + [aux_sym_command_name_token8] = ACTIONS(1418), + [aux_sym_command_name_token9] = ACTIONS(1418), + [aux_sym_command_name_token10] = ACTIONS(1418), + [aux_sym_command_name_token11] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [aux_sym_foreach_command_token1] = ACTIONS(1418), + [aux_sym_class_statement_token1] = ACTIONS(1418), + [aux_sym_enum_statement_token1] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1418), + [anon_sym_AT_LPAREN] = ACTIONS(1418), + [anon_sym_AT_LBRACE] = ACTIONS(1418), }, [332] = { - [sym_format_operator] = STATE(579), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(809), - [aux_sym_comparison_operator_token2] = ACTIONS(809), - [aux_sym_comparison_operator_token3] = ACTIONS(809), - [aux_sym_comparison_operator_token4] = ACTIONS(809), - [aux_sym_comparison_operator_token5] = ACTIONS(809), - [aux_sym_comparison_operator_token6] = ACTIONS(809), - [aux_sym_comparison_operator_token7] = ACTIONS(809), - [aux_sym_comparison_operator_token8] = ACTIONS(809), - [aux_sym_comparison_operator_token9] = ACTIONS(809), - [aux_sym_comparison_operator_token10] = ACTIONS(809), - [aux_sym_comparison_operator_token11] = ACTIONS(809), - [aux_sym_comparison_operator_token12] = ACTIONS(809), - [aux_sym_comparison_operator_token13] = ACTIONS(809), - [aux_sym_comparison_operator_token14] = ACTIONS(809), - [aux_sym_comparison_operator_token15] = ACTIONS(809), - [aux_sym_comparison_operator_token16] = ACTIONS(809), - [aux_sym_comparison_operator_token17] = ACTIONS(809), - [aux_sym_comparison_operator_token18] = ACTIONS(809), - [aux_sym_comparison_operator_token19] = ACTIONS(809), - [aux_sym_comparison_operator_token20] = ACTIONS(809), - [aux_sym_comparison_operator_token21] = ACTIONS(809), - [aux_sym_comparison_operator_token22] = ACTIONS(809), - [aux_sym_comparison_operator_token23] = ACTIONS(809), - [aux_sym_comparison_operator_token24] = ACTIONS(809), - [aux_sym_comparison_operator_token25] = ACTIONS(809), - [aux_sym_comparison_operator_token26] = ACTIONS(809), - [aux_sym_comparison_operator_token27] = ACTIONS(809), - [aux_sym_comparison_operator_token28] = ACTIONS(811), - [aux_sym_comparison_operator_token29] = ACTIONS(809), - [aux_sym_comparison_operator_token30] = ACTIONS(809), - [aux_sym_comparison_operator_token31] = ACTIONS(809), - [aux_sym_comparison_operator_token32] = ACTIONS(809), - [aux_sym_comparison_operator_token33] = ACTIONS(809), - [aux_sym_comparison_operator_token34] = ACTIONS(811), - [aux_sym_comparison_operator_token35] = ACTIONS(809), - [aux_sym_comparison_operator_token36] = ACTIONS(809), - [aux_sym_comparison_operator_token37] = ACTIONS(809), - [aux_sym_comparison_operator_token38] = ACTIONS(809), - [aux_sym_comparison_operator_token39] = ACTIONS(809), - [aux_sym_comparison_operator_token40] = ACTIONS(809), - [aux_sym_comparison_operator_token41] = ACTIONS(809), - [aux_sym_comparison_operator_token42] = ACTIONS(809), - [aux_sym_comparison_operator_token43] = ACTIONS(809), - [aux_sym_comparison_operator_token44] = ACTIONS(809), - [aux_sym_comparison_operator_token45] = ACTIONS(809), - [aux_sym_comparison_operator_token46] = ACTIONS(809), - [aux_sym_comparison_operator_token47] = ACTIONS(809), - [aux_sym_comparison_operator_token48] = ACTIONS(809), - [aux_sym_comparison_operator_token49] = ACTIONS(809), - [aux_sym_comparison_operator_token50] = ACTIONS(809), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(809), - [aux_sym_logical_expression_token1] = ACTIONS(809), - [aux_sym_logical_expression_token2] = ACTIONS(809), - [aux_sym_logical_expression_token3] = ACTIONS(809), - [aux_sym_bitwise_expression_token1] = ACTIONS(809), - [aux_sym_bitwise_expression_token2] = ACTIONS(809), - [aux_sym_bitwise_expression_token3] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_BSLASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1420), + [sym_hexadecimal_integer_literal] = ACTIONS(1420), + [sym_real_literal] = ACTIONS(1420), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1420), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1420), + [sym_verbatim_string_characters] = ACTIONS(1420), + [sym_verbatim_here_string_characters] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [aux_sym_comparison_operator_token37] = ACTIONS(1420), + [aux_sym_comparison_operator_token50] = ACTIONS(1420), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1420), + [anon_sym_DOLLAR_CARET] = ACTIONS(1420), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1420), + [anon_sym_DOLLAR_] = ACTIONS(1420), + [aux_sym_variable_token1] = ACTIONS(1420), + [aux_sym_variable_token2] = ACTIONS(1420), + [sym_braced_variable] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym_if_statement_token1] = ACTIONS(1420), + [aux_sym_switch_statement_token1] = ACTIONS(1420), + [aux_sym_foreach_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token1] = ACTIONS(1420), + [aux_sym_while_statement_token1] = ACTIONS(1420), + [aux_sym_do_statement_token1] = ACTIONS(1420), + [aux_sym_function_statement_token1] = ACTIONS(1420), + [aux_sym_function_statement_token2] = ACTIONS(1420), + [aux_sym_function_statement_token3] = ACTIONS(1420), + [aux_sym_flow_control_statement_token1] = ACTIONS(1420), + [aux_sym_flow_control_statement_token2] = ACTIONS(1420), + [aux_sym_flow_control_statement_token3] = ACTIONS(1420), + [aux_sym_flow_control_statement_token4] = ACTIONS(1420), + [aux_sym_flow_control_statement_token5] = ACTIONS(1420), + [sym_label] = ACTIONS(1420), + [aux_sym_trap_statement_token1] = ACTIONS(1420), + [aux_sym_try_statement_token1] = ACTIONS(1420), + [aux_sym_data_statement_token1] = ACTIONS(1420), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1420), + [aux_sym_parallel_statement_token1] = ACTIONS(1420), + [aux_sym_sequence_statement_token1] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [aux_sym_command_name_token1] = ACTIONS(1420), + [aux_sym_command_name_token2] = ACTIONS(1420), + [aux_sym_command_name_token3] = ACTIONS(1420), + [aux_sym_command_name_token4] = ACTIONS(1420), + [aux_sym_command_name_token5] = ACTIONS(1420), + [aux_sym_command_name_token6] = ACTIONS(1420), + [aux_sym_command_name_token7] = ACTIONS(1420), + [aux_sym_command_name_token8] = ACTIONS(1420), + [aux_sym_command_name_token9] = ACTIONS(1420), + [aux_sym_command_name_token10] = ACTIONS(1420), + [aux_sym_command_name_token11] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [aux_sym_foreach_command_token1] = ACTIONS(1420), + [aux_sym_class_statement_token1] = ACTIONS(1420), + [aux_sym_enum_statement_token1] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), + [anon_sym_AT_LPAREN] = ACTIONS(1420), + [anon_sym_AT_LBRACE] = ACTIONS(1420), }, [333] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(813), - [aux_sym_comparison_operator_token2] = ACTIONS(813), - [aux_sym_comparison_operator_token3] = ACTIONS(813), - [aux_sym_comparison_operator_token4] = ACTIONS(813), - [aux_sym_comparison_operator_token5] = ACTIONS(813), - [aux_sym_comparison_operator_token6] = ACTIONS(813), - [aux_sym_comparison_operator_token7] = ACTIONS(813), - [aux_sym_comparison_operator_token8] = ACTIONS(813), - [aux_sym_comparison_operator_token9] = ACTIONS(813), - [aux_sym_comparison_operator_token10] = ACTIONS(813), - [aux_sym_comparison_operator_token11] = ACTIONS(813), - [aux_sym_comparison_operator_token12] = ACTIONS(813), - [aux_sym_comparison_operator_token13] = ACTIONS(813), - [aux_sym_comparison_operator_token14] = ACTIONS(813), - [aux_sym_comparison_operator_token15] = ACTIONS(813), - [aux_sym_comparison_operator_token16] = ACTIONS(813), - [aux_sym_comparison_operator_token17] = ACTIONS(813), - [aux_sym_comparison_operator_token18] = ACTIONS(813), - [aux_sym_comparison_operator_token19] = ACTIONS(813), - [aux_sym_comparison_operator_token20] = ACTIONS(813), - [aux_sym_comparison_operator_token21] = ACTIONS(813), - [aux_sym_comparison_operator_token22] = ACTIONS(813), - [aux_sym_comparison_operator_token23] = ACTIONS(813), - [aux_sym_comparison_operator_token24] = ACTIONS(813), - [aux_sym_comparison_operator_token25] = ACTIONS(813), - [aux_sym_comparison_operator_token26] = ACTIONS(813), - [aux_sym_comparison_operator_token27] = ACTIONS(813), - [aux_sym_comparison_operator_token28] = ACTIONS(815), - [aux_sym_comparison_operator_token29] = ACTIONS(813), - [aux_sym_comparison_operator_token30] = ACTIONS(813), - [aux_sym_comparison_operator_token31] = ACTIONS(813), - [aux_sym_comparison_operator_token32] = ACTIONS(813), - [aux_sym_comparison_operator_token33] = ACTIONS(813), - [aux_sym_comparison_operator_token34] = ACTIONS(815), - [aux_sym_comparison_operator_token35] = ACTIONS(813), - [aux_sym_comparison_operator_token36] = ACTIONS(813), - [aux_sym_comparison_operator_token37] = ACTIONS(813), - [aux_sym_comparison_operator_token38] = ACTIONS(813), - [aux_sym_comparison_operator_token39] = ACTIONS(813), - [aux_sym_comparison_operator_token40] = ACTIONS(813), - [aux_sym_comparison_operator_token41] = ACTIONS(813), - [aux_sym_comparison_operator_token42] = ACTIONS(813), - [aux_sym_comparison_operator_token43] = ACTIONS(813), - [aux_sym_comparison_operator_token44] = ACTIONS(813), - [aux_sym_comparison_operator_token45] = ACTIONS(813), - [aux_sym_comparison_operator_token46] = ACTIONS(813), - [aux_sym_comparison_operator_token47] = ACTIONS(813), - [aux_sym_comparison_operator_token48] = ACTIONS(813), - [aux_sym_comparison_operator_token49] = ACTIONS(813), - [aux_sym_comparison_operator_token50] = ACTIONS(813), - [aux_sym_format_operator_token1] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [aux_sym_logical_expression_token1] = ACTIONS(813), - [aux_sym_logical_expression_token2] = ACTIONS(813), - [aux_sym_logical_expression_token3] = ACTIONS(813), - [aux_sym_bitwise_expression_token1] = ACTIONS(813), - [aux_sym_bitwise_expression_token2] = ACTIONS(813), - [aux_sym_bitwise_expression_token3] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_RBRACK] = ACTIONS(813), - }, - [334] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(2064), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [335] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1999), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [336] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1746), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [337] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1956), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [338] = { - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1406), - [sym_hexadecimal_integer_literal] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1406), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1406), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1406), - [sym_verbatim_string_characters] = ACTIONS(1406), - [sym_verbatim_here_string_characters] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [aux_sym_comparison_operator_token37] = ACTIONS(1406), - [aux_sym_comparison_operator_token50] = ACTIONS(1406), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1406), - [anon_sym_DOLLAR_CARET] = ACTIONS(1406), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1406), - [anon_sym_DOLLAR_] = ACTIONS(1406), - [aux_sym_variable_token1] = ACTIONS(1406), - [aux_sym_variable_token2] = ACTIONS(1406), - [sym_braced_variable] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [aux_sym_param_block_token1] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_COMMA] = ACTIONS(1406), - [aux_sym_block_name_token1] = ACTIONS(1406), - [aux_sym_block_name_token2] = ACTIONS(1406), - [aux_sym_block_name_token3] = ACTIONS(1406), - [aux_sym_block_name_token4] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [aux_sym_if_statement_token1] = ACTIONS(1406), - [aux_sym_switch_statement_token1] = ACTIONS(1406), - [aux_sym_foreach_statement_token1] = ACTIONS(1406), - [aux_sym_for_statement_token1] = ACTIONS(1406), - [aux_sym_while_statement_token1] = ACTIONS(1406), - [aux_sym_do_statement_token1] = ACTIONS(1406), - [aux_sym_function_statement_token1] = ACTIONS(1406), - [aux_sym_function_statement_token2] = ACTIONS(1406), - [aux_sym_function_statement_token3] = ACTIONS(1406), - [aux_sym_flow_control_statement_token1] = ACTIONS(1406), - [aux_sym_flow_control_statement_token2] = ACTIONS(1406), - [aux_sym_flow_control_statement_token3] = ACTIONS(1406), - [aux_sym_flow_control_statement_token4] = ACTIONS(1406), - [aux_sym_flow_control_statement_token5] = ACTIONS(1406), - [sym_label] = ACTIONS(1406), - [aux_sym_trap_statement_token1] = ACTIONS(1406), - [aux_sym_try_statement_token1] = ACTIONS(1406), - [aux_sym_data_statement_token1] = ACTIONS(1406), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1406), - [aux_sym_parallel_statement_token1] = ACTIONS(1406), - [aux_sym_sequence_statement_token1] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [aux_sym_command_name_token1] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1406), - [aux_sym_foreach_command_token1] = ACTIONS(1406), - [aux_sym_class_statement_token1] = ACTIONS(1406), - [aux_sym_enum_statement_token1] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1406), - [anon_sym_AT_LPAREN] = ACTIONS(1406), - [anon_sym_AT_LBRACE] = ACTIONS(1406), - [sym__statement_terminator] = ACTIONS(1408), - }, - [339] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1791), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [340] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1813), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [341] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1820), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [342] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1827), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [343] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1832), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [344] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1835), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [345] = { - [sym_format_operator] = STATE(577), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(801), - [aux_sym_comparison_operator_token2] = ACTIONS(801), - [aux_sym_comparison_operator_token3] = ACTIONS(801), - [aux_sym_comparison_operator_token4] = ACTIONS(801), - [aux_sym_comparison_operator_token5] = ACTIONS(801), - [aux_sym_comparison_operator_token6] = ACTIONS(801), - [aux_sym_comparison_operator_token7] = ACTIONS(801), - [aux_sym_comparison_operator_token8] = ACTIONS(801), - [aux_sym_comparison_operator_token9] = ACTIONS(801), - [aux_sym_comparison_operator_token10] = ACTIONS(801), - [aux_sym_comparison_operator_token11] = ACTIONS(801), - [aux_sym_comparison_operator_token12] = ACTIONS(801), - [aux_sym_comparison_operator_token13] = ACTIONS(801), - [aux_sym_comparison_operator_token14] = ACTIONS(801), - [aux_sym_comparison_operator_token15] = ACTIONS(801), - [aux_sym_comparison_operator_token16] = ACTIONS(801), - [aux_sym_comparison_operator_token17] = ACTIONS(801), - [aux_sym_comparison_operator_token18] = ACTIONS(801), - [aux_sym_comparison_operator_token19] = ACTIONS(801), - [aux_sym_comparison_operator_token20] = ACTIONS(801), - [aux_sym_comparison_operator_token21] = ACTIONS(801), - [aux_sym_comparison_operator_token22] = ACTIONS(801), - [aux_sym_comparison_operator_token23] = ACTIONS(801), - [aux_sym_comparison_operator_token24] = ACTIONS(801), - [aux_sym_comparison_operator_token25] = ACTIONS(801), - [aux_sym_comparison_operator_token26] = ACTIONS(801), - [aux_sym_comparison_operator_token27] = ACTIONS(801), - [aux_sym_comparison_operator_token28] = ACTIONS(803), - [aux_sym_comparison_operator_token29] = ACTIONS(801), - [aux_sym_comparison_operator_token30] = ACTIONS(801), - [aux_sym_comparison_operator_token31] = ACTIONS(801), - [aux_sym_comparison_operator_token32] = ACTIONS(801), - [aux_sym_comparison_operator_token33] = ACTIONS(801), - [aux_sym_comparison_operator_token34] = ACTIONS(803), - [aux_sym_comparison_operator_token35] = ACTIONS(801), - [aux_sym_comparison_operator_token36] = ACTIONS(801), - [aux_sym_comparison_operator_token37] = ACTIONS(801), - [aux_sym_comparison_operator_token38] = ACTIONS(801), - [aux_sym_comparison_operator_token39] = ACTIONS(801), - [aux_sym_comparison_operator_token40] = ACTIONS(801), - [aux_sym_comparison_operator_token41] = ACTIONS(801), - [aux_sym_comparison_operator_token42] = ACTIONS(801), - [aux_sym_comparison_operator_token43] = ACTIONS(801), - [aux_sym_comparison_operator_token44] = ACTIONS(801), - [aux_sym_comparison_operator_token45] = ACTIONS(801), - [aux_sym_comparison_operator_token46] = ACTIONS(801), - [aux_sym_comparison_operator_token47] = ACTIONS(801), - [aux_sym_comparison_operator_token48] = ACTIONS(801), - [aux_sym_comparison_operator_token49] = ACTIONS(801), - [aux_sym_comparison_operator_token50] = ACTIONS(801), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(801), - [aux_sym_logical_expression_token1] = ACTIONS(801), - [aux_sym_logical_expression_token2] = ACTIONS(801), - [aux_sym_logical_expression_token3] = ACTIONS(801), - [aux_sym_bitwise_expression_token1] = ACTIONS(801), - [aux_sym_bitwise_expression_token2] = ACTIONS(801), - [aux_sym_bitwise_expression_token3] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [sym__statement_terminator] = ACTIONS(801), - }, - [346] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(795), - [aux_sym_comparison_operator_token2] = ACTIONS(795), - [aux_sym_comparison_operator_token3] = ACTIONS(795), - [aux_sym_comparison_operator_token4] = ACTIONS(795), - [aux_sym_comparison_operator_token5] = ACTIONS(795), - [aux_sym_comparison_operator_token6] = ACTIONS(795), - [aux_sym_comparison_operator_token7] = ACTIONS(795), - [aux_sym_comparison_operator_token8] = ACTIONS(795), - [aux_sym_comparison_operator_token9] = ACTIONS(795), - [aux_sym_comparison_operator_token10] = ACTIONS(795), - [aux_sym_comparison_operator_token11] = ACTIONS(795), - [aux_sym_comparison_operator_token12] = ACTIONS(795), - [aux_sym_comparison_operator_token13] = ACTIONS(795), - [aux_sym_comparison_operator_token14] = ACTIONS(795), - [aux_sym_comparison_operator_token15] = ACTIONS(795), - [aux_sym_comparison_operator_token16] = ACTIONS(795), - [aux_sym_comparison_operator_token17] = ACTIONS(795), - [aux_sym_comparison_operator_token18] = ACTIONS(795), - [aux_sym_comparison_operator_token19] = ACTIONS(795), - [aux_sym_comparison_operator_token20] = ACTIONS(795), - [aux_sym_comparison_operator_token21] = ACTIONS(795), - [aux_sym_comparison_operator_token22] = ACTIONS(795), - [aux_sym_comparison_operator_token23] = ACTIONS(795), - [aux_sym_comparison_operator_token24] = ACTIONS(795), - [aux_sym_comparison_operator_token25] = ACTIONS(795), - [aux_sym_comparison_operator_token26] = ACTIONS(795), - [aux_sym_comparison_operator_token27] = ACTIONS(795), - [aux_sym_comparison_operator_token28] = ACTIONS(797), - [aux_sym_comparison_operator_token29] = ACTIONS(795), - [aux_sym_comparison_operator_token30] = ACTIONS(795), - [aux_sym_comparison_operator_token31] = ACTIONS(795), - [aux_sym_comparison_operator_token32] = ACTIONS(795), - [aux_sym_comparison_operator_token33] = ACTIONS(795), - [aux_sym_comparison_operator_token34] = ACTIONS(797), - [aux_sym_comparison_operator_token35] = ACTIONS(795), - [aux_sym_comparison_operator_token36] = ACTIONS(795), - [aux_sym_comparison_operator_token37] = ACTIONS(795), - [aux_sym_comparison_operator_token38] = ACTIONS(795), - [aux_sym_comparison_operator_token39] = ACTIONS(795), - [aux_sym_comparison_operator_token40] = ACTIONS(795), - [aux_sym_comparison_operator_token41] = ACTIONS(795), - [aux_sym_comparison_operator_token42] = ACTIONS(795), - [aux_sym_comparison_operator_token43] = ACTIONS(795), - [aux_sym_comparison_operator_token44] = ACTIONS(795), - [aux_sym_comparison_operator_token45] = ACTIONS(795), - [aux_sym_comparison_operator_token46] = ACTIONS(795), - [aux_sym_comparison_operator_token47] = ACTIONS(795), - [aux_sym_comparison_operator_token48] = ACTIONS(795), - [aux_sym_comparison_operator_token49] = ACTIONS(795), - [aux_sym_comparison_operator_token50] = ACTIONS(795), - [aux_sym_format_operator_token1] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [aux_sym_logical_expression_token1] = ACTIONS(795), - [aux_sym_logical_expression_token2] = ACTIONS(795), - [aux_sym_logical_expression_token3] = ACTIONS(795), - [aux_sym_bitwise_expression_token1] = ACTIONS(795), - [aux_sym_bitwise_expression_token2] = ACTIONS(795), - [aux_sym_bitwise_expression_token3] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [sym__statement_terminator] = ACTIONS(795), - }, - [347] = { - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1343), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), - }, - [348] = { - [sym_format_operator] = STATE(579), - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(801), - [aux_sym_comparison_operator_token2] = ACTIONS(801), - [aux_sym_comparison_operator_token3] = ACTIONS(801), - [aux_sym_comparison_operator_token4] = ACTIONS(801), - [aux_sym_comparison_operator_token5] = ACTIONS(801), - [aux_sym_comparison_operator_token6] = ACTIONS(801), - [aux_sym_comparison_operator_token7] = ACTIONS(801), - [aux_sym_comparison_operator_token8] = ACTIONS(801), - [aux_sym_comparison_operator_token9] = ACTIONS(801), - [aux_sym_comparison_operator_token10] = ACTIONS(801), - [aux_sym_comparison_operator_token11] = ACTIONS(801), - [aux_sym_comparison_operator_token12] = ACTIONS(801), - [aux_sym_comparison_operator_token13] = ACTIONS(801), - [aux_sym_comparison_operator_token14] = ACTIONS(801), - [aux_sym_comparison_operator_token15] = ACTIONS(801), - [aux_sym_comparison_operator_token16] = ACTIONS(801), - [aux_sym_comparison_operator_token17] = ACTIONS(801), - [aux_sym_comparison_operator_token18] = ACTIONS(801), - [aux_sym_comparison_operator_token19] = ACTIONS(801), - [aux_sym_comparison_operator_token20] = ACTIONS(801), - [aux_sym_comparison_operator_token21] = ACTIONS(801), - [aux_sym_comparison_operator_token22] = ACTIONS(801), - [aux_sym_comparison_operator_token23] = ACTIONS(801), - [aux_sym_comparison_operator_token24] = ACTIONS(801), - [aux_sym_comparison_operator_token25] = ACTIONS(801), - [aux_sym_comparison_operator_token26] = ACTIONS(801), - [aux_sym_comparison_operator_token27] = ACTIONS(801), - [aux_sym_comparison_operator_token28] = ACTIONS(803), - [aux_sym_comparison_operator_token29] = ACTIONS(801), - [aux_sym_comparison_operator_token30] = ACTIONS(801), - [aux_sym_comparison_operator_token31] = ACTIONS(801), - [aux_sym_comparison_operator_token32] = ACTIONS(801), - [aux_sym_comparison_operator_token33] = ACTIONS(801), - [aux_sym_comparison_operator_token34] = ACTIONS(803), - [aux_sym_comparison_operator_token35] = ACTIONS(801), - [aux_sym_comparison_operator_token36] = ACTIONS(801), - [aux_sym_comparison_operator_token37] = ACTIONS(801), - [aux_sym_comparison_operator_token38] = ACTIONS(801), - [aux_sym_comparison_operator_token39] = ACTIONS(801), - [aux_sym_comparison_operator_token40] = ACTIONS(801), - [aux_sym_comparison_operator_token41] = ACTIONS(801), - [aux_sym_comparison_operator_token42] = ACTIONS(801), - [aux_sym_comparison_operator_token43] = ACTIONS(801), - [aux_sym_comparison_operator_token44] = ACTIONS(801), - [aux_sym_comparison_operator_token45] = ACTIONS(801), - [aux_sym_comparison_operator_token46] = ACTIONS(801), - [aux_sym_comparison_operator_token47] = ACTIONS(801), - [aux_sym_comparison_operator_token48] = ACTIONS(801), - [aux_sym_comparison_operator_token49] = ACTIONS(801), - [aux_sym_comparison_operator_token50] = ACTIONS(801), - [aux_sym_format_operator_token1] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(801), - [aux_sym_logical_expression_token1] = ACTIONS(801), - [aux_sym_logical_expression_token2] = ACTIONS(801), - [aux_sym_logical_expression_token3] = ACTIONS(801), - [aux_sym_bitwise_expression_token1] = ACTIONS(801), - [aux_sym_bitwise_expression_token2] = ACTIONS(801), - [aux_sym_bitwise_expression_token3] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(801), - }, - [349] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(795), - [aux_sym_comparison_operator_token2] = ACTIONS(795), - [aux_sym_comparison_operator_token3] = ACTIONS(795), - [aux_sym_comparison_operator_token4] = ACTIONS(795), - [aux_sym_comparison_operator_token5] = ACTIONS(795), - [aux_sym_comparison_operator_token6] = ACTIONS(795), - [aux_sym_comparison_operator_token7] = ACTIONS(795), - [aux_sym_comparison_operator_token8] = ACTIONS(795), - [aux_sym_comparison_operator_token9] = ACTIONS(795), - [aux_sym_comparison_operator_token10] = ACTIONS(795), - [aux_sym_comparison_operator_token11] = ACTIONS(795), - [aux_sym_comparison_operator_token12] = ACTIONS(795), - [aux_sym_comparison_operator_token13] = ACTIONS(795), - [aux_sym_comparison_operator_token14] = ACTIONS(795), - [aux_sym_comparison_operator_token15] = ACTIONS(795), - [aux_sym_comparison_operator_token16] = ACTIONS(795), - [aux_sym_comparison_operator_token17] = ACTIONS(795), - [aux_sym_comparison_operator_token18] = ACTIONS(795), - [aux_sym_comparison_operator_token19] = ACTIONS(795), - [aux_sym_comparison_operator_token20] = ACTIONS(795), - [aux_sym_comparison_operator_token21] = ACTIONS(795), - [aux_sym_comparison_operator_token22] = ACTIONS(795), - [aux_sym_comparison_operator_token23] = ACTIONS(795), - [aux_sym_comparison_operator_token24] = ACTIONS(795), - [aux_sym_comparison_operator_token25] = ACTIONS(795), - [aux_sym_comparison_operator_token26] = ACTIONS(795), - [aux_sym_comparison_operator_token27] = ACTIONS(795), - [aux_sym_comparison_operator_token28] = ACTIONS(797), - [aux_sym_comparison_operator_token29] = ACTIONS(795), - [aux_sym_comparison_operator_token30] = ACTIONS(795), - [aux_sym_comparison_operator_token31] = ACTIONS(795), - [aux_sym_comparison_operator_token32] = ACTIONS(795), - [aux_sym_comparison_operator_token33] = ACTIONS(795), - [aux_sym_comparison_operator_token34] = ACTIONS(797), - [aux_sym_comparison_operator_token35] = ACTIONS(795), - [aux_sym_comparison_operator_token36] = ACTIONS(795), - [aux_sym_comparison_operator_token37] = ACTIONS(795), - [aux_sym_comparison_operator_token38] = ACTIONS(795), - [aux_sym_comparison_operator_token39] = ACTIONS(795), - [aux_sym_comparison_operator_token40] = ACTIONS(795), - [aux_sym_comparison_operator_token41] = ACTIONS(795), - [aux_sym_comparison_operator_token42] = ACTIONS(795), - [aux_sym_comparison_operator_token43] = ACTIONS(795), - [aux_sym_comparison_operator_token44] = ACTIONS(795), - [aux_sym_comparison_operator_token45] = ACTIONS(795), - [aux_sym_comparison_operator_token46] = ACTIONS(795), - [aux_sym_comparison_operator_token47] = ACTIONS(795), - [aux_sym_comparison_operator_token48] = ACTIONS(795), - [aux_sym_comparison_operator_token49] = ACTIONS(795), - [aux_sym_comparison_operator_token50] = ACTIONS(795), - [aux_sym_format_operator_token1] = ACTIONS(795), - [anon_sym_PERCENT] = ACTIONS(795), - [aux_sym_logical_expression_token1] = ACTIONS(795), - [aux_sym_logical_expression_token2] = ACTIONS(795), - [aux_sym_logical_expression_token3] = ACTIONS(795), - [aux_sym_bitwise_expression_token1] = ACTIONS(795), - [aux_sym_bitwise_expression_token2] = ACTIONS(795), - [aux_sym_bitwise_expression_token3] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(795), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_RBRACK] = ACTIONS(795), - }, - [350] = { [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(1422), [sym_hexadecimal_integer_literal] = ACTIONS(1422), @@ -61780,14 +62453,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(1422), [sym_braced_variable] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(1422), - [aux_sym_param_block_token1] = ACTIONS(1422), [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1422), [anon_sym_COMMA] = ACTIONS(1422), - [aux_sym_block_name_token1] = ACTIONS(1422), - [aux_sym_block_name_token2] = ACTIONS(1422), - [aux_sym_block_name_token3] = ACTIONS(1422), - [aux_sym_block_name_token4] = ACTIONS(1422), [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), [aux_sym_if_statement_token1] = ACTIONS(1422), [aux_sym_switch_statement_token1] = ACTIONS(1422), [aux_sym_foreach_statement_token1] = ACTIONS(1422), @@ -61811,6 +62481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(1422), [anon_sym_AMP] = ACTIONS(1422), [aux_sym_command_name_token1] = ACTIONS(1422), + [aux_sym_command_name_token2] = ACTIONS(1422), + [aux_sym_command_name_token3] = ACTIONS(1422), + [aux_sym_command_name_token4] = ACTIONS(1422), + [aux_sym_command_name_token5] = ACTIONS(1422), + [aux_sym_command_name_token6] = ACTIONS(1422), + [aux_sym_command_name_token7] = ACTIONS(1422), + [aux_sym_command_name_token8] = ACTIONS(1422), + [aux_sym_command_name_token9] = ACTIONS(1422), + [aux_sym_command_name_token10] = ACTIONS(1422), + [aux_sym_command_name_token11] = ACTIONS(1422), [anon_sym_PERCENT] = ACTIONS(1422), [aux_sym_foreach_command_token1] = ACTIONS(1422), [aux_sym_class_statement_token1] = ACTIONS(1422), @@ -61825,11 +62505,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN] = ACTIONS(1422), [anon_sym_AT_LPAREN] = ACTIONS(1422), [anon_sym_AT_LBRACE] = ACTIONS(1422), - [sym__statement_terminator] = ACTIONS(1424), }, - [351] = { - [sym_catch_clause] = STATE(354), - [aux_sym_catch_clauses_repeat1] = STATE(354), + [334] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1424), + [sym_hexadecimal_integer_literal] = ACTIONS(1424), + [sym_real_literal] = ACTIONS(1424), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1424), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1424), + [sym_verbatim_string_characters] = ACTIONS(1424), + [sym_verbatim_here_string_characters] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [aux_sym_comparison_operator_token37] = ACTIONS(1424), + [aux_sym_comparison_operator_token50] = ACTIONS(1424), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1424), + [anon_sym_DOLLAR_CARET] = ACTIONS(1424), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1424), + [anon_sym_DOLLAR_] = ACTIONS(1424), + [aux_sym_variable_token1] = ACTIONS(1424), + [aux_sym_variable_token2] = ACTIONS(1424), + [sym_braced_variable] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym_if_statement_token1] = ACTIONS(1424), + [aux_sym_switch_statement_token1] = ACTIONS(1424), + [aux_sym_foreach_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token1] = ACTIONS(1424), + [aux_sym_while_statement_token1] = ACTIONS(1424), + [aux_sym_do_statement_token1] = ACTIONS(1424), + [aux_sym_function_statement_token1] = ACTIONS(1424), + [aux_sym_function_statement_token2] = ACTIONS(1424), + [aux_sym_function_statement_token3] = ACTIONS(1424), + [aux_sym_flow_control_statement_token1] = ACTIONS(1424), + [aux_sym_flow_control_statement_token2] = ACTIONS(1424), + [aux_sym_flow_control_statement_token3] = ACTIONS(1424), + [aux_sym_flow_control_statement_token4] = ACTIONS(1424), + [aux_sym_flow_control_statement_token5] = ACTIONS(1424), + [sym_label] = ACTIONS(1424), + [aux_sym_trap_statement_token1] = ACTIONS(1424), + [aux_sym_try_statement_token1] = ACTIONS(1424), + [aux_sym_data_statement_token1] = ACTIONS(1424), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1424), + [aux_sym_parallel_statement_token1] = ACTIONS(1424), + [aux_sym_sequence_statement_token1] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [aux_sym_command_name_token1] = ACTIONS(1424), + [aux_sym_command_name_token2] = ACTIONS(1424), + [aux_sym_command_name_token3] = ACTIONS(1424), + [aux_sym_command_name_token4] = ACTIONS(1424), + [aux_sym_command_name_token5] = ACTIONS(1424), + [aux_sym_command_name_token6] = ACTIONS(1424), + [aux_sym_command_name_token7] = ACTIONS(1424), + [aux_sym_command_name_token8] = ACTIONS(1424), + [aux_sym_command_name_token9] = ACTIONS(1424), + [aux_sym_command_name_token10] = ACTIONS(1424), + [aux_sym_command_name_token11] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [aux_sym_foreach_command_token1] = ACTIONS(1424), + [aux_sym_class_statement_token1] = ACTIONS(1424), + [aux_sym_enum_statement_token1] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1424), + [anon_sym_AT_LPAREN] = ACTIONS(1424), + [anon_sym_AT_LBRACE] = ACTIONS(1424), + }, + [335] = { [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(1426), [sym_hexadecimal_integer_literal] = ACTIONS(1426), @@ -61872,14 +62623,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_label] = ACTIONS(1426), [aux_sym_trap_statement_token1] = ACTIONS(1426), [aux_sym_try_statement_token1] = ACTIONS(1426), - [aux_sym_catch_clause_token1] = ACTIONS(1329), - [aux_sym_finally_clause_token1] = ACTIONS(1426), [aux_sym_data_statement_token1] = ACTIONS(1426), [aux_sym_inlinescript_statement_token1] = ACTIONS(1426), [aux_sym_parallel_statement_token1] = ACTIONS(1426), [aux_sym_sequence_statement_token1] = ACTIONS(1426), [anon_sym_AMP] = ACTIONS(1426), [aux_sym_command_name_token1] = ACTIONS(1426), + [aux_sym_command_name_token2] = ACTIONS(1426), + [aux_sym_command_name_token3] = ACTIONS(1426), + [aux_sym_command_name_token4] = ACTIONS(1426), + [aux_sym_command_name_token5] = ACTIONS(1426), + [aux_sym_command_name_token6] = ACTIONS(1426), + [aux_sym_command_name_token7] = ACTIONS(1426), + [aux_sym_command_name_token8] = ACTIONS(1426), + [aux_sym_command_name_token9] = ACTIONS(1426), + [aux_sym_command_name_token10] = ACTIONS(1426), + [aux_sym_command_name_token11] = ACTIONS(1426), [anon_sym_PERCENT] = ACTIONS(1426), [aux_sym_foreach_command_token1] = ACTIONS(1426), [aux_sym_class_statement_token1] = ACTIONS(1426), @@ -61895,8 +62654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(1426), [anon_sym_AT_LBRACE] = ACTIONS(1426), }, - [352] = { - [aux_sym_script_block_repeat1] = STATE(352), + [336] = { [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(1428), [sym_hexadecimal_integer_literal] = ACTIONS(1428), @@ -61916,13 +62674,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token1] = ACTIONS(1428), [aux_sym_variable_token2] = ACTIONS(1428), [sym_braced_variable] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), [anon_sym_COMMA] = ACTIONS(1428), - [aux_sym_block_name_token1] = ACTIONS(1428), - [aux_sym_block_name_token2] = ACTIONS(1428), - [aux_sym_block_name_token3] = ACTIONS(1428), - [aux_sym_block_name_token4] = ACTIONS(1428), [anon_sym_LBRACE] = ACTIONS(1428), [anon_sym_RBRACE] = ACTIONS(1428), [aux_sym_if_statement_token1] = ACTIONS(1428), @@ -61948,6 +62703,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_sequence_statement_token1] = ACTIONS(1428), [anon_sym_AMP] = ACTIONS(1428), [aux_sym_command_name_token1] = ACTIONS(1428), + [aux_sym_command_name_token2] = ACTIONS(1428), + [aux_sym_command_name_token3] = ACTIONS(1428), + [aux_sym_command_name_token4] = ACTIONS(1428), + [aux_sym_command_name_token5] = ACTIONS(1428), + [aux_sym_command_name_token6] = ACTIONS(1428), + [aux_sym_command_name_token7] = ACTIONS(1428), + [aux_sym_command_name_token8] = ACTIONS(1428), + [aux_sym_command_name_token9] = ACTIONS(1428), + [aux_sym_command_name_token10] = ACTIONS(1428), + [aux_sym_command_name_token11] = ACTIONS(1428), [anon_sym_PERCENT] = ACTIONS(1428), [aux_sym_foreach_command_token1] = ACTIONS(1428), [aux_sym_class_statement_token1] = ACTIONS(1428), @@ -61963,549 +62728,4208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(1428), [anon_sym_AT_LBRACE] = ACTIONS(1428), }, - [353] = { + [337] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1433), - [sym_hexadecimal_integer_literal] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1433), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1433), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1433), - [sym_verbatim_string_characters] = ACTIONS(1433), - [sym_verbatim_here_string_characters] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [aux_sym_comparison_operator_token37] = ACTIONS(1433), - [aux_sym_comparison_operator_token50] = ACTIONS(1433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1433), - [anon_sym_DOLLAR_CARET] = ACTIONS(1433), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1433), - [anon_sym_DOLLAR_] = ACTIONS(1433), - [aux_sym_variable_token1] = ACTIONS(1433), - [aux_sym_variable_token2] = ACTIONS(1433), - [sym_braced_variable] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [aux_sym_param_block_token1] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [aux_sym_block_name_token1] = ACTIONS(1433), - [aux_sym_block_name_token2] = ACTIONS(1433), - [aux_sym_block_name_token3] = ACTIONS(1433), - [aux_sym_block_name_token4] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [aux_sym_if_statement_token1] = ACTIONS(1433), - [aux_sym_switch_statement_token1] = ACTIONS(1433), - [aux_sym_foreach_statement_token1] = ACTIONS(1433), - [aux_sym_for_statement_token1] = ACTIONS(1433), - [aux_sym_while_statement_token1] = ACTIONS(1433), - [aux_sym_do_statement_token1] = ACTIONS(1433), - [aux_sym_function_statement_token1] = ACTIONS(1433), - [aux_sym_function_statement_token2] = ACTIONS(1433), - [aux_sym_function_statement_token3] = ACTIONS(1433), - [aux_sym_flow_control_statement_token1] = ACTIONS(1433), - [aux_sym_flow_control_statement_token2] = ACTIONS(1433), - [aux_sym_flow_control_statement_token3] = ACTIONS(1433), - [aux_sym_flow_control_statement_token4] = ACTIONS(1433), - [aux_sym_flow_control_statement_token5] = ACTIONS(1433), - [sym_label] = ACTIONS(1433), - [aux_sym_trap_statement_token1] = ACTIONS(1433), - [aux_sym_try_statement_token1] = ACTIONS(1433), - [aux_sym_data_statement_token1] = ACTIONS(1433), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1433), - [aux_sym_parallel_statement_token1] = ACTIONS(1433), - [aux_sym_sequence_statement_token1] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [aux_sym_command_name_token1] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [aux_sym_foreach_command_token1] = ACTIONS(1433), - [aux_sym_class_statement_token1] = ACTIONS(1433), - [aux_sym_enum_statement_token1] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1433), - [anon_sym_AT_LPAREN] = ACTIONS(1433), - [anon_sym_AT_LBRACE] = ACTIONS(1433), - [sym__statement_terminator] = ACTIONS(1435), + [sym_decimal_integer_literal] = ACTIONS(1430), + [sym_hexadecimal_integer_literal] = ACTIONS(1430), + [sym_real_literal] = ACTIONS(1430), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1430), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1430), + [sym_verbatim_string_characters] = ACTIONS(1430), + [sym_verbatim_here_string_characters] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [aux_sym_comparison_operator_token37] = ACTIONS(1430), + [aux_sym_comparison_operator_token50] = ACTIONS(1430), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1430), + [anon_sym_DOLLAR_CARET] = ACTIONS(1430), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1430), + [anon_sym_DOLLAR_] = ACTIONS(1430), + [aux_sym_variable_token1] = ACTIONS(1430), + [aux_sym_variable_token2] = ACTIONS(1430), + [sym_braced_variable] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [aux_sym_if_statement_token1] = ACTIONS(1430), + [aux_sym_switch_statement_token1] = ACTIONS(1430), + [aux_sym_foreach_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token1] = ACTIONS(1430), + [aux_sym_while_statement_token1] = ACTIONS(1430), + [aux_sym_do_statement_token1] = ACTIONS(1430), + [aux_sym_function_statement_token1] = ACTIONS(1430), + [aux_sym_function_statement_token2] = ACTIONS(1430), + [aux_sym_function_statement_token3] = ACTIONS(1430), + [aux_sym_flow_control_statement_token1] = ACTIONS(1430), + [aux_sym_flow_control_statement_token2] = ACTIONS(1430), + [aux_sym_flow_control_statement_token3] = ACTIONS(1430), + [aux_sym_flow_control_statement_token4] = ACTIONS(1430), + [aux_sym_flow_control_statement_token5] = ACTIONS(1430), + [sym_label] = ACTIONS(1430), + [aux_sym_trap_statement_token1] = ACTIONS(1430), + [aux_sym_try_statement_token1] = ACTIONS(1430), + [aux_sym_data_statement_token1] = ACTIONS(1430), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1430), + [aux_sym_parallel_statement_token1] = ACTIONS(1430), + [aux_sym_sequence_statement_token1] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [aux_sym_command_name_token1] = ACTIONS(1430), + [aux_sym_command_name_token2] = ACTIONS(1430), + [aux_sym_command_name_token3] = ACTIONS(1430), + [aux_sym_command_name_token4] = ACTIONS(1430), + [aux_sym_command_name_token5] = ACTIONS(1430), + [aux_sym_command_name_token6] = ACTIONS(1430), + [aux_sym_command_name_token7] = ACTIONS(1430), + [aux_sym_command_name_token8] = ACTIONS(1430), + [aux_sym_command_name_token9] = ACTIONS(1430), + [aux_sym_command_name_token10] = ACTIONS(1430), + [aux_sym_command_name_token11] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [aux_sym_foreach_command_token1] = ACTIONS(1430), + [aux_sym_class_statement_token1] = ACTIONS(1430), + [aux_sym_enum_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1430), + [anon_sym_AT_LPAREN] = ACTIONS(1430), + [anon_sym_AT_LBRACE] = ACTIONS(1430), }, - [354] = { - [sym_catch_clause] = STATE(354), - [aux_sym_catch_clauses_repeat1] = STATE(354), + [338] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1437), - [sym_hexadecimal_integer_literal] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1437), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1437), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1437), - [sym_verbatim_string_characters] = ACTIONS(1437), - [sym_verbatim_here_string_characters] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [aux_sym_comparison_operator_token37] = ACTIONS(1437), - [aux_sym_comparison_operator_token50] = ACTIONS(1437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1437), - [anon_sym_DOLLAR_CARET] = ACTIONS(1437), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1437), - [anon_sym_DOLLAR_] = ACTIONS(1437), - [aux_sym_variable_token1] = ACTIONS(1437), - [aux_sym_variable_token2] = ACTIONS(1437), - [sym_braced_variable] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [aux_sym_if_statement_token1] = ACTIONS(1437), - [aux_sym_switch_statement_token1] = ACTIONS(1437), - [aux_sym_foreach_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token1] = ACTIONS(1437), - [aux_sym_while_statement_token1] = ACTIONS(1437), - [aux_sym_do_statement_token1] = ACTIONS(1437), - [aux_sym_function_statement_token1] = ACTIONS(1437), - [aux_sym_function_statement_token2] = ACTIONS(1437), - [aux_sym_function_statement_token3] = ACTIONS(1437), - [aux_sym_flow_control_statement_token1] = ACTIONS(1437), - [aux_sym_flow_control_statement_token2] = ACTIONS(1437), - [aux_sym_flow_control_statement_token3] = ACTIONS(1437), - [aux_sym_flow_control_statement_token4] = ACTIONS(1437), - [aux_sym_flow_control_statement_token5] = ACTIONS(1437), - [sym_label] = ACTIONS(1437), - [aux_sym_trap_statement_token1] = ACTIONS(1437), - [aux_sym_try_statement_token1] = ACTIONS(1437), - [aux_sym_catch_clause_token1] = ACTIONS(1439), - [aux_sym_finally_clause_token1] = ACTIONS(1437), - [aux_sym_data_statement_token1] = ACTIONS(1437), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1437), - [aux_sym_parallel_statement_token1] = ACTIONS(1437), - [aux_sym_sequence_statement_token1] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_command_name_token1] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [aux_sym_foreach_command_token1] = ACTIONS(1437), - [aux_sym_class_statement_token1] = ACTIONS(1437), - [aux_sym_enum_statement_token1] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1437), - [anon_sym_AT_LPAREN] = ACTIONS(1437), - [anon_sym_AT_LBRACE] = ACTIONS(1437), + [sym_decimal_integer_literal] = ACTIONS(1432), + [sym_hexadecimal_integer_literal] = ACTIONS(1432), + [sym_real_literal] = ACTIONS(1432), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1432), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1432), + [sym_verbatim_string_characters] = ACTIONS(1432), + [sym_verbatim_here_string_characters] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [aux_sym_comparison_operator_token37] = ACTIONS(1432), + [aux_sym_comparison_operator_token50] = ACTIONS(1432), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1432), + [anon_sym_DOLLAR_CARET] = ACTIONS(1432), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1432), + [anon_sym_DOLLAR_] = ACTIONS(1432), + [aux_sym_variable_token1] = ACTIONS(1432), + [aux_sym_variable_token2] = ACTIONS(1432), + [sym_braced_variable] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [aux_sym_if_statement_token1] = ACTIONS(1432), + [aux_sym_switch_statement_token1] = ACTIONS(1432), + [aux_sym_foreach_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token1] = ACTIONS(1432), + [aux_sym_while_statement_token1] = ACTIONS(1432), + [aux_sym_do_statement_token1] = ACTIONS(1432), + [aux_sym_function_statement_token1] = ACTIONS(1432), + [aux_sym_function_statement_token2] = ACTIONS(1432), + [aux_sym_function_statement_token3] = ACTIONS(1432), + [aux_sym_flow_control_statement_token1] = ACTIONS(1432), + [aux_sym_flow_control_statement_token2] = ACTIONS(1432), + [aux_sym_flow_control_statement_token3] = ACTIONS(1432), + [aux_sym_flow_control_statement_token4] = ACTIONS(1432), + [aux_sym_flow_control_statement_token5] = ACTIONS(1432), + [sym_label] = ACTIONS(1432), + [aux_sym_trap_statement_token1] = ACTIONS(1432), + [aux_sym_try_statement_token1] = ACTIONS(1432), + [aux_sym_data_statement_token1] = ACTIONS(1432), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1432), + [aux_sym_parallel_statement_token1] = ACTIONS(1432), + [aux_sym_sequence_statement_token1] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [aux_sym_command_name_token1] = ACTIONS(1432), + [aux_sym_command_name_token2] = ACTIONS(1432), + [aux_sym_command_name_token3] = ACTIONS(1432), + [aux_sym_command_name_token4] = ACTIONS(1432), + [aux_sym_command_name_token5] = ACTIONS(1432), + [aux_sym_command_name_token6] = ACTIONS(1432), + [aux_sym_command_name_token7] = ACTIONS(1432), + [aux_sym_command_name_token8] = ACTIONS(1432), + [aux_sym_command_name_token9] = ACTIONS(1432), + [aux_sym_command_name_token10] = ACTIONS(1432), + [aux_sym_command_name_token11] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [aux_sym_foreach_command_token1] = ACTIONS(1432), + [aux_sym_class_statement_token1] = ACTIONS(1432), + [aux_sym_enum_statement_token1] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1432), + [anon_sym_AT_LPAREN] = ACTIONS(1432), + [anon_sym_AT_LBRACE] = ACTIONS(1432), }, - [355] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym_unary_expression] = STATE(392), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_argument_expression_list] = STATE(1769), - [sym_argument_expression] = STATE(1531), - [sym_logical_argument_expression] = STATE(1360), - [sym_bitwise_argument_expression] = STATE(1361), - [sym_comparison_argument_expression] = STATE(589), - [sym_additive_argument_expression] = STATE(578), - [sym_multiplicative_argument_expression] = STATE(462), - [sym_format_argument_expression] = STATE(394), - [sym_range_argument_expression] = STATE(395), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [339] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1434), + [sym_hexadecimal_integer_literal] = ACTIONS(1434), + [sym_real_literal] = ACTIONS(1434), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1434), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1434), + [sym_verbatim_string_characters] = ACTIONS(1434), + [sym_verbatim_here_string_characters] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [aux_sym_comparison_operator_token37] = ACTIONS(1434), + [aux_sym_comparison_operator_token50] = ACTIONS(1434), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1434), + [anon_sym_DOLLAR_CARET] = ACTIONS(1434), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1434), + [anon_sym_DOLLAR_] = ACTIONS(1434), + [aux_sym_variable_token1] = ACTIONS(1434), + [aux_sym_variable_token2] = ACTIONS(1434), + [sym_braced_variable] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [aux_sym_if_statement_token1] = ACTIONS(1434), + [aux_sym_switch_statement_token1] = ACTIONS(1434), + [aux_sym_foreach_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token1] = ACTIONS(1434), + [aux_sym_while_statement_token1] = ACTIONS(1434), + [aux_sym_do_statement_token1] = ACTIONS(1434), + [aux_sym_function_statement_token1] = ACTIONS(1434), + [aux_sym_function_statement_token2] = ACTIONS(1434), + [aux_sym_function_statement_token3] = ACTIONS(1434), + [aux_sym_flow_control_statement_token1] = ACTIONS(1434), + [aux_sym_flow_control_statement_token2] = ACTIONS(1434), + [aux_sym_flow_control_statement_token3] = ACTIONS(1434), + [aux_sym_flow_control_statement_token4] = ACTIONS(1434), + [aux_sym_flow_control_statement_token5] = ACTIONS(1434), + [sym_label] = ACTIONS(1434), + [aux_sym_trap_statement_token1] = ACTIONS(1434), + [aux_sym_try_statement_token1] = ACTIONS(1434), + [aux_sym_data_statement_token1] = ACTIONS(1434), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1434), + [aux_sym_parallel_statement_token1] = ACTIONS(1434), + [aux_sym_sequence_statement_token1] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [aux_sym_command_name_token1] = ACTIONS(1434), + [aux_sym_command_name_token2] = ACTIONS(1434), + [aux_sym_command_name_token3] = ACTIONS(1434), + [aux_sym_command_name_token4] = ACTIONS(1434), + [aux_sym_command_name_token5] = ACTIONS(1434), + [aux_sym_command_name_token6] = ACTIONS(1434), + [aux_sym_command_name_token7] = ACTIONS(1434), + [aux_sym_command_name_token8] = ACTIONS(1434), + [aux_sym_command_name_token9] = ACTIONS(1434), + [aux_sym_command_name_token10] = ACTIONS(1434), + [aux_sym_command_name_token11] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [aux_sym_foreach_command_token1] = ACTIONS(1434), + [aux_sym_class_statement_token1] = ACTIONS(1434), + [aux_sym_enum_statement_token1] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1434), + [anon_sym_AT_LPAREN] = ACTIONS(1434), + [anon_sym_AT_LBRACE] = ACTIONS(1434), }, - [356] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1812), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [340] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1364), + [sym_hexadecimal_integer_literal] = ACTIONS(1364), + [sym_real_literal] = ACTIONS(1364), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1364), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1364), + [sym_verbatim_string_characters] = ACTIONS(1364), + [sym_verbatim_here_string_characters] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [aux_sym_comparison_operator_token37] = ACTIONS(1364), + [aux_sym_comparison_operator_token50] = ACTIONS(1364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_CARET] = ACTIONS(1364), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_] = ACTIONS(1364), + [aux_sym_variable_token1] = ACTIONS(1364), + [aux_sym_variable_token2] = ACTIONS(1364), + [sym_braced_variable] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token2] = ACTIONS(1364), + [aux_sym_function_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token1] = ACTIONS(1364), + [aux_sym_flow_control_statement_token2] = ACTIONS(1364), + [aux_sym_flow_control_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token4] = ACTIONS(1364), + [aux_sym_flow_control_statement_token5] = ACTIONS(1364), + [sym_label] = ACTIONS(1364), + [aux_sym_trap_statement_token1] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_data_statement_token1] = ACTIONS(1364), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1364), + [aux_sym_parallel_statement_token1] = ACTIONS(1364), + [aux_sym_sequence_statement_token1] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [aux_sym_command_name_token1] = ACTIONS(1364), + [aux_sym_command_name_token2] = ACTIONS(1364), + [aux_sym_command_name_token3] = ACTIONS(1364), + [aux_sym_command_name_token4] = ACTIONS(1364), + [aux_sym_command_name_token5] = ACTIONS(1364), + [aux_sym_command_name_token6] = ACTIONS(1364), + [aux_sym_command_name_token7] = ACTIONS(1364), + [aux_sym_command_name_token8] = ACTIONS(1364), + [aux_sym_command_name_token9] = ACTIONS(1364), + [aux_sym_command_name_token10] = ACTIONS(1364), + [aux_sym_command_name_token11] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [aux_sym_foreach_command_token1] = ACTIONS(1364), + [aux_sym_class_statement_token1] = ACTIONS(1364), + [aux_sym_enum_statement_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LBRACE] = ACTIONS(1364), + }, + [341] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1436), + [sym_hexadecimal_integer_literal] = ACTIONS(1436), + [sym_real_literal] = ACTIONS(1436), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1436), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1436), + [sym_verbatim_string_characters] = ACTIONS(1436), + [sym_verbatim_here_string_characters] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [aux_sym_comparison_operator_token37] = ACTIONS(1436), + [aux_sym_comparison_operator_token50] = ACTIONS(1436), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1436), + [anon_sym_DOLLAR_CARET] = ACTIONS(1436), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1436), + [anon_sym_DOLLAR_] = ACTIONS(1436), + [aux_sym_variable_token1] = ACTIONS(1436), + [aux_sym_variable_token2] = ACTIONS(1436), + [sym_braced_variable] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [aux_sym_if_statement_token1] = ACTIONS(1436), + [aux_sym_switch_statement_token1] = ACTIONS(1436), + [aux_sym_foreach_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token1] = ACTIONS(1436), + [aux_sym_while_statement_token1] = ACTIONS(1436), + [aux_sym_do_statement_token1] = ACTIONS(1436), + [aux_sym_function_statement_token1] = ACTIONS(1436), + [aux_sym_function_statement_token2] = ACTIONS(1436), + [aux_sym_function_statement_token3] = ACTIONS(1436), + [aux_sym_flow_control_statement_token1] = ACTIONS(1436), + [aux_sym_flow_control_statement_token2] = ACTIONS(1436), + [aux_sym_flow_control_statement_token3] = ACTIONS(1436), + [aux_sym_flow_control_statement_token4] = ACTIONS(1436), + [aux_sym_flow_control_statement_token5] = ACTIONS(1436), + [sym_label] = ACTIONS(1436), + [aux_sym_trap_statement_token1] = ACTIONS(1436), + [aux_sym_try_statement_token1] = ACTIONS(1436), + [aux_sym_data_statement_token1] = ACTIONS(1436), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1436), + [aux_sym_parallel_statement_token1] = ACTIONS(1436), + [aux_sym_sequence_statement_token1] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [aux_sym_command_name_token1] = ACTIONS(1436), + [aux_sym_command_name_token2] = ACTIONS(1436), + [aux_sym_command_name_token3] = ACTIONS(1436), + [aux_sym_command_name_token4] = ACTIONS(1436), + [aux_sym_command_name_token5] = ACTIONS(1436), + [aux_sym_command_name_token6] = ACTIONS(1436), + [aux_sym_command_name_token7] = ACTIONS(1436), + [aux_sym_command_name_token8] = ACTIONS(1436), + [aux_sym_command_name_token9] = ACTIONS(1436), + [aux_sym_command_name_token10] = ACTIONS(1436), + [aux_sym_command_name_token11] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [aux_sym_foreach_command_token1] = ACTIONS(1436), + [aux_sym_class_statement_token1] = ACTIONS(1436), + [aux_sym_enum_statement_token1] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1436), + [anon_sym_AT_LPAREN] = ACTIONS(1436), + [anon_sym_AT_LBRACE] = ACTIONS(1436), + }, + [342] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1438), + [sym_hexadecimal_integer_literal] = ACTIONS(1438), + [sym_real_literal] = ACTIONS(1438), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1438), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1438), + [sym_verbatim_string_characters] = ACTIONS(1438), + [sym_verbatim_here_string_characters] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [aux_sym_comparison_operator_token37] = ACTIONS(1438), + [aux_sym_comparison_operator_token50] = ACTIONS(1438), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1438), + [anon_sym_DOLLAR_CARET] = ACTIONS(1438), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1438), + [anon_sym_DOLLAR_] = ACTIONS(1438), + [aux_sym_variable_token1] = ACTIONS(1438), + [aux_sym_variable_token2] = ACTIONS(1438), + [sym_braced_variable] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [aux_sym_if_statement_token1] = ACTIONS(1438), + [aux_sym_switch_statement_token1] = ACTIONS(1438), + [aux_sym_foreach_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token1] = ACTIONS(1438), + [aux_sym_while_statement_token1] = ACTIONS(1438), + [aux_sym_do_statement_token1] = ACTIONS(1438), + [aux_sym_function_statement_token1] = ACTIONS(1438), + [aux_sym_function_statement_token2] = ACTIONS(1438), + [aux_sym_function_statement_token3] = ACTIONS(1438), + [aux_sym_flow_control_statement_token1] = ACTIONS(1438), + [aux_sym_flow_control_statement_token2] = ACTIONS(1438), + [aux_sym_flow_control_statement_token3] = ACTIONS(1438), + [aux_sym_flow_control_statement_token4] = ACTIONS(1438), + [aux_sym_flow_control_statement_token5] = ACTIONS(1438), + [sym_label] = ACTIONS(1438), + [aux_sym_trap_statement_token1] = ACTIONS(1438), + [aux_sym_try_statement_token1] = ACTIONS(1438), + [aux_sym_data_statement_token1] = ACTIONS(1438), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1438), + [aux_sym_parallel_statement_token1] = ACTIONS(1438), + [aux_sym_sequence_statement_token1] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [aux_sym_command_name_token1] = ACTIONS(1438), + [aux_sym_command_name_token2] = ACTIONS(1438), + [aux_sym_command_name_token3] = ACTIONS(1438), + [aux_sym_command_name_token4] = ACTIONS(1438), + [aux_sym_command_name_token5] = ACTIONS(1438), + [aux_sym_command_name_token6] = ACTIONS(1438), + [aux_sym_command_name_token7] = ACTIONS(1438), + [aux_sym_command_name_token8] = ACTIONS(1438), + [aux_sym_command_name_token9] = ACTIONS(1438), + [aux_sym_command_name_token10] = ACTIONS(1438), + [aux_sym_command_name_token11] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [aux_sym_foreach_command_token1] = ACTIONS(1438), + [aux_sym_class_statement_token1] = ACTIONS(1438), + [aux_sym_enum_statement_token1] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_AT_LPAREN] = ACTIONS(1438), + [anon_sym_AT_LBRACE] = ACTIONS(1438), + }, + [343] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1440), + [sym_hexadecimal_integer_literal] = ACTIONS(1440), + [sym_real_literal] = ACTIONS(1440), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1440), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1440), + [sym_verbatim_string_characters] = ACTIONS(1440), + [sym_verbatim_here_string_characters] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [aux_sym_comparison_operator_token37] = ACTIONS(1440), + [aux_sym_comparison_operator_token50] = ACTIONS(1440), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1440), + [anon_sym_DOLLAR_CARET] = ACTIONS(1440), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1440), + [anon_sym_DOLLAR_] = ACTIONS(1440), + [aux_sym_variable_token1] = ACTIONS(1440), + [aux_sym_variable_token2] = ACTIONS(1440), + [sym_braced_variable] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [aux_sym_if_statement_token1] = ACTIONS(1440), + [aux_sym_switch_statement_token1] = ACTIONS(1440), + [aux_sym_foreach_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token1] = ACTIONS(1440), + [aux_sym_while_statement_token1] = ACTIONS(1440), + [aux_sym_do_statement_token1] = ACTIONS(1440), + [aux_sym_function_statement_token1] = ACTIONS(1440), + [aux_sym_function_statement_token2] = ACTIONS(1440), + [aux_sym_function_statement_token3] = ACTIONS(1440), + [aux_sym_flow_control_statement_token1] = ACTIONS(1440), + [aux_sym_flow_control_statement_token2] = ACTIONS(1440), + [aux_sym_flow_control_statement_token3] = ACTIONS(1440), + [aux_sym_flow_control_statement_token4] = ACTIONS(1440), + [aux_sym_flow_control_statement_token5] = ACTIONS(1440), + [sym_label] = ACTIONS(1440), + [aux_sym_trap_statement_token1] = ACTIONS(1440), + [aux_sym_try_statement_token1] = ACTIONS(1440), + [aux_sym_data_statement_token1] = ACTIONS(1440), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1440), + [aux_sym_parallel_statement_token1] = ACTIONS(1440), + [aux_sym_sequence_statement_token1] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [aux_sym_command_name_token1] = ACTIONS(1440), + [aux_sym_command_name_token2] = ACTIONS(1440), + [aux_sym_command_name_token3] = ACTIONS(1440), + [aux_sym_command_name_token4] = ACTIONS(1440), + [aux_sym_command_name_token5] = ACTIONS(1440), + [aux_sym_command_name_token6] = ACTIONS(1440), + [aux_sym_command_name_token7] = ACTIONS(1440), + [aux_sym_command_name_token8] = ACTIONS(1440), + [aux_sym_command_name_token9] = ACTIONS(1440), + [aux_sym_command_name_token10] = ACTIONS(1440), + [aux_sym_command_name_token11] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [aux_sym_foreach_command_token1] = ACTIONS(1440), + [aux_sym_class_statement_token1] = ACTIONS(1440), + [aux_sym_enum_statement_token1] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1440), + [anon_sym_AT_LPAREN] = ACTIONS(1440), + [anon_sym_AT_LBRACE] = ACTIONS(1440), + }, + [344] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1442), + [sym_hexadecimal_integer_literal] = ACTIONS(1442), + [sym_real_literal] = ACTIONS(1442), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1442), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1442), + [sym_verbatim_string_characters] = ACTIONS(1442), + [sym_verbatim_here_string_characters] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [aux_sym_comparison_operator_token37] = ACTIONS(1442), + [aux_sym_comparison_operator_token50] = ACTIONS(1442), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1442), + [anon_sym_DOLLAR_CARET] = ACTIONS(1442), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1442), + [anon_sym_DOLLAR_] = ACTIONS(1442), + [aux_sym_variable_token1] = ACTIONS(1442), + [aux_sym_variable_token2] = ACTIONS(1442), + [sym_braced_variable] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym_if_statement_token1] = ACTIONS(1442), + [aux_sym_switch_statement_token1] = ACTIONS(1442), + [aux_sym_foreach_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token1] = ACTIONS(1442), + [aux_sym_while_statement_token1] = ACTIONS(1442), + [aux_sym_do_statement_token1] = ACTIONS(1442), + [aux_sym_function_statement_token1] = ACTIONS(1442), + [aux_sym_function_statement_token2] = ACTIONS(1442), + [aux_sym_function_statement_token3] = ACTIONS(1442), + [aux_sym_flow_control_statement_token1] = ACTIONS(1442), + [aux_sym_flow_control_statement_token2] = ACTIONS(1442), + [aux_sym_flow_control_statement_token3] = ACTIONS(1442), + [aux_sym_flow_control_statement_token4] = ACTIONS(1442), + [aux_sym_flow_control_statement_token5] = ACTIONS(1442), + [sym_label] = ACTIONS(1442), + [aux_sym_trap_statement_token1] = ACTIONS(1442), + [aux_sym_try_statement_token1] = ACTIONS(1442), + [aux_sym_data_statement_token1] = ACTIONS(1442), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1442), + [aux_sym_parallel_statement_token1] = ACTIONS(1442), + [aux_sym_sequence_statement_token1] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [aux_sym_command_name_token1] = ACTIONS(1442), + [aux_sym_command_name_token2] = ACTIONS(1442), + [aux_sym_command_name_token3] = ACTIONS(1442), + [aux_sym_command_name_token4] = ACTIONS(1442), + [aux_sym_command_name_token5] = ACTIONS(1442), + [aux_sym_command_name_token6] = ACTIONS(1442), + [aux_sym_command_name_token7] = ACTIONS(1442), + [aux_sym_command_name_token8] = ACTIONS(1442), + [aux_sym_command_name_token9] = ACTIONS(1442), + [aux_sym_command_name_token10] = ACTIONS(1442), + [aux_sym_command_name_token11] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [aux_sym_foreach_command_token1] = ACTIONS(1442), + [aux_sym_class_statement_token1] = ACTIONS(1442), + [aux_sym_enum_statement_token1] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1442), + [anon_sym_AT_LPAREN] = ACTIONS(1442), + [anon_sym_AT_LBRACE] = ACTIONS(1442), + }, + [345] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1444), + [sym_hexadecimal_integer_literal] = ACTIONS(1444), + [sym_real_literal] = ACTIONS(1444), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1444), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1444), + [sym_verbatim_string_characters] = ACTIONS(1444), + [sym_verbatim_here_string_characters] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [aux_sym_comparison_operator_token37] = ACTIONS(1444), + [aux_sym_comparison_operator_token50] = ACTIONS(1444), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1444), + [anon_sym_DOLLAR_CARET] = ACTIONS(1444), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1444), + [anon_sym_DOLLAR_] = ACTIONS(1444), + [aux_sym_variable_token1] = ACTIONS(1444), + [aux_sym_variable_token2] = ACTIONS(1444), + [sym_braced_variable] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [aux_sym_if_statement_token1] = ACTIONS(1444), + [aux_sym_switch_statement_token1] = ACTIONS(1444), + [aux_sym_foreach_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token1] = ACTIONS(1444), + [aux_sym_while_statement_token1] = ACTIONS(1444), + [aux_sym_do_statement_token1] = ACTIONS(1444), + [aux_sym_function_statement_token1] = ACTIONS(1444), + [aux_sym_function_statement_token2] = ACTIONS(1444), + [aux_sym_function_statement_token3] = ACTIONS(1444), + [aux_sym_flow_control_statement_token1] = ACTIONS(1444), + [aux_sym_flow_control_statement_token2] = ACTIONS(1444), + [aux_sym_flow_control_statement_token3] = ACTIONS(1444), + [aux_sym_flow_control_statement_token4] = ACTIONS(1444), + [aux_sym_flow_control_statement_token5] = ACTIONS(1444), + [sym_label] = ACTIONS(1444), + [aux_sym_trap_statement_token1] = ACTIONS(1444), + [aux_sym_try_statement_token1] = ACTIONS(1444), + [aux_sym_data_statement_token1] = ACTIONS(1444), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1444), + [aux_sym_parallel_statement_token1] = ACTIONS(1444), + [aux_sym_sequence_statement_token1] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [aux_sym_command_name_token1] = ACTIONS(1444), + [aux_sym_command_name_token2] = ACTIONS(1444), + [aux_sym_command_name_token3] = ACTIONS(1444), + [aux_sym_command_name_token4] = ACTIONS(1444), + [aux_sym_command_name_token5] = ACTIONS(1444), + [aux_sym_command_name_token6] = ACTIONS(1444), + [aux_sym_command_name_token7] = ACTIONS(1444), + [aux_sym_command_name_token8] = ACTIONS(1444), + [aux_sym_command_name_token9] = ACTIONS(1444), + [aux_sym_command_name_token10] = ACTIONS(1444), + [aux_sym_command_name_token11] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [aux_sym_foreach_command_token1] = ACTIONS(1444), + [aux_sym_class_statement_token1] = ACTIONS(1444), + [aux_sym_enum_statement_token1] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), + [anon_sym_AT_LPAREN] = ACTIONS(1444), + [anon_sym_AT_LBRACE] = ACTIONS(1444), + }, + [346] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1446), + [sym_hexadecimal_integer_literal] = ACTIONS(1446), + [sym_real_literal] = ACTIONS(1446), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1446), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1446), + [sym_verbatim_string_characters] = ACTIONS(1446), + [sym_verbatim_here_string_characters] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [aux_sym_comparison_operator_token37] = ACTIONS(1446), + [aux_sym_comparison_operator_token50] = ACTIONS(1446), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_CARET] = ACTIONS(1446), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1446), + [anon_sym_DOLLAR_] = ACTIONS(1446), + [aux_sym_variable_token1] = ACTIONS(1446), + [aux_sym_variable_token2] = ACTIONS(1446), + [sym_braced_variable] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [aux_sym_if_statement_token1] = ACTIONS(1446), + [aux_sym_switch_statement_token1] = ACTIONS(1446), + [aux_sym_foreach_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token1] = ACTIONS(1446), + [aux_sym_while_statement_token1] = ACTIONS(1446), + [aux_sym_do_statement_token1] = ACTIONS(1446), + [aux_sym_function_statement_token1] = ACTIONS(1446), + [aux_sym_function_statement_token2] = ACTIONS(1446), + [aux_sym_function_statement_token3] = ACTIONS(1446), + [aux_sym_flow_control_statement_token1] = ACTIONS(1446), + [aux_sym_flow_control_statement_token2] = ACTIONS(1446), + [aux_sym_flow_control_statement_token3] = ACTIONS(1446), + [aux_sym_flow_control_statement_token4] = ACTIONS(1446), + [aux_sym_flow_control_statement_token5] = ACTIONS(1446), + [sym_label] = ACTIONS(1446), + [aux_sym_trap_statement_token1] = ACTIONS(1446), + [aux_sym_try_statement_token1] = ACTIONS(1446), + [aux_sym_data_statement_token1] = ACTIONS(1446), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1446), + [aux_sym_parallel_statement_token1] = ACTIONS(1446), + [aux_sym_sequence_statement_token1] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [aux_sym_command_name_token1] = ACTIONS(1446), + [aux_sym_command_name_token2] = ACTIONS(1446), + [aux_sym_command_name_token3] = ACTIONS(1446), + [aux_sym_command_name_token4] = ACTIONS(1446), + [aux_sym_command_name_token5] = ACTIONS(1446), + [aux_sym_command_name_token6] = ACTIONS(1446), + [aux_sym_command_name_token7] = ACTIONS(1446), + [aux_sym_command_name_token8] = ACTIONS(1446), + [aux_sym_command_name_token9] = ACTIONS(1446), + [aux_sym_command_name_token10] = ACTIONS(1446), + [aux_sym_command_name_token11] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [aux_sym_foreach_command_token1] = ACTIONS(1446), + [aux_sym_class_statement_token1] = ACTIONS(1446), + [aux_sym_enum_statement_token1] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_AT_LPAREN] = ACTIONS(1446), + [anon_sym_AT_LBRACE] = ACTIONS(1446), + }, + [347] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1448), + [sym_hexadecimal_integer_literal] = ACTIONS(1448), + [sym_real_literal] = ACTIONS(1448), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1448), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1448), + [sym_verbatim_string_characters] = ACTIONS(1448), + [sym_verbatim_here_string_characters] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [aux_sym_comparison_operator_token37] = ACTIONS(1448), + [aux_sym_comparison_operator_token50] = ACTIONS(1448), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_CARET] = ACTIONS(1448), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1448), + [anon_sym_DOLLAR_] = ACTIONS(1448), + [aux_sym_variable_token1] = ACTIONS(1448), + [aux_sym_variable_token2] = ACTIONS(1448), + [sym_braced_variable] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [aux_sym_if_statement_token1] = ACTIONS(1448), + [aux_sym_switch_statement_token1] = ACTIONS(1448), + [aux_sym_foreach_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token1] = ACTIONS(1448), + [aux_sym_while_statement_token1] = ACTIONS(1448), + [aux_sym_do_statement_token1] = ACTIONS(1448), + [aux_sym_function_statement_token1] = ACTIONS(1448), + [aux_sym_function_statement_token2] = ACTIONS(1448), + [aux_sym_function_statement_token3] = ACTIONS(1448), + [aux_sym_flow_control_statement_token1] = ACTIONS(1448), + [aux_sym_flow_control_statement_token2] = ACTIONS(1448), + [aux_sym_flow_control_statement_token3] = ACTIONS(1448), + [aux_sym_flow_control_statement_token4] = ACTIONS(1448), + [aux_sym_flow_control_statement_token5] = ACTIONS(1448), + [sym_label] = ACTIONS(1448), + [aux_sym_trap_statement_token1] = ACTIONS(1448), + [aux_sym_try_statement_token1] = ACTIONS(1448), + [aux_sym_data_statement_token1] = ACTIONS(1448), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1448), + [aux_sym_parallel_statement_token1] = ACTIONS(1448), + [aux_sym_sequence_statement_token1] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [aux_sym_command_name_token1] = ACTIONS(1448), + [aux_sym_command_name_token2] = ACTIONS(1448), + [aux_sym_command_name_token3] = ACTIONS(1448), + [aux_sym_command_name_token4] = ACTIONS(1448), + [aux_sym_command_name_token5] = ACTIONS(1448), + [aux_sym_command_name_token6] = ACTIONS(1448), + [aux_sym_command_name_token7] = ACTIONS(1448), + [aux_sym_command_name_token8] = ACTIONS(1448), + [aux_sym_command_name_token9] = ACTIONS(1448), + [aux_sym_command_name_token10] = ACTIONS(1448), + [aux_sym_command_name_token11] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [aux_sym_foreach_command_token1] = ACTIONS(1448), + [aux_sym_class_statement_token1] = ACTIONS(1448), + [aux_sym_enum_statement_token1] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1448), + [anon_sym_AT_LPAREN] = ACTIONS(1448), + [anon_sym_AT_LBRACE] = ACTIONS(1448), + }, + [348] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1450), + [sym_hexadecimal_integer_literal] = ACTIONS(1450), + [sym_real_literal] = ACTIONS(1450), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1450), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1450), + [sym_verbatim_string_characters] = ACTIONS(1450), + [sym_verbatim_here_string_characters] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [aux_sym_comparison_operator_token37] = ACTIONS(1450), + [aux_sym_comparison_operator_token50] = ACTIONS(1450), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1450), + [anon_sym_DOLLAR_CARET] = ACTIONS(1450), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1450), + [anon_sym_DOLLAR_] = ACTIONS(1450), + [aux_sym_variable_token1] = ACTIONS(1450), + [aux_sym_variable_token2] = ACTIONS(1450), + [sym_braced_variable] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [aux_sym_if_statement_token1] = ACTIONS(1450), + [aux_sym_switch_statement_token1] = ACTIONS(1450), + [aux_sym_foreach_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token1] = ACTIONS(1450), + [aux_sym_while_statement_token1] = ACTIONS(1450), + [aux_sym_do_statement_token1] = ACTIONS(1450), + [aux_sym_function_statement_token1] = ACTIONS(1450), + [aux_sym_function_statement_token2] = ACTIONS(1450), + [aux_sym_function_statement_token3] = ACTIONS(1450), + [aux_sym_flow_control_statement_token1] = ACTIONS(1450), + [aux_sym_flow_control_statement_token2] = ACTIONS(1450), + [aux_sym_flow_control_statement_token3] = ACTIONS(1450), + [aux_sym_flow_control_statement_token4] = ACTIONS(1450), + [aux_sym_flow_control_statement_token5] = ACTIONS(1450), + [sym_label] = ACTIONS(1450), + [aux_sym_trap_statement_token1] = ACTIONS(1450), + [aux_sym_try_statement_token1] = ACTIONS(1450), + [aux_sym_data_statement_token1] = ACTIONS(1450), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1450), + [aux_sym_parallel_statement_token1] = ACTIONS(1450), + [aux_sym_sequence_statement_token1] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [aux_sym_command_name_token1] = ACTIONS(1450), + [aux_sym_command_name_token2] = ACTIONS(1450), + [aux_sym_command_name_token3] = ACTIONS(1450), + [aux_sym_command_name_token4] = ACTIONS(1450), + [aux_sym_command_name_token5] = ACTIONS(1450), + [aux_sym_command_name_token6] = ACTIONS(1450), + [aux_sym_command_name_token7] = ACTIONS(1450), + [aux_sym_command_name_token8] = ACTIONS(1450), + [aux_sym_command_name_token9] = ACTIONS(1450), + [aux_sym_command_name_token10] = ACTIONS(1450), + [aux_sym_command_name_token11] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [aux_sym_foreach_command_token1] = ACTIONS(1450), + [aux_sym_class_statement_token1] = ACTIONS(1450), + [aux_sym_enum_statement_token1] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_AT_LPAREN] = ACTIONS(1450), + [anon_sym_AT_LBRACE] = ACTIONS(1450), + }, + [349] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1452), + [sym_hexadecimal_integer_literal] = ACTIONS(1452), + [sym_real_literal] = ACTIONS(1452), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1452), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1452), + [sym_verbatim_string_characters] = ACTIONS(1452), + [sym_verbatim_here_string_characters] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [aux_sym_comparison_operator_token37] = ACTIONS(1452), + [aux_sym_comparison_operator_token50] = ACTIONS(1452), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1452), + [anon_sym_DOLLAR_CARET] = ACTIONS(1452), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1452), + [anon_sym_DOLLAR_] = ACTIONS(1452), + [aux_sym_variable_token1] = ACTIONS(1452), + [aux_sym_variable_token2] = ACTIONS(1452), + [sym_braced_variable] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym_if_statement_token1] = ACTIONS(1452), + [aux_sym_switch_statement_token1] = ACTIONS(1452), + [aux_sym_foreach_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token1] = ACTIONS(1452), + [aux_sym_while_statement_token1] = ACTIONS(1452), + [aux_sym_do_statement_token1] = ACTIONS(1452), + [aux_sym_function_statement_token1] = ACTIONS(1452), + [aux_sym_function_statement_token2] = ACTIONS(1452), + [aux_sym_function_statement_token3] = ACTIONS(1452), + [aux_sym_flow_control_statement_token1] = ACTIONS(1452), + [aux_sym_flow_control_statement_token2] = ACTIONS(1452), + [aux_sym_flow_control_statement_token3] = ACTIONS(1452), + [aux_sym_flow_control_statement_token4] = ACTIONS(1452), + [aux_sym_flow_control_statement_token5] = ACTIONS(1452), + [sym_label] = ACTIONS(1452), + [aux_sym_trap_statement_token1] = ACTIONS(1452), + [aux_sym_try_statement_token1] = ACTIONS(1452), + [aux_sym_data_statement_token1] = ACTIONS(1452), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1452), + [aux_sym_parallel_statement_token1] = ACTIONS(1452), + [aux_sym_sequence_statement_token1] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [aux_sym_command_name_token1] = ACTIONS(1452), + [aux_sym_command_name_token2] = ACTIONS(1452), + [aux_sym_command_name_token3] = ACTIONS(1452), + [aux_sym_command_name_token4] = ACTIONS(1452), + [aux_sym_command_name_token5] = ACTIONS(1452), + [aux_sym_command_name_token6] = ACTIONS(1452), + [aux_sym_command_name_token7] = ACTIONS(1452), + [aux_sym_command_name_token8] = ACTIONS(1452), + [aux_sym_command_name_token9] = ACTIONS(1452), + [aux_sym_command_name_token10] = ACTIONS(1452), + [aux_sym_command_name_token11] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [aux_sym_foreach_command_token1] = ACTIONS(1452), + [aux_sym_class_statement_token1] = ACTIONS(1452), + [aux_sym_enum_statement_token1] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_AT_LPAREN] = ACTIONS(1452), + [anon_sym_AT_LBRACE] = ACTIONS(1452), + }, + [350] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1454), + [sym_hexadecimal_integer_literal] = ACTIONS(1454), + [sym_real_literal] = ACTIONS(1454), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1454), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1454), + [sym_verbatim_string_characters] = ACTIONS(1454), + [sym_verbatim_here_string_characters] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [aux_sym_comparison_operator_token37] = ACTIONS(1454), + [aux_sym_comparison_operator_token50] = ACTIONS(1454), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1454), + [anon_sym_DOLLAR_CARET] = ACTIONS(1454), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1454), + [anon_sym_DOLLAR_] = ACTIONS(1454), + [aux_sym_variable_token1] = ACTIONS(1454), + [aux_sym_variable_token2] = ACTIONS(1454), + [sym_braced_variable] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [aux_sym_if_statement_token1] = ACTIONS(1454), + [aux_sym_switch_statement_token1] = ACTIONS(1454), + [aux_sym_foreach_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token1] = ACTIONS(1454), + [aux_sym_while_statement_token1] = ACTIONS(1454), + [aux_sym_do_statement_token1] = ACTIONS(1454), + [aux_sym_function_statement_token1] = ACTIONS(1454), + [aux_sym_function_statement_token2] = ACTIONS(1454), + [aux_sym_function_statement_token3] = ACTIONS(1454), + [aux_sym_flow_control_statement_token1] = ACTIONS(1454), + [aux_sym_flow_control_statement_token2] = ACTIONS(1454), + [aux_sym_flow_control_statement_token3] = ACTIONS(1454), + [aux_sym_flow_control_statement_token4] = ACTIONS(1454), + [aux_sym_flow_control_statement_token5] = ACTIONS(1454), + [sym_label] = ACTIONS(1454), + [aux_sym_trap_statement_token1] = ACTIONS(1454), + [aux_sym_try_statement_token1] = ACTIONS(1454), + [aux_sym_data_statement_token1] = ACTIONS(1454), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1454), + [aux_sym_parallel_statement_token1] = ACTIONS(1454), + [aux_sym_sequence_statement_token1] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [aux_sym_command_name_token1] = ACTIONS(1454), + [aux_sym_command_name_token2] = ACTIONS(1454), + [aux_sym_command_name_token3] = ACTIONS(1454), + [aux_sym_command_name_token4] = ACTIONS(1454), + [aux_sym_command_name_token5] = ACTIONS(1454), + [aux_sym_command_name_token6] = ACTIONS(1454), + [aux_sym_command_name_token7] = ACTIONS(1454), + [aux_sym_command_name_token8] = ACTIONS(1454), + [aux_sym_command_name_token9] = ACTIONS(1454), + [aux_sym_command_name_token10] = ACTIONS(1454), + [aux_sym_command_name_token11] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [aux_sym_foreach_command_token1] = ACTIONS(1454), + [aux_sym_class_statement_token1] = ACTIONS(1454), + [aux_sym_enum_statement_token1] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_AT_LPAREN] = ACTIONS(1454), + [anon_sym_AT_LBRACE] = ACTIONS(1454), + }, + [351] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1456), + [sym_hexadecimal_integer_literal] = ACTIONS(1456), + [sym_real_literal] = ACTIONS(1456), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1456), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1456), + [sym_verbatim_string_characters] = ACTIONS(1456), + [sym_verbatim_here_string_characters] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [aux_sym_comparison_operator_token37] = ACTIONS(1456), + [aux_sym_comparison_operator_token50] = ACTIONS(1456), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1456), + [anon_sym_DOLLAR_CARET] = ACTIONS(1456), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1456), + [anon_sym_DOLLAR_] = ACTIONS(1456), + [aux_sym_variable_token1] = ACTIONS(1456), + [aux_sym_variable_token2] = ACTIONS(1456), + [sym_braced_variable] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [aux_sym_if_statement_token1] = ACTIONS(1456), + [aux_sym_switch_statement_token1] = ACTIONS(1456), + [aux_sym_foreach_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token1] = ACTIONS(1456), + [aux_sym_while_statement_token1] = ACTIONS(1456), + [aux_sym_do_statement_token1] = ACTIONS(1456), + [aux_sym_function_statement_token1] = ACTIONS(1456), + [aux_sym_function_statement_token2] = ACTIONS(1456), + [aux_sym_function_statement_token3] = ACTIONS(1456), + [aux_sym_flow_control_statement_token1] = ACTIONS(1456), + [aux_sym_flow_control_statement_token2] = ACTIONS(1456), + [aux_sym_flow_control_statement_token3] = ACTIONS(1456), + [aux_sym_flow_control_statement_token4] = ACTIONS(1456), + [aux_sym_flow_control_statement_token5] = ACTIONS(1456), + [sym_label] = ACTIONS(1456), + [aux_sym_trap_statement_token1] = ACTIONS(1456), + [aux_sym_try_statement_token1] = ACTIONS(1456), + [aux_sym_data_statement_token1] = ACTIONS(1456), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1456), + [aux_sym_parallel_statement_token1] = ACTIONS(1456), + [aux_sym_sequence_statement_token1] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [aux_sym_command_name_token1] = ACTIONS(1456), + [aux_sym_command_name_token2] = ACTIONS(1456), + [aux_sym_command_name_token3] = ACTIONS(1456), + [aux_sym_command_name_token4] = ACTIONS(1456), + [aux_sym_command_name_token5] = ACTIONS(1456), + [aux_sym_command_name_token6] = ACTIONS(1456), + [aux_sym_command_name_token7] = ACTIONS(1456), + [aux_sym_command_name_token8] = ACTIONS(1456), + [aux_sym_command_name_token9] = ACTIONS(1456), + [aux_sym_command_name_token10] = ACTIONS(1456), + [aux_sym_command_name_token11] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [aux_sym_foreach_command_token1] = ACTIONS(1456), + [aux_sym_class_statement_token1] = ACTIONS(1456), + [aux_sym_enum_statement_token1] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [anon_sym_AT_LPAREN] = ACTIONS(1456), + [anon_sym_AT_LBRACE] = ACTIONS(1456), + }, + [352] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1458), + [sym_hexadecimal_integer_literal] = ACTIONS(1458), + [sym_real_literal] = ACTIONS(1458), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1458), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1458), + [sym_verbatim_string_characters] = ACTIONS(1458), + [sym_verbatim_here_string_characters] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [aux_sym_comparison_operator_token37] = ACTIONS(1458), + [aux_sym_comparison_operator_token50] = ACTIONS(1458), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1458), + [anon_sym_DOLLAR_CARET] = ACTIONS(1458), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1458), + [anon_sym_DOLLAR_] = ACTIONS(1458), + [aux_sym_variable_token1] = ACTIONS(1458), + [aux_sym_variable_token2] = ACTIONS(1458), + [sym_braced_variable] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym_if_statement_token1] = ACTIONS(1458), + [aux_sym_switch_statement_token1] = ACTIONS(1458), + [aux_sym_foreach_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token1] = ACTIONS(1458), + [aux_sym_while_statement_token1] = ACTIONS(1458), + [aux_sym_do_statement_token1] = ACTIONS(1458), + [aux_sym_function_statement_token1] = ACTIONS(1458), + [aux_sym_function_statement_token2] = ACTIONS(1458), + [aux_sym_function_statement_token3] = ACTIONS(1458), + [aux_sym_flow_control_statement_token1] = ACTIONS(1458), + [aux_sym_flow_control_statement_token2] = ACTIONS(1458), + [aux_sym_flow_control_statement_token3] = ACTIONS(1458), + [aux_sym_flow_control_statement_token4] = ACTIONS(1458), + [aux_sym_flow_control_statement_token5] = ACTIONS(1458), + [sym_label] = ACTIONS(1458), + [aux_sym_trap_statement_token1] = ACTIONS(1458), + [aux_sym_try_statement_token1] = ACTIONS(1458), + [aux_sym_data_statement_token1] = ACTIONS(1458), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1458), + [aux_sym_parallel_statement_token1] = ACTIONS(1458), + [aux_sym_sequence_statement_token1] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [aux_sym_command_name_token1] = ACTIONS(1458), + [aux_sym_command_name_token2] = ACTIONS(1458), + [aux_sym_command_name_token3] = ACTIONS(1458), + [aux_sym_command_name_token4] = ACTIONS(1458), + [aux_sym_command_name_token5] = ACTIONS(1458), + [aux_sym_command_name_token6] = ACTIONS(1458), + [aux_sym_command_name_token7] = ACTIONS(1458), + [aux_sym_command_name_token8] = ACTIONS(1458), + [aux_sym_command_name_token9] = ACTIONS(1458), + [aux_sym_command_name_token10] = ACTIONS(1458), + [aux_sym_command_name_token11] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [aux_sym_foreach_command_token1] = ACTIONS(1458), + [aux_sym_class_statement_token1] = ACTIONS(1458), + [aux_sym_enum_statement_token1] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_AT_LPAREN] = ACTIONS(1458), + [anon_sym_AT_LBRACE] = ACTIONS(1458), + }, + [353] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1460), + [sym_hexadecimal_integer_literal] = ACTIONS(1460), + [sym_real_literal] = ACTIONS(1460), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1460), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1460), + [sym_verbatim_string_characters] = ACTIONS(1460), + [sym_verbatim_here_string_characters] = ACTIONS(1460), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [aux_sym_comparison_operator_token37] = ACTIONS(1460), + [aux_sym_comparison_operator_token50] = ACTIONS(1460), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1460), + [anon_sym_DOLLAR_CARET] = ACTIONS(1460), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1460), + [anon_sym_DOLLAR_] = ACTIONS(1460), + [aux_sym_variable_token1] = ACTIONS(1460), + [aux_sym_variable_token2] = ACTIONS(1460), + [sym_braced_variable] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [aux_sym_if_statement_token1] = ACTIONS(1460), + [aux_sym_switch_statement_token1] = ACTIONS(1460), + [aux_sym_foreach_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token1] = ACTIONS(1460), + [aux_sym_while_statement_token1] = ACTIONS(1460), + [aux_sym_do_statement_token1] = ACTIONS(1460), + [aux_sym_function_statement_token1] = ACTIONS(1460), + [aux_sym_function_statement_token2] = ACTIONS(1460), + [aux_sym_function_statement_token3] = ACTIONS(1460), + [aux_sym_flow_control_statement_token1] = ACTIONS(1460), + [aux_sym_flow_control_statement_token2] = ACTIONS(1460), + [aux_sym_flow_control_statement_token3] = ACTIONS(1460), + [aux_sym_flow_control_statement_token4] = ACTIONS(1460), + [aux_sym_flow_control_statement_token5] = ACTIONS(1460), + [sym_label] = ACTIONS(1460), + [aux_sym_trap_statement_token1] = ACTIONS(1460), + [aux_sym_try_statement_token1] = ACTIONS(1460), + [aux_sym_data_statement_token1] = ACTIONS(1460), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1460), + [aux_sym_parallel_statement_token1] = ACTIONS(1460), + [aux_sym_sequence_statement_token1] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [aux_sym_command_name_token1] = ACTIONS(1460), + [aux_sym_command_name_token2] = ACTIONS(1460), + [aux_sym_command_name_token3] = ACTIONS(1460), + [aux_sym_command_name_token4] = ACTIONS(1460), + [aux_sym_command_name_token5] = ACTIONS(1460), + [aux_sym_command_name_token6] = ACTIONS(1460), + [aux_sym_command_name_token7] = ACTIONS(1460), + [aux_sym_command_name_token8] = ACTIONS(1460), + [aux_sym_command_name_token9] = ACTIONS(1460), + [aux_sym_command_name_token10] = ACTIONS(1460), + [aux_sym_command_name_token11] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1460), + [aux_sym_foreach_command_token1] = ACTIONS(1460), + [aux_sym_class_statement_token1] = ACTIONS(1460), + [aux_sym_enum_statement_token1] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [anon_sym_AT_LPAREN] = ACTIONS(1460), + [anon_sym_AT_LBRACE] = ACTIONS(1460), + }, + [354] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1462), + [sym_hexadecimal_integer_literal] = ACTIONS(1462), + [sym_real_literal] = ACTIONS(1462), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1462), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1462), + [sym_verbatim_string_characters] = ACTIONS(1462), + [sym_verbatim_here_string_characters] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [aux_sym_comparison_operator_token37] = ACTIONS(1462), + [aux_sym_comparison_operator_token50] = ACTIONS(1462), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1462), + [anon_sym_DOLLAR_CARET] = ACTIONS(1462), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1462), + [anon_sym_DOLLAR_] = ACTIONS(1462), + [aux_sym_variable_token1] = ACTIONS(1462), + [aux_sym_variable_token2] = ACTIONS(1462), + [sym_braced_variable] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [aux_sym_if_statement_token1] = ACTIONS(1462), + [aux_sym_switch_statement_token1] = ACTIONS(1462), + [aux_sym_foreach_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token1] = ACTIONS(1462), + [aux_sym_while_statement_token1] = ACTIONS(1462), + [aux_sym_do_statement_token1] = ACTIONS(1462), + [aux_sym_function_statement_token1] = ACTIONS(1462), + [aux_sym_function_statement_token2] = ACTIONS(1462), + [aux_sym_function_statement_token3] = ACTIONS(1462), + [aux_sym_flow_control_statement_token1] = ACTIONS(1462), + [aux_sym_flow_control_statement_token2] = ACTIONS(1462), + [aux_sym_flow_control_statement_token3] = ACTIONS(1462), + [aux_sym_flow_control_statement_token4] = ACTIONS(1462), + [aux_sym_flow_control_statement_token5] = ACTIONS(1462), + [sym_label] = ACTIONS(1462), + [aux_sym_trap_statement_token1] = ACTIONS(1462), + [aux_sym_try_statement_token1] = ACTIONS(1462), + [aux_sym_data_statement_token1] = ACTIONS(1462), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1462), + [aux_sym_parallel_statement_token1] = ACTIONS(1462), + [aux_sym_sequence_statement_token1] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [aux_sym_command_name_token1] = ACTIONS(1462), + [aux_sym_command_name_token2] = ACTIONS(1462), + [aux_sym_command_name_token3] = ACTIONS(1462), + [aux_sym_command_name_token4] = ACTIONS(1462), + [aux_sym_command_name_token5] = ACTIONS(1462), + [aux_sym_command_name_token6] = ACTIONS(1462), + [aux_sym_command_name_token7] = ACTIONS(1462), + [aux_sym_command_name_token8] = ACTIONS(1462), + [aux_sym_command_name_token9] = ACTIONS(1462), + [aux_sym_command_name_token10] = ACTIONS(1462), + [aux_sym_command_name_token11] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [aux_sym_foreach_command_token1] = ACTIONS(1462), + [aux_sym_class_statement_token1] = ACTIONS(1462), + [aux_sym_enum_statement_token1] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1462), + [anon_sym_AT_LPAREN] = ACTIONS(1462), + [anon_sym_AT_LBRACE] = ACTIONS(1462), + }, + [355] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1464), + [sym_hexadecimal_integer_literal] = ACTIONS(1464), + [sym_real_literal] = ACTIONS(1464), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1464), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1464), + [sym_verbatim_string_characters] = ACTIONS(1464), + [sym_verbatim_here_string_characters] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [aux_sym_comparison_operator_token37] = ACTIONS(1464), + [aux_sym_comparison_operator_token50] = ACTIONS(1464), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1464), + [anon_sym_DOLLAR_CARET] = ACTIONS(1464), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1464), + [anon_sym_DOLLAR_] = ACTIONS(1464), + [aux_sym_variable_token1] = ACTIONS(1464), + [aux_sym_variable_token2] = ACTIONS(1464), + [sym_braced_variable] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [aux_sym_if_statement_token1] = ACTIONS(1464), + [aux_sym_switch_statement_token1] = ACTIONS(1464), + [aux_sym_foreach_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token1] = ACTIONS(1464), + [aux_sym_while_statement_token1] = ACTIONS(1464), + [aux_sym_do_statement_token1] = ACTIONS(1464), + [aux_sym_function_statement_token1] = ACTIONS(1464), + [aux_sym_function_statement_token2] = ACTIONS(1464), + [aux_sym_function_statement_token3] = ACTIONS(1464), + [aux_sym_flow_control_statement_token1] = ACTIONS(1464), + [aux_sym_flow_control_statement_token2] = ACTIONS(1464), + [aux_sym_flow_control_statement_token3] = ACTIONS(1464), + [aux_sym_flow_control_statement_token4] = ACTIONS(1464), + [aux_sym_flow_control_statement_token5] = ACTIONS(1464), + [sym_label] = ACTIONS(1464), + [aux_sym_trap_statement_token1] = ACTIONS(1464), + [aux_sym_try_statement_token1] = ACTIONS(1464), + [aux_sym_data_statement_token1] = ACTIONS(1464), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1464), + [aux_sym_parallel_statement_token1] = ACTIONS(1464), + [aux_sym_sequence_statement_token1] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [aux_sym_command_name_token1] = ACTIONS(1464), + [aux_sym_command_name_token2] = ACTIONS(1464), + [aux_sym_command_name_token3] = ACTIONS(1464), + [aux_sym_command_name_token4] = ACTIONS(1464), + [aux_sym_command_name_token5] = ACTIONS(1464), + [aux_sym_command_name_token6] = ACTIONS(1464), + [aux_sym_command_name_token7] = ACTIONS(1464), + [aux_sym_command_name_token8] = ACTIONS(1464), + [aux_sym_command_name_token9] = ACTIONS(1464), + [aux_sym_command_name_token10] = ACTIONS(1464), + [aux_sym_command_name_token11] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [aux_sym_foreach_command_token1] = ACTIONS(1464), + [aux_sym_class_statement_token1] = ACTIONS(1464), + [aux_sym_enum_statement_token1] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1464), + [anon_sym_AT_LPAREN] = ACTIONS(1464), + [anon_sym_AT_LBRACE] = ACTIONS(1464), + }, + [356] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1466), + [sym_hexadecimal_integer_literal] = ACTIONS(1466), + [sym_real_literal] = ACTIONS(1466), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1466), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1466), + [sym_verbatim_string_characters] = ACTIONS(1466), + [sym_verbatim_here_string_characters] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [aux_sym_comparison_operator_token37] = ACTIONS(1466), + [aux_sym_comparison_operator_token50] = ACTIONS(1466), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1466), + [anon_sym_DOLLAR_CARET] = ACTIONS(1466), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1466), + [anon_sym_DOLLAR_] = ACTIONS(1466), + [aux_sym_variable_token1] = ACTIONS(1466), + [aux_sym_variable_token2] = ACTIONS(1466), + [sym_braced_variable] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [aux_sym_if_statement_token1] = ACTIONS(1466), + [aux_sym_switch_statement_token1] = ACTIONS(1466), + [aux_sym_foreach_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token1] = ACTIONS(1466), + [aux_sym_while_statement_token1] = ACTIONS(1466), + [aux_sym_do_statement_token1] = ACTIONS(1466), + [aux_sym_function_statement_token1] = ACTIONS(1466), + [aux_sym_function_statement_token2] = ACTIONS(1466), + [aux_sym_function_statement_token3] = ACTIONS(1466), + [aux_sym_flow_control_statement_token1] = ACTIONS(1466), + [aux_sym_flow_control_statement_token2] = ACTIONS(1466), + [aux_sym_flow_control_statement_token3] = ACTIONS(1466), + [aux_sym_flow_control_statement_token4] = ACTIONS(1466), + [aux_sym_flow_control_statement_token5] = ACTIONS(1466), + [sym_label] = ACTIONS(1466), + [aux_sym_trap_statement_token1] = ACTIONS(1466), + [aux_sym_try_statement_token1] = ACTIONS(1466), + [aux_sym_data_statement_token1] = ACTIONS(1466), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1466), + [aux_sym_parallel_statement_token1] = ACTIONS(1466), + [aux_sym_sequence_statement_token1] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [aux_sym_command_name_token1] = ACTIONS(1466), + [aux_sym_command_name_token2] = ACTIONS(1466), + [aux_sym_command_name_token3] = ACTIONS(1466), + [aux_sym_command_name_token4] = ACTIONS(1466), + [aux_sym_command_name_token5] = ACTIONS(1466), + [aux_sym_command_name_token6] = ACTIONS(1466), + [aux_sym_command_name_token7] = ACTIONS(1466), + [aux_sym_command_name_token8] = ACTIONS(1466), + [aux_sym_command_name_token9] = ACTIONS(1466), + [aux_sym_command_name_token10] = ACTIONS(1466), + [aux_sym_command_name_token11] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [aux_sym_foreach_command_token1] = ACTIONS(1466), + [aux_sym_class_statement_token1] = ACTIONS(1466), + [aux_sym_enum_statement_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_AT_LPAREN] = ACTIONS(1466), + [anon_sym_AT_LBRACE] = ACTIONS(1466), }, [357] = { - [sym_elseif_clause] = STATE(357), - [aux_sym_elseif_clauses_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1444), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1377), - [sym_hexadecimal_integer_literal] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1377), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1377), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1377), - [sym_verbatim_string_characters] = ACTIONS(1377), - [sym_verbatim_here_string_characters] = ACTIONS(1377), - [anon_sym_DOT] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1377), - [aux_sym_comparison_operator_token37] = ACTIONS(1377), - [aux_sym_comparison_operator_token50] = ACTIONS(1377), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1377), - [anon_sym_DOLLAR_CARET] = ACTIONS(1377), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1377), - [anon_sym_DOLLAR_] = ACTIONS(1377), - [aux_sym_variable_token1] = ACTIONS(1377), - [aux_sym_variable_token2] = ACTIONS(1377), - [sym_braced_variable] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [aux_sym_if_statement_token1] = ACTIONS(1377), - [aux_sym_elseif_clause_token1] = ACTIONS(1446), - [aux_sym_else_clause_token1] = ACTIONS(1377), - [aux_sym_switch_statement_token1] = ACTIONS(1377), - [aux_sym_foreach_statement_token1] = ACTIONS(1377), - [aux_sym_for_statement_token1] = ACTIONS(1377), - [aux_sym_while_statement_token1] = ACTIONS(1377), - [aux_sym_do_statement_token1] = ACTIONS(1377), - [aux_sym_function_statement_token1] = ACTIONS(1377), - [aux_sym_function_statement_token2] = ACTIONS(1377), - [aux_sym_function_statement_token3] = ACTIONS(1377), - [aux_sym_flow_control_statement_token1] = ACTIONS(1377), - [aux_sym_flow_control_statement_token2] = ACTIONS(1377), - [aux_sym_flow_control_statement_token3] = ACTIONS(1377), - [aux_sym_flow_control_statement_token4] = ACTIONS(1377), - [aux_sym_flow_control_statement_token5] = ACTIONS(1377), - [sym_label] = ACTIONS(1377), - [aux_sym_trap_statement_token1] = ACTIONS(1377), - [aux_sym_try_statement_token1] = ACTIONS(1377), - [aux_sym_data_statement_token1] = ACTIONS(1377), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1377), - [aux_sym_parallel_statement_token1] = ACTIONS(1377), - [aux_sym_sequence_statement_token1] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [aux_sym_command_name_token1] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [aux_sym_foreach_command_token1] = ACTIONS(1377), - [aux_sym_class_statement_token1] = ACTIONS(1377), - [aux_sym_enum_statement_token1] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1377), - [anon_sym_AT_LPAREN] = ACTIONS(1377), - [anon_sym_AT_LBRACE] = ACTIONS(1377), + [sym_decimal_integer_literal] = ACTIONS(1468), + [sym_hexadecimal_integer_literal] = ACTIONS(1468), + [sym_real_literal] = ACTIONS(1468), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1468), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1468), + [sym_verbatim_string_characters] = ACTIONS(1468), + [sym_verbatim_here_string_characters] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [aux_sym_comparison_operator_token37] = ACTIONS(1468), + [aux_sym_comparison_operator_token50] = ACTIONS(1468), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1468), + [anon_sym_DOLLAR_CARET] = ACTIONS(1468), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1468), + [anon_sym_DOLLAR_] = ACTIONS(1468), + [aux_sym_variable_token1] = ACTIONS(1468), + [aux_sym_variable_token2] = ACTIONS(1468), + [sym_braced_variable] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [aux_sym_if_statement_token1] = ACTIONS(1468), + [aux_sym_switch_statement_token1] = ACTIONS(1468), + [aux_sym_foreach_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token1] = ACTIONS(1468), + [aux_sym_while_statement_token1] = ACTIONS(1468), + [aux_sym_do_statement_token1] = ACTIONS(1468), + [aux_sym_function_statement_token1] = ACTIONS(1468), + [aux_sym_function_statement_token2] = ACTIONS(1468), + [aux_sym_function_statement_token3] = ACTIONS(1468), + [aux_sym_flow_control_statement_token1] = ACTIONS(1468), + [aux_sym_flow_control_statement_token2] = ACTIONS(1468), + [aux_sym_flow_control_statement_token3] = ACTIONS(1468), + [aux_sym_flow_control_statement_token4] = ACTIONS(1468), + [aux_sym_flow_control_statement_token5] = ACTIONS(1468), + [sym_label] = ACTIONS(1468), + [aux_sym_trap_statement_token1] = ACTIONS(1468), + [aux_sym_try_statement_token1] = ACTIONS(1468), + [aux_sym_data_statement_token1] = ACTIONS(1468), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1468), + [aux_sym_parallel_statement_token1] = ACTIONS(1468), + [aux_sym_sequence_statement_token1] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_command_name_token1] = ACTIONS(1468), + [aux_sym_command_name_token2] = ACTIONS(1468), + [aux_sym_command_name_token3] = ACTIONS(1468), + [aux_sym_command_name_token4] = ACTIONS(1468), + [aux_sym_command_name_token5] = ACTIONS(1468), + [aux_sym_command_name_token6] = ACTIONS(1468), + [aux_sym_command_name_token7] = ACTIONS(1468), + [aux_sym_command_name_token8] = ACTIONS(1468), + [aux_sym_command_name_token9] = ACTIONS(1468), + [aux_sym_command_name_token10] = ACTIONS(1468), + [aux_sym_command_name_token11] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [aux_sym_foreach_command_token1] = ACTIONS(1468), + [aux_sym_class_statement_token1] = ACTIONS(1468), + [aux_sym_enum_statement_token1] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [anon_sym_AT_LPAREN] = ACTIONS(1468), + [anon_sym_AT_LBRACE] = ACTIONS(1468), }, [358] = { - [sym__literal] = STATE(294), - [sym_integer_literal] = STATE(294), - [sym_string_literal] = STATE(294), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(294), - [sym__expression] = STATE(1891), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1325), - [sym_comparison_expression] = STATE(570), - [sym_additive_expression] = STATE(547), - [sym_multiplicative_expression] = STATE(382), - [sym_format_expression] = STATE(345), - [sym_range_expression] = STATE(346), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(304), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(294), - [sym__value] = STATE(294), - [sym_parenthesized_expression] = STATE(294), - [sym_sub_expression] = STATE(294), - [sym_array_expression] = STATE(294), - [sym_script_block_expression] = STATE(294), - [sym_hash_literal_expression] = STATE(294), - [sym_post_increment_expression] = STATE(294), - [sym_post_decrement_expression] = STATE(294), - [sym_member_access] = STATE(294), - [sym_element_access] = STATE(294), - [sym_invokation_expression] = STATE(294), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(80), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(547), - [aux_sym_expandable_string_literal_token1] = ACTIONS(87), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), - [sym_verbatim_string_characters] = ACTIONS(91), - [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), - [aux_sym_comparison_operator_token37] = ACTIONS(549), - [aux_sym_comparison_operator_token50] = ACTIONS(549), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_DOLLAR_CARET] = ACTIONS(101), - [anon_sym_DOLLAR_QMARK] = ACTIONS(101), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(101), - [sym_braced_variable] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), - [anon_sym_AT_LPAREN] = ACTIONS(115), - [anon_sym_AT_LBRACE] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1470), + [sym_hexadecimal_integer_literal] = ACTIONS(1470), + [sym_real_literal] = ACTIONS(1470), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1470), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1470), + [sym_verbatim_string_characters] = ACTIONS(1470), + [sym_verbatim_here_string_characters] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [aux_sym_comparison_operator_token37] = ACTIONS(1470), + [aux_sym_comparison_operator_token50] = ACTIONS(1470), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1470), + [anon_sym_DOLLAR_CARET] = ACTIONS(1470), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1470), + [anon_sym_DOLLAR_] = ACTIONS(1470), + [aux_sym_variable_token1] = ACTIONS(1470), + [aux_sym_variable_token2] = ACTIONS(1470), + [sym_braced_variable] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [aux_sym_if_statement_token1] = ACTIONS(1470), + [aux_sym_switch_statement_token1] = ACTIONS(1470), + [aux_sym_foreach_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token1] = ACTIONS(1470), + [aux_sym_while_statement_token1] = ACTIONS(1470), + [aux_sym_do_statement_token1] = ACTIONS(1470), + [aux_sym_function_statement_token1] = ACTIONS(1470), + [aux_sym_function_statement_token2] = ACTIONS(1470), + [aux_sym_function_statement_token3] = ACTIONS(1470), + [aux_sym_flow_control_statement_token1] = ACTIONS(1470), + [aux_sym_flow_control_statement_token2] = ACTIONS(1470), + [aux_sym_flow_control_statement_token3] = ACTIONS(1470), + [aux_sym_flow_control_statement_token4] = ACTIONS(1470), + [aux_sym_flow_control_statement_token5] = ACTIONS(1470), + [sym_label] = ACTIONS(1470), + [aux_sym_trap_statement_token1] = ACTIONS(1470), + [aux_sym_try_statement_token1] = ACTIONS(1470), + [aux_sym_data_statement_token1] = ACTIONS(1470), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1470), + [aux_sym_parallel_statement_token1] = ACTIONS(1470), + [aux_sym_sequence_statement_token1] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [aux_sym_command_name_token1] = ACTIONS(1470), + [aux_sym_command_name_token2] = ACTIONS(1470), + [aux_sym_command_name_token3] = ACTIONS(1470), + [aux_sym_command_name_token4] = ACTIONS(1470), + [aux_sym_command_name_token5] = ACTIONS(1470), + [aux_sym_command_name_token6] = ACTIONS(1470), + [aux_sym_command_name_token7] = ACTIONS(1470), + [aux_sym_command_name_token8] = ACTIONS(1470), + [aux_sym_command_name_token9] = ACTIONS(1470), + [aux_sym_command_name_token10] = ACTIONS(1470), + [aux_sym_command_name_token11] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [aux_sym_foreach_command_token1] = ACTIONS(1470), + [aux_sym_class_statement_token1] = ACTIONS(1470), + [aux_sym_enum_statement_token1] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_AT_LPAREN] = ACTIONS(1470), + [anon_sym_AT_LBRACE] = ACTIONS(1470), }, [359] = { - [sym__literal] = STATE(294), - [sym_integer_literal] = STATE(294), - [sym_string_literal] = STATE(294), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(294), - [sym__expression] = STATE(2011), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1325), - [sym_comparison_expression] = STATE(570), - [sym_additive_expression] = STATE(547), - [sym_multiplicative_expression] = STATE(382), - [sym_format_expression] = STATE(345), - [sym_range_expression] = STATE(346), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(304), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(294), - [sym__value] = STATE(294), - [sym_parenthesized_expression] = STATE(294), - [sym_sub_expression] = STATE(294), - [sym_array_expression] = STATE(294), - [sym_script_block_expression] = STATE(294), - [sym_hash_literal_expression] = STATE(294), - [sym_post_increment_expression] = STATE(294), - [sym_post_decrement_expression] = STATE(294), - [sym_member_access] = STATE(294), - [sym_element_access] = STATE(294), - [sym_invokation_expression] = STATE(294), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(80), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(547), - [aux_sym_expandable_string_literal_token1] = ACTIONS(87), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), - [sym_verbatim_string_characters] = ACTIONS(91), - [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), - [aux_sym_comparison_operator_token37] = ACTIONS(549), - [aux_sym_comparison_operator_token50] = ACTIONS(549), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_DOLLAR_CARET] = ACTIONS(101), - [anon_sym_DOLLAR_QMARK] = ACTIONS(101), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(101), - [sym_braced_variable] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), - [anon_sym_AT_LPAREN] = ACTIONS(115), - [anon_sym_AT_LBRACE] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1472), + [sym_hexadecimal_integer_literal] = ACTIONS(1472), + [sym_real_literal] = ACTIONS(1472), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1472), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1472), + [sym_verbatim_string_characters] = ACTIONS(1472), + [sym_verbatim_here_string_characters] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [aux_sym_comparison_operator_token37] = ACTIONS(1472), + [aux_sym_comparison_operator_token50] = ACTIONS(1472), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_CARET] = ACTIONS(1472), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1472), + [anon_sym_DOLLAR_] = ACTIONS(1472), + [aux_sym_variable_token1] = ACTIONS(1472), + [aux_sym_variable_token2] = ACTIONS(1472), + [sym_braced_variable] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym_if_statement_token1] = ACTIONS(1472), + [aux_sym_switch_statement_token1] = ACTIONS(1472), + [aux_sym_foreach_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token1] = ACTIONS(1472), + [aux_sym_while_statement_token1] = ACTIONS(1472), + [aux_sym_do_statement_token1] = ACTIONS(1472), + [aux_sym_function_statement_token1] = ACTIONS(1472), + [aux_sym_function_statement_token2] = ACTIONS(1472), + [aux_sym_function_statement_token3] = ACTIONS(1472), + [aux_sym_flow_control_statement_token1] = ACTIONS(1472), + [aux_sym_flow_control_statement_token2] = ACTIONS(1472), + [aux_sym_flow_control_statement_token3] = ACTIONS(1472), + [aux_sym_flow_control_statement_token4] = ACTIONS(1472), + [aux_sym_flow_control_statement_token5] = ACTIONS(1472), + [sym_label] = ACTIONS(1472), + [aux_sym_trap_statement_token1] = ACTIONS(1472), + [aux_sym_try_statement_token1] = ACTIONS(1472), + [aux_sym_data_statement_token1] = ACTIONS(1472), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1472), + [aux_sym_parallel_statement_token1] = ACTIONS(1472), + [aux_sym_sequence_statement_token1] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [aux_sym_command_name_token1] = ACTIONS(1472), + [aux_sym_command_name_token2] = ACTIONS(1472), + [aux_sym_command_name_token3] = ACTIONS(1472), + [aux_sym_command_name_token4] = ACTIONS(1472), + [aux_sym_command_name_token5] = ACTIONS(1472), + [aux_sym_command_name_token6] = ACTIONS(1472), + [aux_sym_command_name_token7] = ACTIONS(1472), + [aux_sym_command_name_token8] = ACTIONS(1472), + [aux_sym_command_name_token9] = ACTIONS(1472), + [aux_sym_command_name_token10] = ACTIONS(1472), + [aux_sym_command_name_token11] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [aux_sym_foreach_command_token1] = ACTIONS(1472), + [aux_sym_class_statement_token1] = ACTIONS(1472), + [aux_sym_enum_statement_token1] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [anon_sym_AT_LPAREN] = ACTIONS(1472), + [anon_sym_AT_LBRACE] = ACTIONS(1472), }, [360] = { - [sym__literal] = STATE(294), - [sym_integer_literal] = STATE(294), - [sym_string_literal] = STATE(294), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(294), - [sym__expression] = STATE(2003), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1325), - [sym_comparison_expression] = STATE(570), - [sym_additive_expression] = STATE(547), - [sym_multiplicative_expression] = STATE(382), - [sym_format_expression] = STATE(345), - [sym_range_expression] = STATE(346), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(304), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(294), - [sym__value] = STATE(294), - [sym_parenthesized_expression] = STATE(294), - [sym_sub_expression] = STATE(294), - [sym_array_expression] = STATE(294), - [sym_script_block_expression] = STATE(294), - [sym_hash_literal_expression] = STATE(294), - [sym_post_increment_expression] = STATE(294), - [sym_post_decrement_expression] = STATE(294), - [sym_member_access] = STATE(294), - [sym_element_access] = STATE(294), - [sym_invokation_expression] = STATE(294), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(80), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(547), - [aux_sym_expandable_string_literal_token1] = ACTIONS(87), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), - [sym_verbatim_string_characters] = ACTIONS(91), - [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), - [aux_sym_comparison_operator_token37] = ACTIONS(549), - [aux_sym_comparison_operator_token50] = ACTIONS(549), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_DOLLAR_CARET] = ACTIONS(101), - [anon_sym_DOLLAR_QMARK] = ACTIONS(101), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(101), - [sym_braced_variable] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), - [anon_sym_AT_LPAREN] = ACTIONS(115), - [anon_sym_AT_LBRACE] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1474), + [sym_hexadecimal_integer_literal] = ACTIONS(1474), + [sym_real_literal] = ACTIONS(1474), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1474), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1474), + [sym_verbatim_string_characters] = ACTIONS(1474), + [sym_verbatim_here_string_characters] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [aux_sym_comparison_operator_token37] = ACTIONS(1474), + [aux_sym_comparison_operator_token50] = ACTIONS(1474), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1474), + [anon_sym_DOLLAR_CARET] = ACTIONS(1474), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1474), + [anon_sym_DOLLAR_] = ACTIONS(1474), + [aux_sym_variable_token1] = ACTIONS(1474), + [aux_sym_variable_token2] = ACTIONS(1474), + [sym_braced_variable] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [aux_sym_if_statement_token1] = ACTIONS(1474), + [aux_sym_switch_statement_token1] = ACTIONS(1474), + [aux_sym_foreach_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token1] = ACTIONS(1474), + [aux_sym_while_statement_token1] = ACTIONS(1474), + [aux_sym_do_statement_token1] = ACTIONS(1474), + [aux_sym_function_statement_token1] = ACTIONS(1474), + [aux_sym_function_statement_token2] = ACTIONS(1474), + [aux_sym_function_statement_token3] = ACTIONS(1474), + [aux_sym_flow_control_statement_token1] = ACTIONS(1474), + [aux_sym_flow_control_statement_token2] = ACTIONS(1474), + [aux_sym_flow_control_statement_token3] = ACTIONS(1474), + [aux_sym_flow_control_statement_token4] = ACTIONS(1474), + [aux_sym_flow_control_statement_token5] = ACTIONS(1474), + [sym_label] = ACTIONS(1474), + [aux_sym_trap_statement_token1] = ACTIONS(1474), + [aux_sym_try_statement_token1] = ACTIONS(1474), + [aux_sym_data_statement_token1] = ACTIONS(1474), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1474), + [aux_sym_parallel_statement_token1] = ACTIONS(1474), + [aux_sym_sequence_statement_token1] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [aux_sym_command_name_token1] = ACTIONS(1474), + [aux_sym_command_name_token2] = ACTIONS(1474), + [aux_sym_command_name_token3] = ACTIONS(1474), + [aux_sym_command_name_token4] = ACTIONS(1474), + [aux_sym_command_name_token5] = ACTIONS(1474), + [aux_sym_command_name_token6] = ACTIONS(1474), + [aux_sym_command_name_token7] = ACTIONS(1474), + [aux_sym_command_name_token8] = ACTIONS(1474), + [aux_sym_command_name_token9] = ACTIONS(1474), + [aux_sym_command_name_token10] = ACTIONS(1474), + [aux_sym_command_name_token11] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [aux_sym_foreach_command_token1] = ACTIONS(1474), + [aux_sym_class_statement_token1] = ACTIONS(1474), + [aux_sym_enum_statement_token1] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_AT_LPAREN] = ACTIONS(1474), + [anon_sym_AT_LBRACE] = ACTIONS(1474), }, [361] = { - [sym_catch_clause] = STATE(374), - [aux_sym_catch_clauses_repeat1] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1476), + [sym_hexadecimal_integer_literal] = ACTIONS(1476), + [sym_real_literal] = ACTIONS(1476), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1476), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1476), + [sym_verbatim_string_characters] = ACTIONS(1476), + [sym_verbatim_here_string_characters] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [aux_sym_comparison_operator_token37] = ACTIONS(1476), + [aux_sym_comparison_operator_token50] = ACTIONS(1476), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1476), + [anon_sym_DOLLAR_CARET] = ACTIONS(1476), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1476), + [anon_sym_DOLLAR_] = ACTIONS(1476), + [aux_sym_variable_token1] = ACTIONS(1476), + [aux_sym_variable_token2] = ACTIONS(1476), + [sym_braced_variable] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [aux_sym_if_statement_token1] = ACTIONS(1476), + [aux_sym_switch_statement_token1] = ACTIONS(1476), + [aux_sym_foreach_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token1] = ACTIONS(1476), + [aux_sym_while_statement_token1] = ACTIONS(1476), + [aux_sym_do_statement_token1] = ACTIONS(1476), + [aux_sym_function_statement_token1] = ACTIONS(1476), + [aux_sym_function_statement_token2] = ACTIONS(1476), + [aux_sym_function_statement_token3] = ACTIONS(1476), + [aux_sym_flow_control_statement_token1] = ACTIONS(1476), + [aux_sym_flow_control_statement_token2] = ACTIONS(1476), + [aux_sym_flow_control_statement_token3] = ACTIONS(1476), + [aux_sym_flow_control_statement_token4] = ACTIONS(1476), + [aux_sym_flow_control_statement_token5] = ACTIONS(1476), + [sym_label] = ACTIONS(1476), + [aux_sym_trap_statement_token1] = ACTIONS(1476), + [aux_sym_try_statement_token1] = ACTIONS(1476), + [aux_sym_data_statement_token1] = ACTIONS(1476), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1476), + [aux_sym_parallel_statement_token1] = ACTIONS(1476), + [aux_sym_sequence_statement_token1] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [aux_sym_command_name_token1] = ACTIONS(1476), + [aux_sym_command_name_token2] = ACTIONS(1476), + [aux_sym_command_name_token3] = ACTIONS(1476), + [aux_sym_command_name_token4] = ACTIONS(1476), + [aux_sym_command_name_token5] = ACTIONS(1476), + [aux_sym_command_name_token6] = ACTIONS(1476), + [aux_sym_command_name_token7] = ACTIONS(1476), + [aux_sym_command_name_token8] = ACTIONS(1476), + [aux_sym_command_name_token9] = ACTIONS(1476), + [aux_sym_command_name_token10] = ACTIONS(1476), + [aux_sym_command_name_token11] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [aux_sym_foreach_command_token1] = ACTIONS(1476), + [aux_sym_class_statement_token1] = ACTIONS(1476), + [aux_sym_enum_statement_token1] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_AT_LPAREN] = ACTIONS(1476), + [anon_sym_AT_LBRACE] = ACTIONS(1476), + }, + [362] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1478), + [sym_hexadecimal_integer_literal] = ACTIONS(1478), + [sym_real_literal] = ACTIONS(1478), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1478), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1478), + [sym_verbatim_string_characters] = ACTIONS(1478), + [sym_verbatim_here_string_characters] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [aux_sym_comparison_operator_token37] = ACTIONS(1478), + [aux_sym_comparison_operator_token50] = ACTIONS(1478), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1478), + [anon_sym_DOLLAR_CARET] = ACTIONS(1478), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1478), + [anon_sym_DOLLAR_] = ACTIONS(1478), + [aux_sym_variable_token1] = ACTIONS(1478), + [aux_sym_variable_token2] = ACTIONS(1478), + [sym_braced_variable] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [aux_sym_if_statement_token1] = ACTIONS(1478), + [aux_sym_switch_statement_token1] = ACTIONS(1478), + [aux_sym_foreach_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token1] = ACTIONS(1478), + [aux_sym_while_statement_token1] = ACTIONS(1478), + [aux_sym_do_statement_token1] = ACTIONS(1478), + [aux_sym_function_statement_token1] = ACTIONS(1478), + [aux_sym_function_statement_token2] = ACTIONS(1478), + [aux_sym_function_statement_token3] = ACTIONS(1478), + [aux_sym_flow_control_statement_token1] = ACTIONS(1478), + [aux_sym_flow_control_statement_token2] = ACTIONS(1478), + [aux_sym_flow_control_statement_token3] = ACTIONS(1478), + [aux_sym_flow_control_statement_token4] = ACTIONS(1478), + [aux_sym_flow_control_statement_token5] = ACTIONS(1478), + [sym_label] = ACTIONS(1478), + [aux_sym_trap_statement_token1] = ACTIONS(1478), + [aux_sym_try_statement_token1] = ACTIONS(1478), + [aux_sym_data_statement_token1] = ACTIONS(1478), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1478), + [aux_sym_parallel_statement_token1] = ACTIONS(1478), + [aux_sym_sequence_statement_token1] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [aux_sym_command_name_token1] = ACTIONS(1478), + [aux_sym_command_name_token2] = ACTIONS(1478), + [aux_sym_command_name_token3] = ACTIONS(1478), + [aux_sym_command_name_token4] = ACTIONS(1478), + [aux_sym_command_name_token5] = ACTIONS(1478), + [aux_sym_command_name_token6] = ACTIONS(1478), + [aux_sym_command_name_token7] = ACTIONS(1478), + [aux_sym_command_name_token8] = ACTIONS(1478), + [aux_sym_command_name_token9] = ACTIONS(1478), + [aux_sym_command_name_token10] = ACTIONS(1478), + [aux_sym_command_name_token11] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [aux_sym_foreach_command_token1] = ACTIONS(1478), + [aux_sym_class_statement_token1] = ACTIONS(1478), + [aux_sym_enum_statement_token1] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [anon_sym_AT_LPAREN] = ACTIONS(1478), + [anon_sym_AT_LBRACE] = ACTIONS(1478), + }, + [363] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1480), + [sym_hexadecimal_integer_literal] = ACTIONS(1480), + [sym_real_literal] = ACTIONS(1480), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1480), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1480), + [sym_verbatim_string_characters] = ACTIONS(1480), + [sym_verbatim_here_string_characters] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [aux_sym_comparison_operator_token37] = ACTIONS(1480), + [aux_sym_comparison_operator_token50] = ACTIONS(1480), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1480), + [anon_sym_DOLLAR_CARET] = ACTIONS(1480), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1480), + [anon_sym_DOLLAR_] = ACTIONS(1480), + [aux_sym_variable_token1] = ACTIONS(1480), + [aux_sym_variable_token2] = ACTIONS(1480), + [sym_braced_variable] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [aux_sym_if_statement_token1] = ACTIONS(1480), + [aux_sym_switch_statement_token1] = ACTIONS(1480), + [aux_sym_foreach_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token1] = ACTIONS(1480), + [aux_sym_while_statement_token1] = ACTIONS(1480), + [aux_sym_do_statement_token1] = ACTIONS(1480), + [aux_sym_function_statement_token1] = ACTIONS(1480), + [aux_sym_function_statement_token2] = ACTIONS(1480), + [aux_sym_function_statement_token3] = ACTIONS(1480), + [aux_sym_flow_control_statement_token1] = ACTIONS(1480), + [aux_sym_flow_control_statement_token2] = ACTIONS(1480), + [aux_sym_flow_control_statement_token3] = ACTIONS(1480), + [aux_sym_flow_control_statement_token4] = ACTIONS(1480), + [aux_sym_flow_control_statement_token5] = ACTIONS(1480), + [sym_label] = ACTIONS(1480), + [aux_sym_trap_statement_token1] = ACTIONS(1480), + [aux_sym_try_statement_token1] = ACTIONS(1480), + [aux_sym_data_statement_token1] = ACTIONS(1480), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1480), + [aux_sym_parallel_statement_token1] = ACTIONS(1480), + [aux_sym_sequence_statement_token1] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [aux_sym_command_name_token1] = ACTIONS(1480), + [aux_sym_command_name_token2] = ACTIONS(1480), + [aux_sym_command_name_token3] = ACTIONS(1480), + [aux_sym_command_name_token4] = ACTIONS(1480), + [aux_sym_command_name_token5] = ACTIONS(1480), + [aux_sym_command_name_token6] = ACTIONS(1480), + [aux_sym_command_name_token7] = ACTIONS(1480), + [aux_sym_command_name_token8] = ACTIONS(1480), + [aux_sym_command_name_token9] = ACTIONS(1480), + [aux_sym_command_name_token10] = ACTIONS(1480), + [aux_sym_command_name_token11] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [aux_sym_foreach_command_token1] = ACTIONS(1480), + [aux_sym_class_statement_token1] = ACTIONS(1480), + [aux_sym_enum_statement_token1] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_AT_LPAREN] = ACTIONS(1480), + [anon_sym_AT_LBRACE] = ACTIONS(1480), + }, + [364] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1482), + [sym_hexadecimal_integer_literal] = ACTIONS(1482), + [sym_real_literal] = ACTIONS(1482), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1482), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1482), + [sym_verbatim_string_characters] = ACTIONS(1482), + [sym_verbatim_here_string_characters] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [aux_sym_comparison_operator_token37] = ACTIONS(1482), + [aux_sym_comparison_operator_token50] = ACTIONS(1482), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1482), + [anon_sym_DOLLAR_CARET] = ACTIONS(1482), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1482), + [anon_sym_DOLLAR_] = ACTIONS(1482), + [aux_sym_variable_token1] = ACTIONS(1482), + [aux_sym_variable_token2] = ACTIONS(1482), + [sym_braced_variable] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [aux_sym_if_statement_token1] = ACTIONS(1482), + [aux_sym_switch_statement_token1] = ACTIONS(1482), + [aux_sym_foreach_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token1] = ACTIONS(1482), + [aux_sym_while_statement_token1] = ACTIONS(1482), + [aux_sym_do_statement_token1] = ACTIONS(1482), + [aux_sym_function_statement_token1] = ACTIONS(1482), + [aux_sym_function_statement_token2] = ACTIONS(1482), + [aux_sym_function_statement_token3] = ACTIONS(1482), + [aux_sym_flow_control_statement_token1] = ACTIONS(1482), + [aux_sym_flow_control_statement_token2] = ACTIONS(1482), + [aux_sym_flow_control_statement_token3] = ACTIONS(1482), + [aux_sym_flow_control_statement_token4] = ACTIONS(1482), + [aux_sym_flow_control_statement_token5] = ACTIONS(1482), + [sym_label] = ACTIONS(1482), + [aux_sym_trap_statement_token1] = ACTIONS(1482), + [aux_sym_try_statement_token1] = ACTIONS(1482), + [aux_sym_data_statement_token1] = ACTIONS(1482), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1482), + [aux_sym_parallel_statement_token1] = ACTIONS(1482), + [aux_sym_sequence_statement_token1] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [aux_sym_command_name_token1] = ACTIONS(1482), + [aux_sym_command_name_token2] = ACTIONS(1482), + [aux_sym_command_name_token3] = ACTIONS(1482), + [aux_sym_command_name_token4] = ACTIONS(1482), + [aux_sym_command_name_token5] = ACTIONS(1482), + [aux_sym_command_name_token6] = ACTIONS(1482), + [aux_sym_command_name_token7] = ACTIONS(1482), + [aux_sym_command_name_token8] = ACTIONS(1482), + [aux_sym_command_name_token9] = ACTIONS(1482), + [aux_sym_command_name_token10] = ACTIONS(1482), + [aux_sym_command_name_token11] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [aux_sym_foreach_command_token1] = ACTIONS(1482), + [aux_sym_class_statement_token1] = ACTIONS(1482), + [aux_sym_enum_statement_token1] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [anon_sym_AT_LPAREN] = ACTIONS(1482), + [anon_sym_AT_LBRACE] = ACTIONS(1482), + }, + [365] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1484), + [sym_hexadecimal_integer_literal] = ACTIONS(1484), + [sym_real_literal] = ACTIONS(1484), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1484), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1484), + [sym_verbatim_string_characters] = ACTIONS(1484), + [sym_verbatim_here_string_characters] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [aux_sym_comparison_operator_token37] = ACTIONS(1484), + [aux_sym_comparison_operator_token50] = ACTIONS(1484), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1484), + [anon_sym_DOLLAR_CARET] = ACTIONS(1484), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1484), + [anon_sym_DOLLAR_] = ACTIONS(1484), + [aux_sym_variable_token1] = ACTIONS(1484), + [aux_sym_variable_token2] = ACTIONS(1484), + [sym_braced_variable] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [aux_sym_if_statement_token1] = ACTIONS(1484), + [aux_sym_switch_statement_token1] = ACTIONS(1484), + [aux_sym_foreach_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token1] = ACTIONS(1484), + [aux_sym_while_statement_token1] = ACTIONS(1484), + [aux_sym_do_statement_token1] = ACTIONS(1484), + [aux_sym_function_statement_token1] = ACTIONS(1484), + [aux_sym_function_statement_token2] = ACTIONS(1484), + [aux_sym_function_statement_token3] = ACTIONS(1484), + [aux_sym_flow_control_statement_token1] = ACTIONS(1484), + [aux_sym_flow_control_statement_token2] = ACTIONS(1484), + [aux_sym_flow_control_statement_token3] = ACTIONS(1484), + [aux_sym_flow_control_statement_token4] = ACTIONS(1484), + [aux_sym_flow_control_statement_token5] = ACTIONS(1484), + [sym_label] = ACTIONS(1484), + [aux_sym_trap_statement_token1] = ACTIONS(1484), + [aux_sym_try_statement_token1] = ACTIONS(1484), + [aux_sym_data_statement_token1] = ACTIONS(1484), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1484), + [aux_sym_parallel_statement_token1] = ACTIONS(1484), + [aux_sym_sequence_statement_token1] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [aux_sym_command_name_token1] = ACTIONS(1484), + [aux_sym_command_name_token2] = ACTIONS(1484), + [aux_sym_command_name_token3] = ACTIONS(1484), + [aux_sym_command_name_token4] = ACTIONS(1484), + [aux_sym_command_name_token5] = ACTIONS(1484), + [aux_sym_command_name_token6] = ACTIONS(1484), + [aux_sym_command_name_token7] = ACTIONS(1484), + [aux_sym_command_name_token8] = ACTIONS(1484), + [aux_sym_command_name_token9] = ACTIONS(1484), + [aux_sym_command_name_token10] = ACTIONS(1484), + [aux_sym_command_name_token11] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [aux_sym_foreach_command_token1] = ACTIONS(1484), + [aux_sym_class_statement_token1] = ACTIONS(1484), + [aux_sym_enum_statement_token1] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_AT_LPAREN] = ACTIONS(1484), + [anon_sym_AT_LBRACE] = ACTIONS(1484), + }, + [366] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1486), + [sym_hexadecimal_integer_literal] = ACTIONS(1486), + [sym_real_literal] = ACTIONS(1486), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1486), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1486), + [sym_verbatim_string_characters] = ACTIONS(1486), + [sym_verbatim_here_string_characters] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [aux_sym_comparison_operator_token37] = ACTIONS(1486), + [aux_sym_comparison_operator_token50] = ACTIONS(1486), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1486), + [anon_sym_DOLLAR_CARET] = ACTIONS(1486), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1486), + [anon_sym_DOLLAR_] = ACTIONS(1486), + [aux_sym_variable_token1] = ACTIONS(1486), + [aux_sym_variable_token2] = ACTIONS(1486), + [sym_braced_variable] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_while_statement_token1] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_function_statement_token1] = ACTIONS(1486), + [aux_sym_function_statement_token2] = ACTIONS(1486), + [aux_sym_function_statement_token3] = ACTIONS(1486), + [aux_sym_flow_control_statement_token1] = ACTIONS(1486), + [aux_sym_flow_control_statement_token2] = ACTIONS(1486), + [aux_sym_flow_control_statement_token3] = ACTIONS(1486), + [aux_sym_flow_control_statement_token4] = ACTIONS(1486), + [aux_sym_flow_control_statement_token5] = ACTIONS(1486), + [sym_label] = ACTIONS(1486), + [aux_sym_trap_statement_token1] = ACTIONS(1486), + [aux_sym_try_statement_token1] = ACTIONS(1486), + [aux_sym_data_statement_token1] = ACTIONS(1486), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1486), + [aux_sym_parallel_statement_token1] = ACTIONS(1486), + [aux_sym_sequence_statement_token1] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [aux_sym_command_name_token1] = ACTIONS(1486), + [aux_sym_command_name_token2] = ACTIONS(1486), + [aux_sym_command_name_token3] = ACTIONS(1486), + [aux_sym_command_name_token4] = ACTIONS(1486), + [aux_sym_command_name_token5] = ACTIONS(1486), + [aux_sym_command_name_token6] = ACTIONS(1486), + [aux_sym_command_name_token7] = ACTIONS(1486), + [aux_sym_command_name_token8] = ACTIONS(1486), + [aux_sym_command_name_token9] = ACTIONS(1486), + [aux_sym_command_name_token10] = ACTIONS(1486), + [aux_sym_command_name_token11] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [aux_sym_foreach_command_token1] = ACTIONS(1486), + [aux_sym_class_statement_token1] = ACTIONS(1486), + [aux_sym_enum_statement_token1] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_AT_LPAREN] = ACTIONS(1486), + [anon_sym_AT_LBRACE] = ACTIONS(1486), + }, + [367] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1488), + [sym_hexadecimal_integer_literal] = ACTIONS(1488), + [sym_real_literal] = ACTIONS(1488), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1488), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1488), + [sym_verbatim_string_characters] = ACTIONS(1488), + [sym_verbatim_here_string_characters] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [aux_sym_comparison_operator_token37] = ACTIONS(1488), + [aux_sym_comparison_operator_token50] = ACTIONS(1488), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1488), + [anon_sym_DOLLAR_CARET] = ACTIONS(1488), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1488), + [anon_sym_DOLLAR_] = ACTIONS(1488), + [aux_sym_variable_token1] = ACTIONS(1488), + [aux_sym_variable_token2] = ACTIONS(1488), + [sym_braced_variable] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [aux_sym_if_statement_token1] = ACTIONS(1488), + [aux_sym_switch_statement_token1] = ACTIONS(1488), + [aux_sym_foreach_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token1] = ACTIONS(1488), + [aux_sym_while_statement_token1] = ACTIONS(1488), + [aux_sym_do_statement_token1] = ACTIONS(1488), + [aux_sym_function_statement_token1] = ACTIONS(1488), + [aux_sym_function_statement_token2] = ACTIONS(1488), + [aux_sym_function_statement_token3] = ACTIONS(1488), + [aux_sym_flow_control_statement_token1] = ACTIONS(1488), + [aux_sym_flow_control_statement_token2] = ACTIONS(1488), + [aux_sym_flow_control_statement_token3] = ACTIONS(1488), + [aux_sym_flow_control_statement_token4] = ACTIONS(1488), + [aux_sym_flow_control_statement_token5] = ACTIONS(1488), + [sym_label] = ACTIONS(1488), + [aux_sym_trap_statement_token1] = ACTIONS(1488), + [aux_sym_try_statement_token1] = ACTIONS(1488), + [aux_sym_data_statement_token1] = ACTIONS(1488), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1488), + [aux_sym_parallel_statement_token1] = ACTIONS(1488), + [aux_sym_sequence_statement_token1] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [aux_sym_command_name_token1] = ACTIONS(1488), + [aux_sym_command_name_token2] = ACTIONS(1488), + [aux_sym_command_name_token3] = ACTIONS(1488), + [aux_sym_command_name_token4] = ACTIONS(1488), + [aux_sym_command_name_token5] = ACTIONS(1488), + [aux_sym_command_name_token6] = ACTIONS(1488), + [aux_sym_command_name_token7] = ACTIONS(1488), + [aux_sym_command_name_token8] = ACTIONS(1488), + [aux_sym_command_name_token9] = ACTIONS(1488), + [aux_sym_command_name_token10] = ACTIONS(1488), + [aux_sym_command_name_token11] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [aux_sym_foreach_command_token1] = ACTIONS(1488), + [aux_sym_class_statement_token1] = ACTIONS(1488), + [aux_sym_enum_statement_token1] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1488), + [anon_sym_AT_LPAREN] = ACTIONS(1488), + [anon_sym_AT_LBRACE] = ACTIONS(1488), + }, + [368] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1382), + [sym_hexadecimal_integer_literal] = ACTIONS(1382), + [sym_real_literal] = ACTIONS(1382), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1382), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1382), + [sym_verbatim_string_characters] = ACTIONS(1382), + [sym_verbatim_here_string_characters] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [aux_sym_comparison_operator_token37] = ACTIONS(1382), + [aux_sym_comparison_operator_token50] = ACTIONS(1382), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1382), + [anon_sym_DOLLAR_CARET] = ACTIONS(1382), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1382), + [anon_sym_DOLLAR_] = ACTIONS(1382), + [aux_sym_variable_token1] = ACTIONS(1382), + [aux_sym_variable_token2] = ACTIONS(1382), + [sym_braced_variable] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token2] = ACTIONS(1382), + [aux_sym_function_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token1] = ACTIONS(1382), + [aux_sym_flow_control_statement_token2] = ACTIONS(1382), + [aux_sym_flow_control_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token4] = ACTIONS(1382), + [aux_sym_flow_control_statement_token5] = ACTIONS(1382), + [sym_label] = ACTIONS(1382), + [aux_sym_trap_statement_token1] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_data_statement_token1] = ACTIONS(1382), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1382), + [aux_sym_parallel_statement_token1] = ACTIONS(1382), + [aux_sym_sequence_statement_token1] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_command_name_token1] = ACTIONS(1382), + [aux_sym_command_name_token2] = ACTIONS(1382), + [aux_sym_command_name_token3] = ACTIONS(1382), + [aux_sym_command_name_token4] = ACTIONS(1382), + [aux_sym_command_name_token5] = ACTIONS(1382), + [aux_sym_command_name_token6] = ACTIONS(1382), + [aux_sym_command_name_token7] = ACTIONS(1382), + [aux_sym_command_name_token8] = ACTIONS(1382), + [aux_sym_command_name_token9] = ACTIONS(1382), + [aux_sym_command_name_token10] = ACTIONS(1382), + [aux_sym_command_name_token11] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [aux_sym_foreach_command_token1] = ACTIONS(1382), + [aux_sym_class_statement_token1] = ACTIONS(1382), + [aux_sym_enum_statement_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LBRACE] = ACTIONS(1382), + }, + [369] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1490), + [sym_hexadecimal_integer_literal] = ACTIONS(1490), + [sym_real_literal] = ACTIONS(1490), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1490), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1490), + [sym_verbatim_string_characters] = ACTIONS(1490), + [sym_verbatim_here_string_characters] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [aux_sym_comparison_operator_token37] = ACTIONS(1490), + [aux_sym_comparison_operator_token50] = ACTIONS(1490), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1490), + [anon_sym_DOLLAR_CARET] = ACTIONS(1490), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1490), + [anon_sym_DOLLAR_] = ACTIONS(1490), + [aux_sym_variable_token1] = ACTIONS(1490), + [aux_sym_variable_token2] = ACTIONS(1490), + [sym_braced_variable] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [aux_sym_if_statement_token1] = ACTIONS(1490), + [aux_sym_switch_statement_token1] = ACTIONS(1490), + [aux_sym_foreach_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token1] = ACTIONS(1490), + [aux_sym_while_statement_token1] = ACTIONS(1490), + [aux_sym_do_statement_token1] = ACTIONS(1490), + [aux_sym_function_statement_token1] = ACTIONS(1490), + [aux_sym_function_statement_token2] = ACTIONS(1490), + [aux_sym_function_statement_token3] = ACTIONS(1490), + [aux_sym_flow_control_statement_token1] = ACTIONS(1490), + [aux_sym_flow_control_statement_token2] = ACTIONS(1490), + [aux_sym_flow_control_statement_token3] = ACTIONS(1490), + [aux_sym_flow_control_statement_token4] = ACTIONS(1490), + [aux_sym_flow_control_statement_token5] = ACTIONS(1490), + [sym_label] = ACTIONS(1490), + [aux_sym_trap_statement_token1] = ACTIONS(1490), + [aux_sym_try_statement_token1] = ACTIONS(1490), + [aux_sym_data_statement_token1] = ACTIONS(1490), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1490), + [aux_sym_parallel_statement_token1] = ACTIONS(1490), + [aux_sym_sequence_statement_token1] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [aux_sym_command_name_token1] = ACTIONS(1490), + [aux_sym_command_name_token2] = ACTIONS(1490), + [aux_sym_command_name_token3] = ACTIONS(1490), + [aux_sym_command_name_token4] = ACTIONS(1490), + [aux_sym_command_name_token5] = ACTIONS(1490), + [aux_sym_command_name_token6] = ACTIONS(1490), + [aux_sym_command_name_token7] = ACTIONS(1490), + [aux_sym_command_name_token8] = ACTIONS(1490), + [aux_sym_command_name_token9] = ACTIONS(1490), + [aux_sym_command_name_token10] = ACTIONS(1490), + [aux_sym_command_name_token11] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [aux_sym_foreach_command_token1] = ACTIONS(1490), + [aux_sym_class_statement_token1] = ACTIONS(1490), + [aux_sym_enum_statement_token1] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1490), + [anon_sym_AT_LPAREN] = ACTIONS(1490), + [anon_sym_AT_LBRACE] = ACTIONS(1490), + }, + [370] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1492), + [sym_hexadecimal_integer_literal] = ACTIONS(1492), + [sym_real_literal] = ACTIONS(1492), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1492), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1492), + [sym_verbatim_string_characters] = ACTIONS(1492), + [sym_verbatim_here_string_characters] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [aux_sym_comparison_operator_token37] = ACTIONS(1492), + [aux_sym_comparison_operator_token50] = ACTIONS(1492), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1492), + [anon_sym_DOLLAR_CARET] = ACTIONS(1492), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1492), + [anon_sym_DOLLAR_] = ACTIONS(1492), + [aux_sym_variable_token1] = ACTIONS(1492), + [aux_sym_variable_token2] = ACTIONS(1492), + [sym_braced_variable] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [aux_sym_if_statement_token1] = ACTIONS(1492), + [aux_sym_switch_statement_token1] = ACTIONS(1492), + [aux_sym_foreach_statement_token1] = ACTIONS(1492), + [aux_sym_for_statement_token1] = ACTIONS(1492), + [aux_sym_while_statement_token1] = ACTIONS(1492), + [aux_sym_do_statement_token1] = ACTIONS(1492), + [aux_sym_function_statement_token1] = ACTIONS(1492), + [aux_sym_function_statement_token2] = ACTIONS(1492), + [aux_sym_function_statement_token3] = ACTIONS(1492), + [aux_sym_flow_control_statement_token1] = ACTIONS(1492), + [aux_sym_flow_control_statement_token2] = ACTIONS(1492), + [aux_sym_flow_control_statement_token3] = ACTIONS(1492), + [aux_sym_flow_control_statement_token4] = ACTIONS(1492), + [aux_sym_flow_control_statement_token5] = ACTIONS(1492), + [sym_label] = ACTIONS(1492), + [aux_sym_trap_statement_token1] = ACTIONS(1492), + [aux_sym_try_statement_token1] = ACTIONS(1492), + [aux_sym_data_statement_token1] = ACTIONS(1492), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1492), + [aux_sym_parallel_statement_token1] = ACTIONS(1492), + [aux_sym_sequence_statement_token1] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [aux_sym_command_name_token1] = ACTIONS(1492), + [aux_sym_command_name_token2] = ACTIONS(1492), + [aux_sym_command_name_token3] = ACTIONS(1492), + [aux_sym_command_name_token4] = ACTIONS(1492), + [aux_sym_command_name_token5] = ACTIONS(1492), + [aux_sym_command_name_token6] = ACTIONS(1492), + [aux_sym_command_name_token7] = ACTIONS(1492), + [aux_sym_command_name_token8] = ACTIONS(1492), + [aux_sym_command_name_token9] = ACTIONS(1492), + [aux_sym_command_name_token10] = ACTIONS(1492), + [aux_sym_command_name_token11] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [aux_sym_foreach_command_token1] = ACTIONS(1492), + [aux_sym_class_statement_token1] = ACTIONS(1492), + [aux_sym_enum_statement_token1] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1492), + [anon_sym_AT_LPAREN] = ACTIONS(1492), + [anon_sym_AT_LBRACE] = ACTIONS(1492), + }, + [371] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1494), + [sym_hexadecimal_integer_literal] = ACTIONS(1494), + [sym_real_literal] = ACTIONS(1494), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1494), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1494), + [sym_verbatim_string_characters] = ACTIONS(1494), + [sym_verbatim_here_string_characters] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [aux_sym_comparison_operator_token37] = ACTIONS(1494), + [aux_sym_comparison_operator_token50] = ACTIONS(1494), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1494), + [anon_sym_DOLLAR_CARET] = ACTIONS(1494), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1494), + [anon_sym_DOLLAR_] = ACTIONS(1494), + [aux_sym_variable_token1] = ACTIONS(1494), + [aux_sym_variable_token2] = ACTIONS(1494), + [sym_braced_variable] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym_if_statement_token1] = ACTIONS(1494), + [aux_sym_switch_statement_token1] = ACTIONS(1494), + [aux_sym_foreach_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token1] = ACTIONS(1494), + [aux_sym_while_statement_token1] = ACTIONS(1494), + [aux_sym_do_statement_token1] = ACTIONS(1494), + [aux_sym_function_statement_token1] = ACTIONS(1494), + [aux_sym_function_statement_token2] = ACTIONS(1494), + [aux_sym_function_statement_token3] = ACTIONS(1494), + [aux_sym_flow_control_statement_token1] = ACTIONS(1494), + [aux_sym_flow_control_statement_token2] = ACTIONS(1494), + [aux_sym_flow_control_statement_token3] = ACTIONS(1494), + [aux_sym_flow_control_statement_token4] = ACTIONS(1494), + [aux_sym_flow_control_statement_token5] = ACTIONS(1494), + [sym_label] = ACTIONS(1494), + [aux_sym_trap_statement_token1] = ACTIONS(1494), + [aux_sym_try_statement_token1] = ACTIONS(1494), + [aux_sym_data_statement_token1] = ACTIONS(1494), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1494), + [aux_sym_parallel_statement_token1] = ACTIONS(1494), + [aux_sym_sequence_statement_token1] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [aux_sym_command_name_token1] = ACTIONS(1494), + [aux_sym_command_name_token2] = ACTIONS(1494), + [aux_sym_command_name_token3] = ACTIONS(1494), + [aux_sym_command_name_token4] = ACTIONS(1494), + [aux_sym_command_name_token5] = ACTIONS(1494), + [aux_sym_command_name_token6] = ACTIONS(1494), + [aux_sym_command_name_token7] = ACTIONS(1494), + [aux_sym_command_name_token8] = ACTIONS(1494), + [aux_sym_command_name_token9] = ACTIONS(1494), + [aux_sym_command_name_token10] = ACTIONS(1494), + [aux_sym_command_name_token11] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [aux_sym_foreach_command_token1] = ACTIONS(1494), + [aux_sym_class_statement_token1] = ACTIONS(1494), + [aux_sym_enum_statement_token1] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), + [anon_sym_AT_LPAREN] = ACTIONS(1494), + [anon_sym_AT_LBRACE] = ACTIONS(1494), + }, + [372] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1496), + [sym_hexadecimal_integer_literal] = ACTIONS(1496), + [sym_real_literal] = ACTIONS(1496), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1496), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1496), + [sym_verbatim_string_characters] = ACTIONS(1496), + [sym_verbatim_here_string_characters] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [aux_sym_comparison_operator_token37] = ACTIONS(1496), + [aux_sym_comparison_operator_token50] = ACTIONS(1496), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1496), + [anon_sym_DOLLAR_CARET] = ACTIONS(1496), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1496), + [anon_sym_DOLLAR_] = ACTIONS(1496), + [aux_sym_variable_token1] = ACTIONS(1496), + [aux_sym_variable_token2] = ACTIONS(1496), + [sym_braced_variable] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [aux_sym_if_statement_token1] = ACTIONS(1496), + [aux_sym_switch_statement_token1] = ACTIONS(1496), + [aux_sym_foreach_statement_token1] = ACTIONS(1496), + [aux_sym_for_statement_token1] = ACTIONS(1496), + [aux_sym_while_statement_token1] = ACTIONS(1496), + [aux_sym_do_statement_token1] = ACTIONS(1496), + [aux_sym_function_statement_token1] = ACTIONS(1496), + [aux_sym_function_statement_token2] = ACTIONS(1496), + [aux_sym_function_statement_token3] = ACTIONS(1496), + [aux_sym_flow_control_statement_token1] = ACTIONS(1496), + [aux_sym_flow_control_statement_token2] = ACTIONS(1496), + [aux_sym_flow_control_statement_token3] = ACTIONS(1496), + [aux_sym_flow_control_statement_token4] = ACTIONS(1496), + [aux_sym_flow_control_statement_token5] = ACTIONS(1496), + [sym_label] = ACTIONS(1496), + [aux_sym_trap_statement_token1] = ACTIONS(1496), + [aux_sym_try_statement_token1] = ACTIONS(1496), + [aux_sym_data_statement_token1] = ACTIONS(1496), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1496), + [aux_sym_parallel_statement_token1] = ACTIONS(1496), + [aux_sym_sequence_statement_token1] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [aux_sym_command_name_token1] = ACTIONS(1496), + [aux_sym_command_name_token2] = ACTIONS(1496), + [aux_sym_command_name_token3] = ACTIONS(1496), + [aux_sym_command_name_token4] = ACTIONS(1496), + [aux_sym_command_name_token5] = ACTIONS(1496), + [aux_sym_command_name_token6] = ACTIONS(1496), + [aux_sym_command_name_token7] = ACTIONS(1496), + [aux_sym_command_name_token8] = ACTIONS(1496), + [aux_sym_command_name_token9] = ACTIONS(1496), + [aux_sym_command_name_token10] = ACTIONS(1496), + [aux_sym_command_name_token11] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [aux_sym_foreach_command_token1] = ACTIONS(1496), + [aux_sym_class_statement_token1] = ACTIONS(1496), + [aux_sym_enum_statement_token1] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1496), + [anon_sym_AT_LPAREN] = ACTIONS(1496), + [anon_sym_AT_LBRACE] = ACTIONS(1496), + }, + [373] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), + }, + [374] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), + }, + [375] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1498), + [sym_hexadecimal_integer_literal] = ACTIONS(1498), + [sym_real_literal] = ACTIONS(1498), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1498), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1498), + [sym_verbatim_string_characters] = ACTIONS(1498), + [sym_verbatim_here_string_characters] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [aux_sym_comparison_operator_token37] = ACTIONS(1498), + [aux_sym_comparison_operator_token50] = ACTIONS(1498), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR_CARET] = ACTIONS(1498), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1498), + [anon_sym_DOLLAR_] = ACTIONS(1498), + [aux_sym_variable_token1] = ACTIONS(1498), + [aux_sym_variable_token2] = ACTIONS(1498), + [sym_braced_variable] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [aux_sym_if_statement_token1] = ACTIONS(1498), + [aux_sym_switch_statement_token1] = ACTIONS(1498), + [aux_sym_foreach_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token1] = ACTIONS(1498), + [aux_sym_while_statement_token1] = ACTIONS(1498), + [aux_sym_do_statement_token1] = ACTIONS(1498), + [aux_sym_function_statement_token1] = ACTIONS(1498), + [aux_sym_function_statement_token2] = ACTIONS(1498), + [aux_sym_function_statement_token3] = ACTIONS(1498), + [aux_sym_flow_control_statement_token1] = ACTIONS(1498), + [aux_sym_flow_control_statement_token2] = ACTIONS(1498), + [aux_sym_flow_control_statement_token3] = ACTIONS(1498), + [aux_sym_flow_control_statement_token4] = ACTIONS(1498), + [aux_sym_flow_control_statement_token5] = ACTIONS(1498), + [sym_label] = ACTIONS(1498), + [aux_sym_trap_statement_token1] = ACTIONS(1498), + [aux_sym_try_statement_token1] = ACTIONS(1498), + [aux_sym_data_statement_token1] = ACTIONS(1498), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1498), + [aux_sym_parallel_statement_token1] = ACTIONS(1498), + [aux_sym_sequence_statement_token1] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [aux_sym_command_name_token1] = ACTIONS(1498), + [aux_sym_command_name_token2] = ACTIONS(1498), + [aux_sym_command_name_token3] = ACTIONS(1498), + [aux_sym_command_name_token4] = ACTIONS(1498), + [aux_sym_command_name_token5] = ACTIONS(1498), + [aux_sym_command_name_token6] = ACTIONS(1498), + [aux_sym_command_name_token7] = ACTIONS(1498), + [aux_sym_command_name_token8] = ACTIONS(1498), + [aux_sym_command_name_token9] = ACTIONS(1498), + [aux_sym_command_name_token10] = ACTIONS(1498), + [aux_sym_command_name_token11] = ACTIONS(1498), + [anon_sym_PERCENT] = ACTIONS(1498), + [aux_sym_foreach_command_token1] = ACTIONS(1498), + [aux_sym_class_statement_token1] = ACTIONS(1498), + [aux_sym_enum_statement_token1] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), + [anon_sym_AT_LPAREN] = ACTIONS(1498), + [anon_sym_AT_LBRACE] = ACTIONS(1498), + }, + [376] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1454), + [sym_hexadecimal_integer_literal] = ACTIONS(1454), + [sym_real_literal] = ACTIONS(1454), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1454), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1454), + [sym_verbatim_string_characters] = ACTIONS(1454), + [sym_verbatim_here_string_characters] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [aux_sym_comparison_operator_token37] = ACTIONS(1454), + [aux_sym_comparison_operator_token50] = ACTIONS(1454), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1454), + [anon_sym_DOLLAR_CARET] = ACTIONS(1454), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1454), + [anon_sym_DOLLAR_] = ACTIONS(1454), + [aux_sym_variable_token1] = ACTIONS(1454), + [aux_sym_variable_token2] = ACTIONS(1454), + [sym_braced_variable] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [aux_sym_if_statement_token1] = ACTIONS(1454), + [aux_sym_switch_statement_token1] = ACTIONS(1454), + [aux_sym_foreach_statement_token1] = ACTIONS(1454), + [aux_sym_for_statement_token1] = ACTIONS(1454), + [aux_sym_while_statement_token1] = ACTIONS(1454), + [aux_sym_do_statement_token1] = ACTIONS(1454), + [aux_sym_function_statement_token1] = ACTIONS(1454), + [aux_sym_function_statement_token2] = ACTIONS(1454), + [aux_sym_function_statement_token3] = ACTIONS(1454), + [aux_sym_flow_control_statement_token1] = ACTIONS(1454), + [aux_sym_flow_control_statement_token2] = ACTIONS(1454), + [aux_sym_flow_control_statement_token3] = ACTIONS(1454), + [aux_sym_flow_control_statement_token4] = ACTIONS(1454), + [aux_sym_flow_control_statement_token5] = ACTIONS(1454), + [sym_label] = ACTIONS(1454), + [aux_sym_trap_statement_token1] = ACTIONS(1454), + [aux_sym_try_statement_token1] = ACTIONS(1454), + [aux_sym_data_statement_token1] = ACTIONS(1454), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1454), + [aux_sym_parallel_statement_token1] = ACTIONS(1454), + [aux_sym_sequence_statement_token1] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [aux_sym_command_name_token1] = ACTIONS(1454), + [aux_sym_command_name_token2] = ACTIONS(1454), + [aux_sym_command_name_token3] = ACTIONS(1454), + [aux_sym_command_name_token4] = ACTIONS(1454), + [aux_sym_command_name_token5] = ACTIONS(1454), + [aux_sym_command_name_token6] = ACTIONS(1454), + [aux_sym_command_name_token7] = ACTIONS(1454), + [aux_sym_command_name_token8] = ACTIONS(1454), + [aux_sym_command_name_token9] = ACTIONS(1454), + [aux_sym_command_name_token10] = ACTIONS(1454), + [aux_sym_command_name_token11] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [aux_sym_foreach_command_token1] = ACTIONS(1454), + [aux_sym_class_statement_token1] = ACTIONS(1454), + [aux_sym_enum_statement_token1] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1454), + [anon_sym_AT_LPAREN] = ACTIONS(1454), + [anon_sym_AT_LBRACE] = ACTIONS(1454), + }, + [377] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1410), + [sym_hexadecimal_integer_literal] = ACTIONS(1410), + [sym_real_literal] = ACTIONS(1410), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1410), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1410), + [sym_verbatim_string_characters] = ACTIONS(1410), + [sym_verbatim_here_string_characters] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [aux_sym_comparison_operator_token37] = ACTIONS(1410), + [aux_sym_comparison_operator_token50] = ACTIONS(1410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1410), + [anon_sym_DOLLAR_CARET] = ACTIONS(1410), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1410), + [anon_sym_DOLLAR_] = ACTIONS(1410), + [aux_sym_variable_token1] = ACTIONS(1410), + [aux_sym_variable_token2] = ACTIONS(1410), + [sym_braced_variable] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [aux_sym_if_statement_token1] = ACTIONS(1410), + [aux_sym_switch_statement_token1] = ACTIONS(1410), + [aux_sym_foreach_statement_token1] = ACTIONS(1410), + [aux_sym_for_statement_token1] = ACTIONS(1410), + [aux_sym_while_statement_token1] = ACTIONS(1410), + [aux_sym_do_statement_token1] = ACTIONS(1410), + [aux_sym_function_statement_token1] = ACTIONS(1410), + [aux_sym_function_statement_token2] = ACTIONS(1410), + [aux_sym_function_statement_token3] = ACTIONS(1410), + [aux_sym_flow_control_statement_token1] = ACTIONS(1410), + [aux_sym_flow_control_statement_token2] = ACTIONS(1410), + [aux_sym_flow_control_statement_token3] = ACTIONS(1410), + [aux_sym_flow_control_statement_token4] = ACTIONS(1410), + [aux_sym_flow_control_statement_token5] = ACTIONS(1410), + [sym_label] = ACTIONS(1410), + [aux_sym_trap_statement_token1] = ACTIONS(1410), + [aux_sym_try_statement_token1] = ACTIONS(1410), + [aux_sym_data_statement_token1] = ACTIONS(1410), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1410), + [aux_sym_parallel_statement_token1] = ACTIONS(1410), + [aux_sym_sequence_statement_token1] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [aux_sym_command_name_token1] = ACTIONS(1410), + [aux_sym_command_name_token2] = ACTIONS(1410), + [aux_sym_command_name_token3] = ACTIONS(1410), + [aux_sym_command_name_token4] = ACTIONS(1410), + [aux_sym_command_name_token5] = ACTIONS(1410), + [aux_sym_command_name_token6] = ACTIONS(1410), + [aux_sym_command_name_token7] = ACTIONS(1410), + [aux_sym_command_name_token8] = ACTIONS(1410), + [aux_sym_command_name_token9] = ACTIONS(1410), + [aux_sym_command_name_token10] = ACTIONS(1410), + [aux_sym_command_name_token11] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [aux_sym_foreach_command_token1] = ACTIONS(1410), + [aux_sym_class_statement_token1] = ACTIONS(1410), + [aux_sym_enum_statement_token1] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1410), + [anon_sym_AT_LPAREN] = ACTIONS(1410), + [anon_sym_AT_LBRACE] = ACTIONS(1410), + }, + [378] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1464), + [sym_hexadecimal_integer_literal] = ACTIONS(1464), + [sym_real_literal] = ACTIONS(1464), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1464), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1464), + [sym_verbatim_string_characters] = ACTIONS(1464), + [sym_verbatim_here_string_characters] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [aux_sym_comparison_operator_token37] = ACTIONS(1464), + [aux_sym_comparison_operator_token50] = ACTIONS(1464), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1464), + [anon_sym_DOLLAR_CARET] = ACTIONS(1464), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1464), + [anon_sym_DOLLAR_] = ACTIONS(1464), + [aux_sym_variable_token1] = ACTIONS(1464), + [aux_sym_variable_token2] = ACTIONS(1464), + [sym_braced_variable] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [aux_sym_if_statement_token1] = ACTIONS(1464), + [aux_sym_switch_statement_token1] = ACTIONS(1464), + [aux_sym_foreach_statement_token1] = ACTIONS(1464), + [aux_sym_for_statement_token1] = ACTIONS(1464), + [aux_sym_while_statement_token1] = ACTIONS(1464), + [aux_sym_do_statement_token1] = ACTIONS(1464), + [aux_sym_function_statement_token1] = ACTIONS(1464), + [aux_sym_function_statement_token2] = ACTIONS(1464), + [aux_sym_function_statement_token3] = ACTIONS(1464), + [aux_sym_flow_control_statement_token1] = ACTIONS(1464), + [aux_sym_flow_control_statement_token2] = ACTIONS(1464), + [aux_sym_flow_control_statement_token3] = ACTIONS(1464), + [aux_sym_flow_control_statement_token4] = ACTIONS(1464), + [aux_sym_flow_control_statement_token5] = ACTIONS(1464), + [sym_label] = ACTIONS(1464), + [aux_sym_trap_statement_token1] = ACTIONS(1464), + [aux_sym_try_statement_token1] = ACTIONS(1464), + [aux_sym_data_statement_token1] = ACTIONS(1464), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1464), + [aux_sym_parallel_statement_token1] = ACTIONS(1464), + [aux_sym_sequence_statement_token1] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [aux_sym_command_name_token1] = ACTIONS(1464), + [aux_sym_command_name_token2] = ACTIONS(1464), + [aux_sym_command_name_token3] = ACTIONS(1464), + [aux_sym_command_name_token4] = ACTIONS(1464), + [aux_sym_command_name_token5] = ACTIONS(1464), + [aux_sym_command_name_token6] = ACTIONS(1464), + [aux_sym_command_name_token7] = ACTIONS(1464), + [aux_sym_command_name_token8] = ACTIONS(1464), + [aux_sym_command_name_token9] = ACTIONS(1464), + [aux_sym_command_name_token10] = ACTIONS(1464), + [aux_sym_command_name_token11] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [aux_sym_foreach_command_token1] = ACTIONS(1464), + [aux_sym_class_statement_token1] = ACTIONS(1464), + [aux_sym_enum_statement_token1] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1464), + [anon_sym_AT_LPAREN] = ACTIONS(1464), + [anon_sym_AT_LBRACE] = ACTIONS(1464), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1466), + [sym_hexadecimal_integer_literal] = ACTIONS(1466), + [sym_real_literal] = ACTIONS(1466), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1466), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1466), + [sym_verbatim_string_characters] = ACTIONS(1466), + [sym_verbatim_here_string_characters] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [aux_sym_comparison_operator_token37] = ACTIONS(1466), + [aux_sym_comparison_operator_token50] = ACTIONS(1466), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1466), + [anon_sym_DOLLAR_CARET] = ACTIONS(1466), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1466), + [anon_sym_DOLLAR_] = ACTIONS(1466), + [aux_sym_variable_token1] = ACTIONS(1466), + [aux_sym_variable_token2] = ACTIONS(1466), + [sym_braced_variable] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [aux_sym_if_statement_token1] = ACTIONS(1466), + [aux_sym_switch_statement_token1] = ACTIONS(1466), + [aux_sym_foreach_statement_token1] = ACTIONS(1466), + [aux_sym_for_statement_token1] = ACTIONS(1466), + [aux_sym_while_statement_token1] = ACTIONS(1466), + [aux_sym_do_statement_token1] = ACTIONS(1466), + [aux_sym_function_statement_token1] = ACTIONS(1466), + [aux_sym_function_statement_token2] = ACTIONS(1466), + [aux_sym_function_statement_token3] = ACTIONS(1466), + [aux_sym_flow_control_statement_token1] = ACTIONS(1466), + [aux_sym_flow_control_statement_token2] = ACTIONS(1466), + [aux_sym_flow_control_statement_token3] = ACTIONS(1466), + [aux_sym_flow_control_statement_token4] = ACTIONS(1466), + [aux_sym_flow_control_statement_token5] = ACTIONS(1466), + [sym_label] = ACTIONS(1466), + [aux_sym_trap_statement_token1] = ACTIONS(1466), + [aux_sym_try_statement_token1] = ACTIONS(1466), + [aux_sym_data_statement_token1] = ACTIONS(1466), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1466), + [aux_sym_parallel_statement_token1] = ACTIONS(1466), + [aux_sym_sequence_statement_token1] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [aux_sym_command_name_token1] = ACTIONS(1466), + [aux_sym_command_name_token2] = ACTIONS(1466), + [aux_sym_command_name_token3] = ACTIONS(1466), + [aux_sym_command_name_token4] = ACTIONS(1466), + [aux_sym_command_name_token5] = ACTIONS(1466), + [aux_sym_command_name_token6] = ACTIONS(1466), + [aux_sym_command_name_token7] = ACTIONS(1466), + [aux_sym_command_name_token8] = ACTIONS(1466), + [aux_sym_command_name_token9] = ACTIONS(1466), + [aux_sym_command_name_token10] = ACTIONS(1466), + [aux_sym_command_name_token11] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [aux_sym_foreach_command_token1] = ACTIONS(1466), + [aux_sym_class_statement_token1] = ACTIONS(1466), + [aux_sym_enum_statement_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [anon_sym_AT_LPAREN] = ACTIONS(1466), + [anon_sym_AT_LBRACE] = ACTIONS(1466), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1468), + [sym_hexadecimal_integer_literal] = ACTIONS(1468), + [sym_real_literal] = ACTIONS(1468), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1468), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1468), + [sym_verbatim_string_characters] = ACTIONS(1468), + [sym_verbatim_here_string_characters] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [aux_sym_comparison_operator_token37] = ACTIONS(1468), + [aux_sym_comparison_operator_token50] = ACTIONS(1468), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1468), + [anon_sym_DOLLAR_CARET] = ACTIONS(1468), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1468), + [anon_sym_DOLLAR_] = ACTIONS(1468), + [aux_sym_variable_token1] = ACTIONS(1468), + [aux_sym_variable_token2] = ACTIONS(1468), + [sym_braced_variable] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [aux_sym_if_statement_token1] = ACTIONS(1468), + [aux_sym_switch_statement_token1] = ACTIONS(1468), + [aux_sym_foreach_statement_token1] = ACTIONS(1468), + [aux_sym_for_statement_token1] = ACTIONS(1468), + [aux_sym_while_statement_token1] = ACTIONS(1468), + [aux_sym_do_statement_token1] = ACTIONS(1468), + [aux_sym_function_statement_token1] = ACTIONS(1468), + [aux_sym_function_statement_token2] = ACTIONS(1468), + [aux_sym_function_statement_token3] = ACTIONS(1468), + [aux_sym_flow_control_statement_token1] = ACTIONS(1468), + [aux_sym_flow_control_statement_token2] = ACTIONS(1468), + [aux_sym_flow_control_statement_token3] = ACTIONS(1468), + [aux_sym_flow_control_statement_token4] = ACTIONS(1468), + [aux_sym_flow_control_statement_token5] = ACTIONS(1468), + [sym_label] = ACTIONS(1468), + [aux_sym_trap_statement_token1] = ACTIONS(1468), + [aux_sym_try_statement_token1] = ACTIONS(1468), + [aux_sym_data_statement_token1] = ACTIONS(1468), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1468), + [aux_sym_parallel_statement_token1] = ACTIONS(1468), + [aux_sym_sequence_statement_token1] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_command_name_token1] = ACTIONS(1468), + [aux_sym_command_name_token2] = ACTIONS(1468), + [aux_sym_command_name_token3] = ACTIONS(1468), + [aux_sym_command_name_token4] = ACTIONS(1468), + [aux_sym_command_name_token5] = ACTIONS(1468), + [aux_sym_command_name_token6] = ACTIONS(1468), + [aux_sym_command_name_token7] = ACTIONS(1468), + [aux_sym_command_name_token8] = ACTIONS(1468), + [aux_sym_command_name_token9] = ACTIONS(1468), + [aux_sym_command_name_token10] = ACTIONS(1468), + [aux_sym_command_name_token11] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [aux_sym_foreach_command_token1] = ACTIONS(1468), + [aux_sym_class_statement_token1] = ACTIONS(1468), + [aux_sym_enum_statement_token1] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1468), + [anon_sym_AT_LPAREN] = ACTIONS(1468), + [anon_sym_AT_LBRACE] = ACTIONS(1468), + }, + [381] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1490), + [sym_hexadecimal_integer_literal] = ACTIONS(1490), + [sym_real_literal] = ACTIONS(1490), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1490), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1490), + [sym_verbatim_string_characters] = ACTIONS(1490), + [sym_verbatim_here_string_characters] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [aux_sym_comparison_operator_token37] = ACTIONS(1490), + [aux_sym_comparison_operator_token50] = ACTIONS(1490), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1490), + [anon_sym_DOLLAR_CARET] = ACTIONS(1490), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1490), + [anon_sym_DOLLAR_] = ACTIONS(1490), + [aux_sym_variable_token1] = ACTIONS(1490), + [aux_sym_variable_token2] = ACTIONS(1490), + [sym_braced_variable] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [aux_sym_if_statement_token1] = ACTIONS(1490), + [aux_sym_switch_statement_token1] = ACTIONS(1490), + [aux_sym_foreach_statement_token1] = ACTIONS(1490), + [aux_sym_for_statement_token1] = ACTIONS(1490), + [aux_sym_while_statement_token1] = ACTIONS(1490), + [aux_sym_do_statement_token1] = ACTIONS(1490), + [aux_sym_function_statement_token1] = ACTIONS(1490), + [aux_sym_function_statement_token2] = ACTIONS(1490), + [aux_sym_function_statement_token3] = ACTIONS(1490), + [aux_sym_flow_control_statement_token1] = ACTIONS(1490), + [aux_sym_flow_control_statement_token2] = ACTIONS(1490), + [aux_sym_flow_control_statement_token3] = ACTIONS(1490), + [aux_sym_flow_control_statement_token4] = ACTIONS(1490), + [aux_sym_flow_control_statement_token5] = ACTIONS(1490), + [sym_label] = ACTIONS(1490), + [aux_sym_trap_statement_token1] = ACTIONS(1490), + [aux_sym_try_statement_token1] = ACTIONS(1490), + [aux_sym_data_statement_token1] = ACTIONS(1490), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1490), + [aux_sym_parallel_statement_token1] = ACTIONS(1490), + [aux_sym_sequence_statement_token1] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [aux_sym_command_name_token1] = ACTIONS(1490), + [aux_sym_command_name_token2] = ACTIONS(1490), + [aux_sym_command_name_token3] = ACTIONS(1490), + [aux_sym_command_name_token4] = ACTIONS(1490), + [aux_sym_command_name_token5] = ACTIONS(1490), + [aux_sym_command_name_token6] = ACTIONS(1490), + [aux_sym_command_name_token7] = ACTIONS(1490), + [aux_sym_command_name_token8] = ACTIONS(1490), + [aux_sym_command_name_token9] = ACTIONS(1490), + [aux_sym_command_name_token10] = ACTIONS(1490), + [aux_sym_command_name_token11] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [aux_sym_foreach_command_token1] = ACTIONS(1490), + [aux_sym_class_statement_token1] = ACTIONS(1490), + [aux_sym_enum_statement_token1] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1490), + [anon_sym_AT_LPAREN] = ACTIONS(1490), + [anon_sym_AT_LBRACE] = ACTIONS(1490), + }, + [382] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1440), + [sym_hexadecimal_integer_literal] = ACTIONS(1440), + [sym_real_literal] = ACTIONS(1440), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1440), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1440), + [sym_verbatim_string_characters] = ACTIONS(1440), + [sym_verbatim_here_string_characters] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [aux_sym_comparison_operator_token37] = ACTIONS(1440), + [aux_sym_comparison_operator_token50] = ACTIONS(1440), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1440), + [anon_sym_DOLLAR_CARET] = ACTIONS(1440), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1440), + [anon_sym_DOLLAR_] = ACTIONS(1440), + [aux_sym_variable_token1] = ACTIONS(1440), + [aux_sym_variable_token2] = ACTIONS(1440), + [sym_braced_variable] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [aux_sym_if_statement_token1] = ACTIONS(1440), + [aux_sym_switch_statement_token1] = ACTIONS(1440), + [aux_sym_foreach_statement_token1] = ACTIONS(1440), + [aux_sym_for_statement_token1] = ACTIONS(1440), + [aux_sym_while_statement_token1] = ACTIONS(1440), + [aux_sym_do_statement_token1] = ACTIONS(1440), + [aux_sym_function_statement_token1] = ACTIONS(1440), + [aux_sym_function_statement_token2] = ACTIONS(1440), + [aux_sym_function_statement_token3] = ACTIONS(1440), + [aux_sym_flow_control_statement_token1] = ACTIONS(1440), + [aux_sym_flow_control_statement_token2] = ACTIONS(1440), + [aux_sym_flow_control_statement_token3] = ACTIONS(1440), + [aux_sym_flow_control_statement_token4] = ACTIONS(1440), + [aux_sym_flow_control_statement_token5] = ACTIONS(1440), + [sym_label] = ACTIONS(1440), + [aux_sym_trap_statement_token1] = ACTIONS(1440), + [aux_sym_try_statement_token1] = ACTIONS(1440), + [aux_sym_data_statement_token1] = ACTIONS(1440), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1440), + [aux_sym_parallel_statement_token1] = ACTIONS(1440), + [aux_sym_sequence_statement_token1] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [aux_sym_command_name_token1] = ACTIONS(1440), + [aux_sym_command_name_token2] = ACTIONS(1440), + [aux_sym_command_name_token3] = ACTIONS(1440), + [aux_sym_command_name_token4] = ACTIONS(1440), + [aux_sym_command_name_token5] = ACTIONS(1440), + [aux_sym_command_name_token6] = ACTIONS(1440), + [aux_sym_command_name_token7] = ACTIONS(1440), + [aux_sym_command_name_token8] = ACTIONS(1440), + [aux_sym_command_name_token9] = ACTIONS(1440), + [aux_sym_command_name_token10] = ACTIONS(1440), + [aux_sym_command_name_token11] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [aux_sym_foreach_command_token1] = ACTIONS(1440), + [aux_sym_class_statement_token1] = ACTIONS(1440), + [aux_sym_enum_statement_token1] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1440), + [anon_sym_AT_LPAREN] = ACTIONS(1440), + [anon_sym_AT_LBRACE] = ACTIONS(1440), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1470), + [sym_hexadecimal_integer_literal] = ACTIONS(1470), + [sym_real_literal] = ACTIONS(1470), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1470), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1470), + [sym_verbatim_string_characters] = ACTIONS(1470), + [sym_verbatim_here_string_characters] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [aux_sym_comparison_operator_token37] = ACTIONS(1470), + [aux_sym_comparison_operator_token50] = ACTIONS(1470), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1470), + [anon_sym_DOLLAR_CARET] = ACTIONS(1470), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1470), + [anon_sym_DOLLAR_] = ACTIONS(1470), + [aux_sym_variable_token1] = ACTIONS(1470), + [aux_sym_variable_token2] = ACTIONS(1470), + [sym_braced_variable] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [aux_sym_if_statement_token1] = ACTIONS(1470), + [aux_sym_switch_statement_token1] = ACTIONS(1470), + [aux_sym_foreach_statement_token1] = ACTIONS(1470), + [aux_sym_for_statement_token1] = ACTIONS(1470), + [aux_sym_while_statement_token1] = ACTIONS(1470), + [aux_sym_do_statement_token1] = ACTIONS(1470), + [aux_sym_function_statement_token1] = ACTIONS(1470), + [aux_sym_function_statement_token2] = ACTIONS(1470), + [aux_sym_function_statement_token3] = ACTIONS(1470), + [aux_sym_flow_control_statement_token1] = ACTIONS(1470), + [aux_sym_flow_control_statement_token2] = ACTIONS(1470), + [aux_sym_flow_control_statement_token3] = ACTIONS(1470), + [aux_sym_flow_control_statement_token4] = ACTIONS(1470), + [aux_sym_flow_control_statement_token5] = ACTIONS(1470), + [sym_label] = ACTIONS(1470), + [aux_sym_trap_statement_token1] = ACTIONS(1470), + [aux_sym_try_statement_token1] = ACTIONS(1470), + [aux_sym_data_statement_token1] = ACTIONS(1470), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1470), + [aux_sym_parallel_statement_token1] = ACTIONS(1470), + [aux_sym_sequence_statement_token1] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [aux_sym_command_name_token1] = ACTIONS(1470), + [aux_sym_command_name_token2] = ACTIONS(1470), + [aux_sym_command_name_token3] = ACTIONS(1470), + [aux_sym_command_name_token4] = ACTIONS(1470), + [aux_sym_command_name_token5] = ACTIONS(1470), + [aux_sym_command_name_token6] = ACTIONS(1470), + [aux_sym_command_name_token7] = ACTIONS(1470), + [aux_sym_command_name_token8] = ACTIONS(1470), + [aux_sym_command_name_token9] = ACTIONS(1470), + [aux_sym_command_name_token10] = ACTIONS(1470), + [aux_sym_command_name_token11] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [aux_sym_foreach_command_token1] = ACTIONS(1470), + [aux_sym_class_statement_token1] = ACTIONS(1470), + [aux_sym_enum_statement_token1] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1470), + [anon_sym_AT_LPAREN] = ACTIONS(1470), + [anon_sym_AT_LBRACE] = ACTIONS(1470), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1472), + [sym_hexadecimal_integer_literal] = ACTIONS(1472), + [sym_real_literal] = ACTIONS(1472), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1472), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1472), + [sym_verbatim_string_characters] = ACTIONS(1472), + [sym_verbatim_here_string_characters] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [aux_sym_comparison_operator_token37] = ACTIONS(1472), + [aux_sym_comparison_operator_token50] = ACTIONS(1472), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1472), + [anon_sym_DOLLAR_CARET] = ACTIONS(1472), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1472), + [anon_sym_DOLLAR_] = ACTIONS(1472), + [aux_sym_variable_token1] = ACTIONS(1472), + [aux_sym_variable_token2] = ACTIONS(1472), + [sym_braced_variable] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [aux_sym_if_statement_token1] = ACTIONS(1472), + [aux_sym_switch_statement_token1] = ACTIONS(1472), + [aux_sym_foreach_statement_token1] = ACTIONS(1472), + [aux_sym_for_statement_token1] = ACTIONS(1472), + [aux_sym_while_statement_token1] = ACTIONS(1472), + [aux_sym_do_statement_token1] = ACTIONS(1472), + [aux_sym_function_statement_token1] = ACTIONS(1472), + [aux_sym_function_statement_token2] = ACTIONS(1472), + [aux_sym_function_statement_token3] = ACTIONS(1472), + [aux_sym_flow_control_statement_token1] = ACTIONS(1472), + [aux_sym_flow_control_statement_token2] = ACTIONS(1472), + [aux_sym_flow_control_statement_token3] = ACTIONS(1472), + [aux_sym_flow_control_statement_token4] = ACTIONS(1472), + [aux_sym_flow_control_statement_token5] = ACTIONS(1472), + [sym_label] = ACTIONS(1472), + [aux_sym_trap_statement_token1] = ACTIONS(1472), + [aux_sym_try_statement_token1] = ACTIONS(1472), + [aux_sym_data_statement_token1] = ACTIONS(1472), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1472), + [aux_sym_parallel_statement_token1] = ACTIONS(1472), + [aux_sym_sequence_statement_token1] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [aux_sym_command_name_token1] = ACTIONS(1472), + [aux_sym_command_name_token2] = ACTIONS(1472), + [aux_sym_command_name_token3] = ACTIONS(1472), + [aux_sym_command_name_token4] = ACTIONS(1472), + [aux_sym_command_name_token5] = ACTIONS(1472), + [aux_sym_command_name_token6] = ACTIONS(1472), + [aux_sym_command_name_token7] = ACTIONS(1472), + [aux_sym_command_name_token8] = ACTIONS(1472), + [aux_sym_command_name_token9] = ACTIONS(1472), + [aux_sym_command_name_token10] = ACTIONS(1472), + [aux_sym_command_name_token11] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [aux_sym_foreach_command_token1] = ACTIONS(1472), + [aux_sym_class_statement_token1] = ACTIONS(1472), + [aux_sym_enum_statement_token1] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1472), + [anon_sym_AT_LPAREN] = ACTIONS(1472), + [anon_sym_AT_LBRACE] = ACTIONS(1472), + }, + [385] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1434), + [sym_hexadecimal_integer_literal] = ACTIONS(1434), + [sym_real_literal] = ACTIONS(1434), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1434), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1434), + [sym_verbatim_string_characters] = ACTIONS(1434), + [sym_verbatim_here_string_characters] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [aux_sym_comparison_operator_token37] = ACTIONS(1434), + [aux_sym_comparison_operator_token50] = ACTIONS(1434), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1434), + [anon_sym_DOLLAR_CARET] = ACTIONS(1434), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1434), + [anon_sym_DOLLAR_] = ACTIONS(1434), + [aux_sym_variable_token1] = ACTIONS(1434), + [aux_sym_variable_token2] = ACTIONS(1434), + [sym_braced_variable] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [aux_sym_if_statement_token1] = ACTIONS(1434), + [aux_sym_switch_statement_token1] = ACTIONS(1434), + [aux_sym_foreach_statement_token1] = ACTIONS(1434), + [aux_sym_for_statement_token1] = ACTIONS(1434), + [aux_sym_while_statement_token1] = ACTIONS(1434), + [aux_sym_do_statement_token1] = ACTIONS(1434), + [aux_sym_function_statement_token1] = ACTIONS(1434), + [aux_sym_function_statement_token2] = ACTIONS(1434), + [aux_sym_function_statement_token3] = ACTIONS(1434), + [aux_sym_flow_control_statement_token1] = ACTIONS(1434), + [aux_sym_flow_control_statement_token2] = ACTIONS(1434), + [aux_sym_flow_control_statement_token3] = ACTIONS(1434), + [aux_sym_flow_control_statement_token4] = ACTIONS(1434), + [aux_sym_flow_control_statement_token5] = ACTIONS(1434), + [sym_label] = ACTIONS(1434), + [aux_sym_trap_statement_token1] = ACTIONS(1434), + [aux_sym_try_statement_token1] = ACTIONS(1434), + [aux_sym_data_statement_token1] = ACTIONS(1434), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1434), + [aux_sym_parallel_statement_token1] = ACTIONS(1434), + [aux_sym_sequence_statement_token1] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [aux_sym_command_name_token1] = ACTIONS(1434), + [aux_sym_command_name_token2] = ACTIONS(1434), + [aux_sym_command_name_token3] = ACTIONS(1434), + [aux_sym_command_name_token4] = ACTIONS(1434), + [aux_sym_command_name_token5] = ACTIONS(1434), + [aux_sym_command_name_token6] = ACTIONS(1434), + [aux_sym_command_name_token7] = ACTIONS(1434), + [aux_sym_command_name_token8] = ACTIONS(1434), + [aux_sym_command_name_token9] = ACTIONS(1434), + [aux_sym_command_name_token10] = ACTIONS(1434), + [aux_sym_command_name_token11] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [aux_sym_foreach_command_token1] = ACTIONS(1434), + [aux_sym_class_statement_token1] = ACTIONS(1434), + [aux_sym_enum_statement_token1] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1434), + [anon_sym_AT_LPAREN] = ACTIONS(1434), + [anon_sym_AT_LBRACE] = ACTIONS(1434), + }, + [386] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1416), + [sym_hexadecimal_integer_literal] = ACTIONS(1416), + [sym_real_literal] = ACTIONS(1416), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1416), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1416), + [sym_verbatim_string_characters] = ACTIONS(1416), + [sym_verbatim_here_string_characters] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [aux_sym_comparison_operator_token37] = ACTIONS(1416), + [aux_sym_comparison_operator_token50] = ACTIONS(1416), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1416), + [anon_sym_DOLLAR_CARET] = ACTIONS(1416), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1416), + [anon_sym_DOLLAR_] = ACTIONS(1416), + [aux_sym_variable_token1] = ACTIONS(1416), + [aux_sym_variable_token2] = ACTIONS(1416), + [sym_braced_variable] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [aux_sym_if_statement_token1] = ACTIONS(1416), + [aux_sym_switch_statement_token1] = ACTIONS(1416), + [aux_sym_foreach_statement_token1] = ACTIONS(1416), + [aux_sym_for_statement_token1] = ACTIONS(1416), + [aux_sym_while_statement_token1] = ACTIONS(1416), + [aux_sym_do_statement_token1] = ACTIONS(1416), + [aux_sym_function_statement_token1] = ACTIONS(1416), + [aux_sym_function_statement_token2] = ACTIONS(1416), + [aux_sym_function_statement_token3] = ACTIONS(1416), + [aux_sym_flow_control_statement_token1] = ACTIONS(1416), + [aux_sym_flow_control_statement_token2] = ACTIONS(1416), + [aux_sym_flow_control_statement_token3] = ACTIONS(1416), + [aux_sym_flow_control_statement_token4] = ACTIONS(1416), + [aux_sym_flow_control_statement_token5] = ACTIONS(1416), + [sym_label] = ACTIONS(1416), + [aux_sym_trap_statement_token1] = ACTIONS(1416), + [aux_sym_try_statement_token1] = ACTIONS(1416), + [aux_sym_data_statement_token1] = ACTIONS(1416), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1416), + [aux_sym_parallel_statement_token1] = ACTIONS(1416), + [aux_sym_sequence_statement_token1] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [aux_sym_command_name_token1] = ACTIONS(1416), + [aux_sym_command_name_token2] = ACTIONS(1416), + [aux_sym_command_name_token3] = ACTIONS(1416), + [aux_sym_command_name_token4] = ACTIONS(1416), + [aux_sym_command_name_token5] = ACTIONS(1416), + [aux_sym_command_name_token6] = ACTIONS(1416), + [aux_sym_command_name_token7] = ACTIONS(1416), + [aux_sym_command_name_token8] = ACTIONS(1416), + [aux_sym_command_name_token9] = ACTIONS(1416), + [aux_sym_command_name_token10] = ACTIONS(1416), + [aux_sym_command_name_token11] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [aux_sym_foreach_command_token1] = ACTIONS(1416), + [aux_sym_class_statement_token1] = ACTIONS(1416), + [aux_sym_enum_statement_token1] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1416), + [anon_sym_AT_LPAREN] = ACTIONS(1416), + [anon_sym_AT_LBRACE] = ACTIONS(1416), + }, + [387] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1420), + [sym_hexadecimal_integer_literal] = ACTIONS(1420), + [sym_real_literal] = ACTIONS(1420), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1420), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1420), + [sym_verbatim_string_characters] = ACTIONS(1420), + [sym_verbatim_here_string_characters] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [aux_sym_comparison_operator_token37] = ACTIONS(1420), + [aux_sym_comparison_operator_token50] = ACTIONS(1420), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1420), + [anon_sym_DOLLAR_CARET] = ACTIONS(1420), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1420), + [anon_sym_DOLLAR_] = ACTIONS(1420), + [aux_sym_variable_token1] = ACTIONS(1420), + [aux_sym_variable_token2] = ACTIONS(1420), + [sym_braced_variable] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [aux_sym_if_statement_token1] = ACTIONS(1420), + [aux_sym_switch_statement_token1] = ACTIONS(1420), + [aux_sym_foreach_statement_token1] = ACTIONS(1420), + [aux_sym_for_statement_token1] = ACTIONS(1420), + [aux_sym_while_statement_token1] = ACTIONS(1420), + [aux_sym_do_statement_token1] = ACTIONS(1420), + [aux_sym_function_statement_token1] = ACTIONS(1420), + [aux_sym_function_statement_token2] = ACTIONS(1420), + [aux_sym_function_statement_token3] = ACTIONS(1420), + [aux_sym_flow_control_statement_token1] = ACTIONS(1420), + [aux_sym_flow_control_statement_token2] = ACTIONS(1420), + [aux_sym_flow_control_statement_token3] = ACTIONS(1420), + [aux_sym_flow_control_statement_token4] = ACTIONS(1420), + [aux_sym_flow_control_statement_token5] = ACTIONS(1420), + [sym_label] = ACTIONS(1420), + [aux_sym_trap_statement_token1] = ACTIONS(1420), + [aux_sym_try_statement_token1] = ACTIONS(1420), + [aux_sym_data_statement_token1] = ACTIONS(1420), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1420), + [aux_sym_parallel_statement_token1] = ACTIONS(1420), + [aux_sym_sequence_statement_token1] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [aux_sym_command_name_token1] = ACTIONS(1420), + [aux_sym_command_name_token2] = ACTIONS(1420), + [aux_sym_command_name_token3] = ACTIONS(1420), + [aux_sym_command_name_token4] = ACTIONS(1420), + [aux_sym_command_name_token5] = ACTIONS(1420), + [aux_sym_command_name_token6] = ACTIONS(1420), + [aux_sym_command_name_token7] = ACTIONS(1420), + [aux_sym_command_name_token8] = ACTIONS(1420), + [aux_sym_command_name_token9] = ACTIONS(1420), + [aux_sym_command_name_token10] = ACTIONS(1420), + [aux_sym_command_name_token11] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [aux_sym_foreach_command_token1] = ACTIONS(1420), + [aux_sym_class_statement_token1] = ACTIONS(1420), + [aux_sym_enum_statement_token1] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1420), + [anon_sym_AT_LPAREN] = ACTIONS(1420), + [anon_sym_AT_LBRACE] = ACTIONS(1420), + }, + [388] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1368), + [sym_hexadecimal_integer_literal] = ACTIONS(1368), + [sym_real_literal] = ACTIONS(1368), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1368), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1368), + [sym_verbatim_string_characters] = ACTIONS(1368), + [sym_verbatim_here_string_characters] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [aux_sym_comparison_operator_token37] = ACTIONS(1368), + [aux_sym_comparison_operator_token50] = ACTIONS(1368), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1368), + [anon_sym_DOLLAR_CARET] = ACTIONS(1368), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_] = ACTIONS(1368), + [aux_sym_variable_token1] = ACTIONS(1368), + [aux_sym_variable_token2] = ACTIONS(1368), + [sym_braced_variable] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [aux_sym_if_statement_token1] = ACTIONS(1368), + [aux_sym_switch_statement_token1] = ACTIONS(1368), + [aux_sym_foreach_statement_token1] = ACTIONS(1368), + [aux_sym_for_statement_token1] = ACTIONS(1368), + [aux_sym_while_statement_token1] = ACTIONS(1368), + [aux_sym_do_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token1] = ACTIONS(1368), + [aux_sym_function_statement_token2] = ACTIONS(1368), + [aux_sym_function_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token1] = ACTIONS(1368), + [aux_sym_flow_control_statement_token2] = ACTIONS(1368), + [aux_sym_flow_control_statement_token3] = ACTIONS(1368), + [aux_sym_flow_control_statement_token4] = ACTIONS(1368), + [aux_sym_flow_control_statement_token5] = ACTIONS(1368), + [sym_label] = ACTIONS(1368), + [aux_sym_trap_statement_token1] = ACTIONS(1368), + [aux_sym_try_statement_token1] = ACTIONS(1368), + [aux_sym_data_statement_token1] = ACTIONS(1368), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1368), + [aux_sym_parallel_statement_token1] = ACTIONS(1368), + [aux_sym_sequence_statement_token1] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [aux_sym_command_name_token1] = ACTIONS(1368), + [aux_sym_command_name_token2] = ACTIONS(1368), + [aux_sym_command_name_token3] = ACTIONS(1368), + [aux_sym_command_name_token4] = ACTIONS(1368), + [aux_sym_command_name_token5] = ACTIONS(1368), + [aux_sym_command_name_token6] = ACTIONS(1368), + [aux_sym_command_name_token7] = ACTIONS(1368), + [aux_sym_command_name_token8] = ACTIONS(1368), + [aux_sym_command_name_token9] = ACTIONS(1368), + [aux_sym_command_name_token10] = ACTIONS(1368), + [aux_sym_command_name_token11] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [aux_sym_foreach_command_token1] = ACTIONS(1368), + [aux_sym_class_statement_token1] = ACTIONS(1368), + [aux_sym_enum_statement_token1] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LPAREN] = ACTIONS(1368), + [anon_sym_AT_LBRACE] = ACTIONS(1368), + }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1438), + [sym_hexadecimal_integer_literal] = ACTIONS(1438), + [sym_real_literal] = ACTIONS(1438), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1438), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1438), + [sym_verbatim_string_characters] = ACTIONS(1438), + [sym_verbatim_here_string_characters] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [aux_sym_comparison_operator_token37] = ACTIONS(1438), + [aux_sym_comparison_operator_token50] = ACTIONS(1438), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1438), + [anon_sym_DOLLAR_CARET] = ACTIONS(1438), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1438), + [anon_sym_DOLLAR_] = ACTIONS(1438), + [aux_sym_variable_token1] = ACTIONS(1438), + [aux_sym_variable_token2] = ACTIONS(1438), + [sym_braced_variable] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [aux_sym_if_statement_token1] = ACTIONS(1438), + [aux_sym_switch_statement_token1] = ACTIONS(1438), + [aux_sym_foreach_statement_token1] = ACTIONS(1438), + [aux_sym_for_statement_token1] = ACTIONS(1438), + [aux_sym_while_statement_token1] = ACTIONS(1438), + [aux_sym_do_statement_token1] = ACTIONS(1438), + [aux_sym_function_statement_token1] = ACTIONS(1438), + [aux_sym_function_statement_token2] = ACTIONS(1438), + [aux_sym_function_statement_token3] = ACTIONS(1438), + [aux_sym_flow_control_statement_token1] = ACTIONS(1438), + [aux_sym_flow_control_statement_token2] = ACTIONS(1438), + [aux_sym_flow_control_statement_token3] = ACTIONS(1438), + [aux_sym_flow_control_statement_token4] = ACTIONS(1438), + [aux_sym_flow_control_statement_token5] = ACTIONS(1438), + [sym_label] = ACTIONS(1438), + [aux_sym_trap_statement_token1] = ACTIONS(1438), + [aux_sym_try_statement_token1] = ACTIONS(1438), + [aux_sym_data_statement_token1] = ACTIONS(1438), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1438), + [aux_sym_parallel_statement_token1] = ACTIONS(1438), + [aux_sym_sequence_statement_token1] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [aux_sym_command_name_token1] = ACTIONS(1438), + [aux_sym_command_name_token2] = ACTIONS(1438), + [aux_sym_command_name_token3] = ACTIONS(1438), + [aux_sym_command_name_token4] = ACTIONS(1438), + [aux_sym_command_name_token5] = ACTIONS(1438), + [aux_sym_command_name_token6] = ACTIONS(1438), + [aux_sym_command_name_token7] = ACTIONS(1438), + [aux_sym_command_name_token8] = ACTIONS(1438), + [aux_sym_command_name_token9] = ACTIONS(1438), + [aux_sym_command_name_token10] = ACTIONS(1438), + [aux_sym_command_name_token11] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [aux_sym_foreach_command_token1] = ACTIONS(1438), + [aux_sym_class_statement_token1] = ACTIONS(1438), + [aux_sym_enum_statement_token1] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1438), + [anon_sym_AT_LPAREN] = ACTIONS(1438), + [anon_sym_AT_LBRACE] = ACTIONS(1438), + }, + [390] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1476), + [sym_hexadecimal_integer_literal] = ACTIONS(1476), + [sym_real_literal] = ACTIONS(1476), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1476), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1476), + [sym_verbatim_string_characters] = ACTIONS(1476), + [sym_verbatim_here_string_characters] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [aux_sym_comparison_operator_token37] = ACTIONS(1476), + [aux_sym_comparison_operator_token50] = ACTIONS(1476), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1476), + [anon_sym_DOLLAR_CARET] = ACTIONS(1476), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1476), + [anon_sym_DOLLAR_] = ACTIONS(1476), + [aux_sym_variable_token1] = ACTIONS(1476), + [aux_sym_variable_token2] = ACTIONS(1476), + [sym_braced_variable] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [aux_sym_if_statement_token1] = ACTIONS(1476), + [aux_sym_switch_statement_token1] = ACTIONS(1476), + [aux_sym_foreach_statement_token1] = ACTIONS(1476), + [aux_sym_for_statement_token1] = ACTIONS(1476), + [aux_sym_while_statement_token1] = ACTIONS(1476), + [aux_sym_do_statement_token1] = ACTIONS(1476), + [aux_sym_function_statement_token1] = ACTIONS(1476), + [aux_sym_function_statement_token2] = ACTIONS(1476), + [aux_sym_function_statement_token3] = ACTIONS(1476), + [aux_sym_flow_control_statement_token1] = ACTIONS(1476), + [aux_sym_flow_control_statement_token2] = ACTIONS(1476), + [aux_sym_flow_control_statement_token3] = ACTIONS(1476), + [aux_sym_flow_control_statement_token4] = ACTIONS(1476), + [aux_sym_flow_control_statement_token5] = ACTIONS(1476), + [sym_label] = ACTIONS(1476), + [aux_sym_trap_statement_token1] = ACTIONS(1476), + [aux_sym_try_statement_token1] = ACTIONS(1476), + [aux_sym_data_statement_token1] = ACTIONS(1476), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1476), + [aux_sym_parallel_statement_token1] = ACTIONS(1476), + [aux_sym_sequence_statement_token1] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [aux_sym_command_name_token1] = ACTIONS(1476), + [aux_sym_command_name_token2] = ACTIONS(1476), + [aux_sym_command_name_token3] = ACTIONS(1476), + [aux_sym_command_name_token4] = ACTIONS(1476), + [aux_sym_command_name_token5] = ACTIONS(1476), + [aux_sym_command_name_token6] = ACTIONS(1476), + [aux_sym_command_name_token7] = ACTIONS(1476), + [aux_sym_command_name_token8] = ACTIONS(1476), + [aux_sym_command_name_token9] = ACTIONS(1476), + [aux_sym_command_name_token10] = ACTIONS(1476), + [aux_sym_command_name_token11] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [aux_sym_foreach_command_token1] = ACTIONS(1476), + [aux_sym_class_statement_token1] = ACTIONS(1476), + [aux_sym_enum_statement_token1] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1476), + [anon_sym_AT_LPAREN] = ACTIONS(1476), + [anon_sym_AT_LBRACE] = ACTIONS(1476), + }, + [391] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1478), + [sym_hexadecimal_integer_literal] = ACTIONS(1478), + [sym_real_literal] = ACTIONS(1478), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1478), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1478), + [sym_verbatim_string_characters] = ACTIONS(1478), + [sym_verbatim_here_string_characters] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [aux_sym_comparison_operator_token37] = ACTIONS(1478), + [aux_sym_comparison_operator_token50] = ACTIONS(1478), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1478), + [anon_sym_DOLLAR_CARET] = ACTIONS(1478), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1478), + [anon_sym_DOLLAR_] = ACTIONS(1478), + [aux_sym_variable_token1] = ACTIONS(1478), + [aux_sym_variable_token2] = ACTIONS(1478), + [sym_braced_variable] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [aux_sym_if_statement_token1] = ACTIONS(1478), + [aux_sym_switch_statement_token1] = ACTIONS(1478), + [aux_sym_foreach_statement_token1] = ACTIONS(1478), + [aux_sym_for_statement_token1] = ACTIONS(1478), + [aux_sym_while_statement_token1] = ACTIONS(1478), + [aux_sym_do_statement_token1] = ACTIONS(1478), + [aux_sym_function_statement_token1] = ACTIONS(1478), + [aux_sym_function_statement_token2] = ACTIONS(1478), + [aux_sym_function_statement_token3] = ACTIONS(1478), + [aux_sym_flow_control_statement_token1] = ACTIONS(1478), + [aux_sym_flow_control_statement_token2] = ACTIONS(1478), + [aux_sym_flow_control_statement_token3] = ACTIONS(1478), + [aux_sym_flow_control_statement_token4] = ACTIONS(1478), + [aux_sym_flow_control_statement_token5] = ACTIONS(1478), + [sym_label] = ACTIONS(1478), + [aux_sym_trap_statement_token1] = ACTIONS(1478), + [aux_sym_try_statement_token1] = ACTIONS(1478), + [aux_sym_data_statement_token1] = ACTIONS(1478), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1478), + [aux_sym_parallel_statement_token1] = ACTIONS(1478), + [aux_sym_sequence_statement_token1] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [aux_sym_command_name_token1] = ACTIONS(1478), + [aux_sym_command_name_token2] = ACTIONS(1478), + [aux_sym_command_name_token3] = ACTIONS(1478), + [aux_sym_command_name_token4] = ACTIONS(1478), + [aux_sym_command_name_token5] = ACTIONS(1478), + [aux_sym_command_name_token6] = ACTIONS(1478), + [aux_sym_command_name_token7] = ACTIONS(1478), + [aux_sym_command_name_token8] = ACTIONS(1478), + [aux_sym_command_name_token9] = ACTIONS(1478), + [aux_sym_command_name_token10] = ACTIONS(1478), + [aux_sym_command_name_token11] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [aux_sym_foreach_command_token1] = ACTIONS(1478), + [aux_sym_class_statement_token1] = ACTIONS(1478), + [aux_sym_enum_statement_token1] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1478), + [anon_sym_AT_LPAREN] = ACTIONS(1478), + [anon_sym_AT_LBRACE] = ACTIONS(1478), + }, + [392] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1422), + [sym_hexadecimal_integer_literal] = ACTIONS(1422), + [sym_real_literal] = ACTIONS(1422), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1422), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1422), + [sym_verbatim_string_characters] = ACTIONS(1422), + [sym_verbatim_here_string_characters] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [aux_sym_comparison_operator_token37] = ACTIONS(1422), + [aux_sym_comparison_operator_token50] = ACTIONS(1422), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1422), + [anon_sym_DOLLAR_CARET] = ACTIONS(1422), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1422), + [anon_sym_DOLLAR_] = ACTIONS(1422), + [aux_sym_variable_token1] = ACTIONS(1422), + [aux_sym_variable_token2] = ACTIONS(1422), + [sym_braced_variable] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_COMMA] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [aux_sym_if_statement_token1] = ACTIONS(1422), + [aux_sym_switch_statement_token1] = ACTIONS(1422), + [aux_sym_foreach_statement_token1] = ACTIONS(1422), + [aux_sym_for_statement_token1] = ACTIONS(1422), + [aux_sym_while_statement_token1] = ACTIONS(1422), + [aux_sym_do_statement_token1] = ACTIONS(1422), + [aux_sym_function_statement_token1] = ACTIONS(1422), + [aux_sym_function_statement_token2] = ACTIONS(1422), + [aux_sym_function_statement_token3] = ACTIONS(1422), + [aux_sym_flow_control_statement_token1] = ACTIONS(1422), + [aux_sym_flow_control_statement_token2] = ACTIONS(1422), + [aux_sym_flow_control_statement_token3] = ACTIONS(1422), + [aux_sym_flow_control_statement_token4] = ACTIONS(1422), + [aux_sym_flow_control_statement_token5] = ACTIONS(1422), + [sym_label] = ACTIONS(1422), + [aux_sym_trap_statement_token1] = ACTIONS(1422), + [aux_sym_try_statement_token1] = ACTIONS(1422), + [aux_sym_data_statement_token1] = ACTIONS(1422), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1422), + [aux_sym_parallel_statement_token1] = ACTIONS(1422), + [aux_sym_sequence_statement_token1] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [aux_sym_command_name_token1] = ACTIONS(1422), + [aux_sym_command_name_token2] = ACTIONS(1422), + [aux_sym_command_name_token3] = ACTIONS(1422), + [aux_sym_command_name_token4] = ACTIONS(1422), + [aux_sym_command_name_token5] = ACTIONS(1422), + [aux_sym_command_name_token6] = ACTIONS(1422), + [aux_sym_command_name_token7] = ACTIONS(1422), + [aux_sym_command_name_token8] = ACTIONS(1422), + [aux_sym_command_name_token9] = ACTIONS(1422), + [aux_sym_command_name_token10] = ACTIONS(1422), + [aux_sym_command_name_token11] = ACTIONS(1422), + [anon_sym_PERCENT] = ACTIONS(1422), + [aux_sym_foreach_command_token1] = ACTIONS(1422), + [aux_sym_class_statement_token1] = ACTIONS(1422), + [aux_sym_enum_statement_token1] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1422), + [anon_sym_AT_LPAREN] = ACTIONS(1422), + [anon_sym_AT_LBRACE] = ACTIONS(1422), + }, + [393] = { + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1480), + [sym_hexadecimal_integer_literal] = ACTIONS(1480), + [sym_real_literal] = ACTIONS(1480), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1480), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1480), + [sym_verbatim_string_characters] = ACTIONS(1480), + [sym_verbatim_here_string_characters] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [aux_sym_comparison_operator_token37] = ACTIONS(1480), + [aux_sym_comparison_operator_token50] = ACTIONS(1480), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1480), + [anon_sym_DOLLAR_CARET] = ACTIONS(1480), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1480), + [anon_sym_DOLLAR_] = ACTIONS(1480), + [aux_sym_variable_token1] = ACTIONS(1480), + [aux_sym_variable_token2] = ACTIONS(1480), + [sym_braced_variable] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [aux_sym_if_statement_token1] = ACTIONS(1480), + [aux_sym_switch_statement_token1] = ACTIONS(1480), + [aux_sym_foreach_statement_token1] = ACTIONS(1480), + [aux_sym_for_statement_token1] = ACTIONS(1480), + [aux_sym_while_statement_token1] = ACTIONS(1480), + [aux_sym_do_statement_token1] = ACTIONS(1480), + [aux_sym_function_statement_token1] = ACTIONS(1480), + [aux_sym_function_statement_token2] = ACTIONS(1480), + [aux_sym_function_statement_token3] = ACTIONS(1480), + [aux_sym_flow_control_statement_token1] = ACTIONS(1480), + [aux_sym_flow_control_statement_token2] = ACTIONS(1480), + [aux_sym_flow_control_statement_token3] = ACTIONS(1480), + [aux_sym_flow_control_statement_token4] = ACTIONS(1480), + [aux_sym_flow_control_statement_token5] = ACTIONS(1480), + [sym_label] = ACTIONS(1480), + [aux_sym_trap_statement_token1] = ACTIONS(1480), + [aux_sym_try_statement_token1] = ACTIONS(1480), + [aux_sym_data_statement_token1] = ACTIONS(1480), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1480), + [aux_sym_parallel_statement_token1] = ACTIONS(1480), + [aux_sym_sequence_statement_token1] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [aux_sym_command_name_token1] = ACTIONS(1480), + [aux_sym_command_name_token2] = ACTIONS(1480), + [aux_sym_command_name_token3] = ACTIONS(1480), + [aux_sym_command_name_token4] = ACTIONS(1480), + [aux_sym_command_name_token5] = ACTIONS(1480), + [aux_sym_command_name_token6] = ACTIONS(1480), + [aux_sym_command_name_token7] = ACTIONS(1480), + [aux_sym_command_name_token8] = ACTIONS(1480), + [aux_sym_command_name_token9] = ACTIONS(1480), + [aux_sym_command_name_token10] = ACTIONS(1480), + [aux_sym_command_name_token11] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [aux_sym_foreach_command_token1] = ACTIONS(1480), + [aux_sym_class_statement_token1] = ACTIONS(1480), + [aux_sym_enum_statement_token1] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1480), + [anon_sym_AT_LPAREN] = ACTIONS(1480), + [anon_sym_AT_LBRACE] = ACTIONS(1480), + }, + [394] = { + [ts_builtin_sym_end] = ACTIONS(1534), [sym_comment] = ACTIONS(3), [sym_decimal_integer_literal] = ACTIONS(1426), [sym_hexadecimal_integer_literal] = ACTIONS(1426), @@ -62546,14 +66970,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_label] = ACTIONS(1426), [aux_sym_trap_statement_token1] = ACTIONS(1426), [aux_sym_try_statement_token1] = ACTIONS(1426), - [aux_sym_catch_clause_token1] = ACTIONS(1371), - [aux_sym_finally_clause_token1] = ACTIONS(1426), [aux_sym_data_statement_token1] = ACTIONS(1426), [aux_sym_inlinescript_statement_token1] = ACTIONS(1426), [aux_sym_parallel_statement_token1] = ACTIONS(1426), [aux_sym_sequence_statement_token1] = ACTIONS(1426), [anon_sym_AMP] = ACTIONS(1426), [aux_sym_command_name_token1] = ACTIONS(1426), + [aux_sym_command_name_token2] = ACTIONS(1426), + [aux_sym_command_name_token3] = ACTIONS(1426), + [aux_sym_command_name_token4] = ACTIONS(1426), + [aux_sym_command_name_token5] = ACTIONS(1426), + [aux_sym_command_name_token6] = ACTIONS(1426), + [aux_sym_command_name_token7] = ACTIONS(1426), + [aux_sym_command_name_token8] = ACTIONS(1426), + [aux_sym_command_name_token9] = ACTIONS(1426), + [aux_sym_command_name_token10] = ACTIONS(1426), + [aux_sym_command_name_token11] = ACTIONS(1426), [anon_sym_PERCENT] = ACTIONS(1426), [aux_sym_foreach_command_token1] = ACTIONS(1426), [aux_sym_class_statement_token1] = ACTIONS(1426), @@ -62569,320 +67001,2606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(1426), [anon_sym_AT_LBRACE] = ACTIONS(1426), }, - [362] = { - [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(829), - [aux_sym_comparison_operator_token2] = ACTIONS(829), - [aux_sym_comparison_operator_token3] = ACTIONS(829), - [aux_sym_comparison_operator_token4] = ACTIONS(829), - [aux_sym_comparison_operator_token5] = ACTIONS(829), - [aux_sym_comparison_operator_token6] = ACTIONS(829), - [aux_sym_comparison_operator_token7] = ACTIONS(829), - [aux_sym_comparison_operator_token8] = ACTIONS(829), - [aux_sym_comparison_operator_token9] = ACTIONS(829), - [aux_sym_comparison_operator_token10] = ACTIONS(829), - [aux_sym_comparison_operator_token11] = ACTIONS(829), - [aux_sym_comparison_operator_token12] = ACTIONS(829), - [aux_sym_comparison_operator_token13] = ACTIONS(829), - [aux_sym_comparison_operator_token14] = ACTIONS(829), - [aux_sym_comparison_operator_token15] = ACTIONS(829), - [aux_sym_comparison_operator_token16] = ACTIONS(829), - [aux_sym_comparison_operator_token17] = ACTIONS(829), - [aux_sym_comparison_operator_token18] = ACTIONS(829), - [aux_sym_comparison_operator_token19] = ACTIONS(829), - [aux_sym_comparison_operator_token20] = ACTIONS(829), - [aux_sym_comparison_operator_token21] = ACTIONS(829), - [aux_sym_comparison_operator_token22] = ACTIONS(829), - [aux_sym_comparison_operator_token23] = ACTIONS(829), - [aux_sym_comparison_operator_token24] = ACTIONS(829), - [aux_sym_comparison_operator_token25] = ACTIONS(829), - [aux_sym_comparison_operator_token26] = ACTIONS(829), - [aux_sym_comparison_operator_token27] = ACTIONS(829), - [aux_sym_comparison_operator_token28] = ACTIONS(831), - [aux_sym_comparison_operator_token29] = ACTIONS(829), - [aux_sym_comparison_operator_token30] = ACTIONS(829), - [aux_sym_comparison_operator_token31] = ACTIONS(829), - [aux_sym_comparison_operator_token32] = ACTIONS(829), - [aux_sym_comparison_operator_token33] = ACTIONS(829), - [aux_sym_comparison_operator_token34] = ACTIONS(831), - [aux_sym_comparison_operator_token35] = ACTIONS(829), - [aux_sym_comparison_operator_token36] = ACTIONS(829), - [aux_sym_comparison_operator_token37] = ACTIONS(829), - [aux_sym_comparison_operator_token38] = ACTIONS(829), - [aux_sym_comparison_operator_token39] = ACTIONS(829), - [aux_sym_comparison_operator_token40] = ACTIONS(829), - [aux_sym_comparison_operator_token41] = ACTIONS(829), - [aux_sym_comparison_operator_token42] = ACTIONS(829), - [aux_sym_comparison_operator_token43] = ACTIONS(829), - [aux_sym_comparison_operator_token44] = ACTIONS(829), - [aux_sym_comparison_operator_token45] = ACTIONS(829), - [aux_sym_comparison_operator_token46] = ACTIONS(829), - [aux_sym_comparison_operator_token47] = ACTIONS(829), - [aux_sym_comparison_operator_token48] = ACTIONS(829), - [aux_sym_comparison_operator_token49] = ACTIONS(829), - [aux_sym_comparison_operator_token50] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(1451), - [aux_sym_logical_expression_token1] = ACTIONS(829), - [aux_sym_logical_expression_token2] = ACTIONS(829), - [aux_sym_logical_expression_token3] = ACTIONS(829), - [aux_sym_bitwise_expression_token1] = ACTIONS(829), - [aux_sym_bitwise_expression_token2] = ACTIONS(829), - [aux_sym_bitwise_expression_token3] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_BSLASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - }, - [363] = { + [395] = { + [ts_builtin_sym_end] = ACTIONS(1536), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1343), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), - [sym__statement_terminator] = ACTIONS(1349), - }, - [364] = { - [sym_elseif_clause] = STATE(357), - [aux_sym_elseif_clauses_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1453), + [sym_decimal_integer_literal] = ACTIONS(1482), + [sym_hexadecimal_integer_literal] = ACTIONS(1482), + [sym_real_literal] = ACTIONS(1482), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1482), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1482), + [sym_verbatim_string_characters] = ACTIONS(1482), + [sym_verbatim_here_string_characters] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [aux_sym_comparison_operator_token37] = ACTIONS(1482), + [aux_sym_comparison_operator_token50] = ACTIONS(1482), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1482), + [anon_sym_DOLLAR_CARET] = ACTIONS(1482), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1482), + [anon_sym_DOLLAR_] = ACTIONS(1482), + [aux_sym_variable_token1] = ACTIONS(1482), + [aux_sym_variable_token2] = ACTIONS(1482), + [sym_braced_variable] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [aux_sym_if_statement_token1] = ACTIONS(1482), + [aux_sym_switch_statement_token1] = ACTIONS(1482), + [aux_sym_foreach_statement_token1] = ACTIONS(1482), + [aux_sym_for_statement_token1] = ACTIONS(1482), + [aux_sym_while_statement_token1] = ACTIONS(1482), + [aux_sym_do_statement_token1] = ACTIONS(1482), + [aux_sym_function_statement_token1] = ACTIONS(1482), + [aux_sym_function_statement_token2] = ACTIONS(1482), + [aux_sym_function_statement_token3] = ACTIONS(1482), + [aux_sym_flow_control_statement_token1] = ACTIONS(1482), + [aux_sym_flow_control_statement_token2] = ACTIONS(1482), + [aux_sym_flow_control_statement_token3] = ACTIONS(1482), + [aux_sym_flow_control_statement_token4] = ACTIONS(1482), + [aux_sym_flow_control_statement_token5] = ACTIONS(1482), + [sym_label] = ACTIONS(1482), + [aux_sym_trap_statement_token1] = ACTIONS(1482), + [aux_sym_try_statement_token1] = ACTIONS(1482), + [aux_sym_data_statement_token1] = ACTIONS(1482), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1482), + [aux_sym_parallel_statement_token1] = ACTIONS(1482), + [aux_sym_sequence_statement_token1] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [aux_sym_command_name_token1] = ACTIONS(1482), + [aux_sym_command_name_token2] = ACTIONS(1482), + [aux_sym_command_name_token3] = ACTIONS(1482), + [aux_sym_command_name_token4] = ACTIONS(1482), + [aux_sym_command_name_token5] = ACTIONS(1482), + [aux_sym_command_name_token6] = ACTIONS(1482), + [aux_sym_command_name_token7] = ACTIONS(1482), + [aux_sym_command_name_token8] = ACTIONS(1482), + [aux_sym_command_name_token9] = ACTIONS(1482), + [aux_sym_command_name_token10] = ACTIONS(1482), + [aux_sym_command_name_token11] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [aux_sym_foreach_command_token1] = ACTIONS(1482), + [aux_sym_class_statement_token1] = ACTIONS(1482), + [aux_sym_enum_statement_token1] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1482), + [anon_sym_AT_LPAREN] = ACTIONS(1482), + [anon_sym_AT_LBRACE] = ACTIONS(1482), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(1538), [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1375), - [sym_hexadecimal_integer_literal] = ACTIONS(1375), - [sym_real_literal] = ACTIONS(1375), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1375), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1375), - [sym_verbatim_string_characters] = ACTIONS(1375), - [sym_verbatim_here_string_characters] = ACTIONS(1375), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [aux_sym_comparison_operator_token37] = ACTIONS(1375), - [aux_sym_comparison_operator_token50] = ACTIONS(1375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1375), - [anon_sym_DOLLAR_CARET] = ACTIONS(1375), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1375), - [anon_sym_DOLLAR_] = ACTIONS(1375), - [aux_sym_variable_token1] = ACTIONS(1375), - [aux_sym_variable_token2] = ACTIONS(1375), - [sym_braced_variable] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [aux_sym_if_statement_token1] = ACTIONS(1375), - [aux_sym_elseif_clause_token1] = ACTIONS(1362), - [aux_sym_else_clause_token1] = ACTIONS(1375), - [aux_sym_switch_statement_token1] = ACTIONS(1375), - [aux_sym_foreach_statement_token1] = ACTIONS(1375), - [aux_sym_for_statement_token1] = ACTIONS(1375), - [aux_sym_while_statement_token1] = ACTIONS(1375), - [aux_sym_do_statement_token1] = ACTIONS(1375), - [aux_sym_function_statement_token1] = ACTIONS(1375), - [aux_sym_function_statement_token2] = ACTIONS(1375), - [aux_sym_function_statement_token3] = ACTIONS(1375), - [aux_sym_flow_control_statement_token1] = ACTIONS(1375), - [aux_sym_flow_control_statement_token2] = ACTIONS(1375), - [aux_sym_flow_control_statement_token3] = ACTIONS(1375), - [aux_sym_flow_control_statement_token4] = ACTIONS(1375), - [aux_sym_flow_control_statement_token5] = ACTIONS(1375), - [sym_label] = ACTIONS(1375), - [aux_sym_trap_statement_token1] = ACTIONS(1375), - [aux_sym_try_statement_token1] = ACTIONS(1375), - [aux_sym_data_statement_token1] = ACTIONS(1375), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1375), - [aux_sym_parallel_statement_token1] = ACTIONS(1375), - [aux_sym_sequence_statement_token1] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [aux_sym_command_name_token1] = ACTIONS(1375), - [anon_sym_PERCENT] = ACTIONS(1375), - [aux_sym_foreach_command_token1] = ACTIONS(1375), - [aux_sym_class_statement_token1] = ACTIONS(1375), - [aux_sym_enum_statement_token1] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1375), - [anon_sym_AT_LPAREN] = ACTIONS(1375), - [anon_sym_AT_LBRACE] = ACTIONS(1375), - }, - [365] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(2113), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), - [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [sym_decimal_integer_literal] = ACTIONS(1442), + [sym_hexadecimal_integer_literal] = ACTIONS(1442), + [sym_real_literal] = ACTIONS(1442), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1442), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1442), + [sym_verbatim_string_characters] = ACTIONS(1442), + [sym_verbatim_here_string_characters] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [aux_sym_comparison_operator_token37] = ACTIONS(1442), + [aux_sym_comparison_operator_token50] = ACTIONS(1442), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1442), + [anon_sym_DOLLAR_CARET] = ACTIONS(1442), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1442), + [anon_sym_DOLLAR_] = ACTIONS(1442), + [aux_sym_variable_token1] = ACTIONS(1442), + [aux_sym_variable_token2] = ACTIONS(1442), + [sym_braced_variable] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [aux_sym_if_statement_token1] = ACTIONS(1442), + [aux_sym_switch_statement_token1] = ACTIONS(1442), + [aux_sym_foreach_statement_token1] = ACTIONS(1442), + [aux_sym_for_statement_token1] = ACTIONS(1442), + [aux_sym_while_statement_token1] = ACTIONS(1442), + [aux_sym_do_statement_token1] = ACTIONS(1442), + [aux_sym_function_statement_token1] = ACTIONS(1442), + [aux_sym_function_statement_token2] = ACTIONS(1442), + [aux_sym_function_statement_token3] = ACTIONS(1442), + [aux_sym_flow_control_statement_token1] = ACTIONS(1442), + [aux_sym_flow_control_statement_token2] = ACTIONS(1442), + [aux_sym_flow_control_statement_token3] = ACTIONS(1442), + [aux_sym_flow_control_statement_token4] = ACTIONS(1442), + [aux_sym_flow_control_statement_token5] = ACTIONS(1442), + [sym_label] = ACTIONS(1442), + [aux_sym_trap_statement_token1] = ACTIONS(1442), + [aux_sym_try_statement_token1] = ACTIONS(1442), + [aux_sym_data_statement_token1] = ACTIONS(1442), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1442), + [aux_sym_parallel_statement_token1] = ACTIONS(1442), + [aux_sym_sequence_statement_token1] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [aux_sym_command_name_token1] = ACTIONS(1442), + [aux_sym_command_name_token2] = ACTIONS(1442), + [aux_sym_command_name_token3] = ACTIONS(1442), + [aux_sym_command_name_token4] = ACTIONS(1442), + [aux_sym_command_name_token5] = ACTIONS(1442), + [aux_sym_command_name_token6] = ACTIONS(1442), + [aux_sym_command_name_token7] = ACTIONS(1442), + [aux_sym_command_name_token8] = ACTIONS(1442), + [aux_sym_command_name_token9] = ACTIONS(1442), + [aux_sym_command_name_token10] = ACTIONS(1442), + [aux_sym_command_name_token11] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [aux_sym_foreach_command_token1] = ACTIONS(1442), + [aux_sym_class_statement_token1] = ACTIONS(1442), + [aux_sym_enum_statement_token1] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1442), + [anon_sym_AT_LPAREN] = ACTIONS(1442), + [anon_sym_AT_LBRACE] = ACTIONS(1442), + }, + [397] = { + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1474), + [sym_hexadecimal_integer_literal] = ACTIONS(1474), + [sym_real_literal] = ACTIONS(1474), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1474), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1474), + [sym_verbatim_string_characters] = ACTIONS(1474), + [sym_verbatim_here_string_characters] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [aux_sym_comparison_operator_token37] = ACTIONS(1474), + [aux_sym_comparison_operator_token50] = ACTIONS(1474), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1474), + [anon_sym_DOLLAR_CARET] = ACTIONS(1474), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1474), + [anon_sym_DOLLAR_] = ACTIONS(1474), + [aux_sym_variable_token1] = ACTIONS(1474), + [aux_sym_variable_token2] = ACTIONS(1474), + [sym_braced_variable] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [aux_sym_if_statement_token1] = ACTIONS(1474), + [aux_sym_switch_statement_token1] = ACTIONS(1474), + [aux_sym_foreach_statement_token1] = ACTIONS(1474), + [aux_sym_for_statement_token1] = ACTIONS(1474), + [aux_sym_while_statement_token1] = ACTIONS(1474), + [aux_sym_do_statement_token1] = ACTIONS(1474), + [aux_sym_function_statement_token1] = ACTIONS(1474), + [aux_sym_function_statement_token2] = ACTIONS(1474), + [aux_sym_function_statement_token3] = ACTIONS(1474), + [aux_sym_flow_control_statement_token1] = ACTIONS(1474), + [aux_sym_flow_control_statement_token2] = ACTIONS(1474), + [aux_sym_flow_control_statement_token3] = ACTIONS(1474), + [aux_sym_flow_control_statement_token4] = ACTIONS(1474), + [aux_sym_flow_control_statement_token5] = ACTIONS(1474), + [sym_label] = ACTIONS(1474), + [aux_sym_trap_statement_token1] = ACTIONS(1474), + [aux_sym_try_statement_token1] = ACTIONS(1474), + [aux_sym_data_statement_token1] = ACTIONS(1474), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1474), + [aux_sym_parallel_statement_token1] = ACTIONS(1474), + [aux_sym_sequence_statement_token1] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [aux_sym_command_name_token1] = ACTIONS(1474), + [aux_sym_command_name_token2] = ACTIONS(1474), + [aux_sym_command_name_token3] = ACTIONS(1474), + [aux_sym_command_name_token4] = ACTIONS(1474), + [aux_sym_command_name_token5] = ACTIONS(1474), + [aux_sym_command_name_token6] = ACTIONS(1474), + [aux_sym_command_name_token7] = ACTIONS(1474), + [aux_sym_command_name_token8] = ACTIONS(1474), + [aux_sym_command_name_token9] = ACTIONS(1474), + [aux_sym_command_name_token10] = ACTIONS(1474), + [aux_sym_command_name_token11] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [aux_sym_foreach_command_token1] = ACTIONS(1474), + [aux_sym_class_statement_token1] = ACTIONS(1474), + [aux_sym_enum_statement_token1] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1474), + [anon_sym_AT_LPAREN] = ACTIONS(1474), + [anon_sym_AT_LBRACE] = ACTIONS(1474), + }, + [398] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1488), + [sym_hexadecimal_integer_literal] = ACTIONS(1488), + [sym_real_literal] = ACTIONS(1488), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1488), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1488), + [sym_verbatim_string_characters] = ACTIONS(1488), + [sym_verbatim_here_string_characters] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [aux_sym_comparison_operator_token37] = ACTIONS(1488), + [aux_sym_comparison_operator_token50] = ACTIONS(1488), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1488), + [anon_sym_DOLLAR_CARET] = ACTIONS(1488), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1488), + [anon_sym_DOLLAR_] = ACTIONS(1488), + [aux_sym_variable_token1] = ACTIONS(1488), + [aux_sym_variable_token2] = ACTIONS(1488), + [sym_braced_variable] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [aux_sym_if_statement_token1] = ACTIONS(1488), + [aux_sym_switch_statement_token1] = ACTIONS(1488), + [aux_sym_foreach_statement_token1] = ACTIONS(1488), + [aux_sym_for_statement_token1] = ACTIONS(1488), + [aux_sym_while_statement_token1] = ACTIONS(1488), + [aux_sym_do_statement_token1] = ACTIONS(1488), + [aux_sym_function_statement_token1] = ACTIONS(1488), + [aux_sym_function_statement_token2] = ACTIONS(1488), + [aux_sym_function_statement_token3] = ACTIONS(1488), + [aux_sym_flow_control_statement_token1] = ACTIONS(1488), + [aux_sym_flow_control_statement_token2] = ACTIONS(1488), + [aux_sym_flow_control_statement_token3] = ACTIONS(1488), + [aux_sym_flow_control_statement_token4] = ACTIONS(1488), + [aux_sym_flow_control_statement_token5] = ACTIONS(1488), + [sym_label] = ACTIONS(1488), + [aux_sym_trap_statement_token1] = ACTIONS(1488), + [aux_sym_try_statement_token1] = ACTIONS(1488), + [aux_sym_data_statement_token1] = ACTIONS(1488), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1488), + [aux_sym_parallel_statement_token1] = ACTIONS(1488), + [aux_sym_sequence_statement_token1] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [aux_sym_command_name_token1] = ACTIONS(1488), + [aux_sym_command_name_token2] = ACTIONS(1488), + [aux_sym_command_name_token3] = ACTIONS(1488), + [aux_sym_command_name_token4] = ACTIONS(1488), + [aux_sym_command_name_token5] = ACTIONS(1488), + [aux_sym_command_name_token6] = ACTIONS(1488), + [aux_sym_command_name_token7] = ACTIONS(1488), + [aux_sym_command_name_token8] = ACTIONS(1488), + [aux_sym_command_name_token9] = ACTIONS(1488), + [aux_sym_command_name_token10] = ACTIONS(1488), + [aux_sym_command_name_token11] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [aux_sym_foreach_command_token1] = ACTIONS(1488), + [aux_sym_class_statement_token1] = ACTIONS(1488), + [aux_sym_enum_statement_token1] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1488), + [anon_sym_AT_LPAREN] = ACTIONS(1488), + [anon_sym_AT_LBRACE] = ACTIONS(1488), + }, + [399] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1484), + [sym_hexadecimal_integer_literal] = ACTIONS(1484), + [sym_real_literal] = ACTIONS(1484), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1484), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1484), + [sym_verbatim_string_characters] = ACTIONS(1484), + [sym_verbatim_here_string_characters] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [aux_sym_comparison_operator_token37] = ACTIONS(1484), + [aux_sym_comparison_operator_token50] = ACTIONS(1484), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1484), + [anon_sym_DOLLAR_CARET] = ACTIONS(1484), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1484), + [anon_sym_DOLLAR_] = ACTIONS(1484), + [aux_sym_variable_token1] = ACTIONS(1484), + [aux_sym_variable_token2] = ACTIONS(1484), + [sym_braced_variable] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [aux_sym_if_statement_token1] = ACTIONS(1484), + [aux_sym_switch_statement_token1] = ACTIONS(1484), + [aux_sym_foreach_statement_token1] = ACTIONS(1484), + [aux_sym_for_statement_token1] = ACTIONS(1484), + [aux_sym_while_statement_token1] = ACTIONS(1484), + [aux_sym_do_statement_token1] = ACTIONS(1484), + [aux_sym_function_statement_token1] = ACTIONS(1484), + [aux_sym_function_statement_token2] = ACTIONS(1484), + [aux_sym_function_statement_token3] = ACTIONS(1484), + [aux_sym_flow_control_statement_token1] = ACTIONS(1484), + [aux_sym_flow_control_statement_token2] = ACTIONS(1484), + [aux_sym_flow_control_statement_token3] = ACTIONS(1484), + [aux_sym_flow_control_statement_token4] = ACTIONS(1484), + [aux_sym_flow_control_statement_token5] = ACTIONS(1484), + [sym_label] = ACTIONS(1484), + [aux_sym_trap_statement_token1] = ACTIONS(1484), + [aux_sym_try_statement_token1] = ACTIONS(1484), + [aux_sym_data_statement_token1] = ACTIONS(1484), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1484), + [aux_sym_parallel_statement_token1] = ACTIONS(1484), + [aux_sym_sequence_statement_token1] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [aux_sym_command_name_token1] = ACTIONS(1484), + [aux_sym_command_name_token2] = ACTIONS(1484), + [aux_sym_command_name_token3] = ACTIONS(1484), + [aux_sym_command_name_token4] = ACTIONS(1484), + [aux_sym_command_name_token5] = ACTIONS(1484), + [aux_sym_command_name_token6] = ACTIONS(1484), + [aux_sym_command_name_token7] = ACTIONS(1484), + [aux_sym_command_name_token8] = ACTIONS(1484), + [aux_sym_command_name_token9] = ACTIONS(1484), + [aux_sym_command_name_token10] = ACTIONS(1484), + [aux_sym_command_name_token11] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [aux_sym_foreach_command_token1] = ACTIONS(1484), + [aux_sym_class_statement_token1] = ACTIONS(1484), + [aux_sym_enum_statement_token1] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1484), + [anon_sym_AT_LPAREN] = ACTIONS(1484), + [anon_sym_AT_LBRACE] = ACTIONS(1484), + }, + [400] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1462), + [sym_hexadecimal_integer_literal] = ACTIONS(1462), + [sym_real_literal] = ACTIONS(1462), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1462), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1462), + [sym_verbatim_string_characters] = ACTIONS(1462), + [sym_verbatim_here_string_characters] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [aux_sym_comparison_operator_token37] = ACTIONS(1462), + [aux_sym_comparison_operator_token50] = ACTIONS(1462), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1462), + [anon_sym_DOLLAR_CARET] = ACTIONS(1462), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1462), + [anon_sym_DOLLAR_] = ACTIONS(1462), + [aux_sym_variable_token1] = ACTIONS(1462), + [aux_sym_variable_token2] = ACTIONS(1462), + [sym_braced_variable] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [aux_sym_if_statement_token1] = ACTIONS(1462), + [aux_sym_switch_statement_token1] = ACTIONS(1462), + [aux_sym_foreach_statement_token1] = ACTIONS(1462), + [aux_sym_for_statement_token1] = ACTIONS(1462), + [aux_sym_while_statement_token1] = ACTIONS(1462), + [aux_sym_do_statement_token1] = ACTIONS(1462), + [aux_sym_function_statement_token1] = ACTIONS(1462), + [aux_sym_function_statement_token2] = ACTIONS(1462), + [aux_sym_function_statement_token3] = ACTIONS(1462), + [aux_sym_flow_control_statement_token1] = ACTIONS(1462), + [aux_sym_flow_control_statement_token2] = ACTIONS(1462), + [aux_sym_flow_control_statement_token3] = ACTIONS(1462), + [aux_sym_flow_control_statement_token4] = ACTIONS(1462), + [aux_sym_flow_control_statement_token5] = ACTIONS(1462), + [sym_label] = ACTIONS(1462), + [aux_sym_trap_statement_token1] = ACTIONS(1462), + [aux_sym_try_statement_token1] = ACTIONS(1462), + [aux_sym_data_statement_token1] = ACTIONS(1462), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1462), + [aux_sym_parallel_statement_token1] = ACTIONS(1462), + [aux_sym_sequence_statement_token1] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [aux_sym_command_name_token1] = ACTIONS(1462), + [aux_sym_command_name_token2] = ACTIONS(1462), + [aux_sym_command_name_token3] = ACTIONS(1462), + [aux_sym_command_name_token4] = ACTIONS(1462), + [aux_sym_command_name_token5] = ACTIONS(1462), + [aux_sym_command_name_token6] = ACTIONS(1462), + [aux_sym_command_name_token7] = ACTIONS(1462), + [aux_sym_command_name_token8] = ACTIONS(1462), + [aux_sym_command_name_token9] = ACTIONS(1462), + [aux_sym_command_name_token10] = ACTIONS(1462), + [aux_sym_command_name_token11] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [aux_sym_foreach_command_token1] = ACTIONS(1462), + [aux_sym_class_statement_token1] = ACTIONS(1462), + [aux_sym_enum_statement_token1] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1462), + [anon_sym_AT_LPAREN] = ACTIONS(1462), + [anon_sym_AT_LBRACE] = ACTIONS(1462), + }, + [401] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1444), + [sym_hexadecimal_integer_literal] = ACTIONS(1444), + [sym_real_literal] = ACTIONS(1444), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1444), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1444), + [sym_verbatim_string_characters] = ACTIONS(1444), + [sym_verbatim_here_string_characters] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [aux_sym_comparison_operator_token37] = ACTIONS(1444), + [aux_sym_comparison_operator_token50] = ACTIONS(1444), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1444), + [anon_sym_DOLLAR_CARET] = ACTIONS(1444), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1444), + [anon_sym_DOLLAR_] = ACTIONS(1444), + [aux_sym_variable_token1] = ACTIONS(1444), + [aux_sym_variable_token2] = ACTIONS(1444), + [sym_braced_variable] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [aux_sym_if_statement_token1] = ACTIONS(1444), + [aux_sym_switch_statement_token1] = ACTIONS(1444), + [aux_sym_foreach_statement_token1] = ACTIONS(1444), + [aux_sym_for_statement_token1] = ACTIONS(1444), + [aux_sym_while_statement_token1] = ACTIONS(1444), + [aux_sym_do_statement_token1] = ACTIONS(1444), + [aux_sym_function_statement_token1] = ACTIONS(1444), + [aux_sym_function_statement_token2] = ACTIONS(1444), + [aux_sym_function_statement_token3] = ACTIONS(1444), + [aux_sym_flow_control_statement_token1] = ACTIONS(1444), + [aux_sym_flow_control_statement_token2] = ACTIONS(1444), + [aux_sym_flow_control_statement_token3] = ACTIONS(1444), + [aux_sym_flow_control_statement_token4] = ACTIONS(1444), + [aux_sym_flow_control_statement_token5] = ACTIONS(1444), + [sym_label] = ACTIONS(1444), + [aux_sym_trap_statement_token1] = ACTIONS(1444), + [aux_sym_try_statement_token1] = ACTIONS(1444), + [aux_sym_data_statement_token1] = ACTIONS(1444), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1444), + [aux_sym_parallel_statement_token1] = ACTIONS(1444), + [aux_sym_sequence_statement_token1] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [aux_sym_command_name_token1] = ACTIONS(1444), + [aux_sym_command_name_token2] = ACTIONS(1444), + [aux_sym_command_name_token3] = ACTIONS(1444), + [aux_sym_command_name_token4] = ACTIONS(1444), + [aux_sym_command_name_token5] = ACTIONS(1444), + [aux_sym_command_name_token6] = ACTIONS(1444), + [aux_sym_command_name_token7] = ACTIONS(1444), + [aux_sym_command_name_token8] = ACTIONS(1444), + [aux_sym_command_name_token9] = ACTIONS(1444), + [aux_sym_command_name_token10] = ACTIONS(1444), + [aux_sym_command_name_token11] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [aux_sym_foreach_command_token1] = ACTIONS(1444), + [aux_sym_class_statement_token1] = ACTIONS(1444), + [aux_sym_enum_statement_token1] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1444), + [anon_sym_AT_LPAREN] = ACTIONS(1444), + [anon_sym_AT_LBRACE] = ACTIONS(1444), + }, + [402] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1456), + [sym_hexadecimal_integer_literal] = ACTIONS(1456), + [sym_real_literal] = ACTIONS(1456), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1456), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1456), + [sym_verbatim_string_characters] = ACTIONS(1456), + [sym_verbatim_here_string_characters] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [aux_sym_comparison_operator_token37] = ACTIONS(1456), + [aux_sym_comparison_operator_token50] = ACTIONS(1456), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1456), + [anon_sym_DOLLAR_CARET] = ACTIONS(1456), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1456), + [anon_sym_DOLLAR_] = ACTIONS(1456), + [aux_sym_variable_token1] = ACTIONS(1456), + [aux_sym_variable_token2] = ACTIONS(1456), + [sym_braced_variable] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [aux_sym_if_statement_token1] = ACTIONS(1456), + [aux_sym_switch_statement_token1] = ACTIONS(1456), + [aux_sym_foreach_statement_token1] = ACTIONS(1456), + [aux_sym_for_statement_token1] = ACTIONS(1456), + [aux_sym_while_statement_token1] = ACTIONS(1456), + [aux_sym_do_statement_token1] = ACTIONS(1456), + [aux_sym_function_statement_token1] = ACTIONS(1456), + [aux_sym_function_statement_token2] = ACTIONS(1456), + [aux_sym_function_statement_token3] = ACTIONS(1456), + [aux_sym_flow_control_statement_token1] = ACTIONS(1456), + [aux_sym_flow_control_statement_token2] = ACTIONS(1456), + [aux_sym_flow_control_statement_token3] = ACTIONS(1456), + [aux_sym_flow_control_statement_token4] = ACTIONS(1456), + [aux_sym_flow_control_statement_token5] = ACTIONS(1456), + [sym_label] = ACTIONS(1456), + [aux_sym_trap_statement_token1] = ACTIONS(1456), + [aux_sym_try_statement_token1] = ACTIONS(1456), + [aux_sym_data_statement_token1] = ACTIONS(1456), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1456), + [aux_sym_parallel_statement_token1] = ACTIONS(1456), + [aux_sym_sequence_statement_token1] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [aux_sym_command_name_token1] = ACTIONS(1456), + [aux_sym_command_name_token2] = ACTIONS(1456), + [aux_sym_command_name_token3] = ACTIONS(1456), + [aux_sym_command_name_token4] = ACTIONS(1456), + [aux_sym_command_name_token5] = ACTIONS(1456), + [aux_sym_command_name_token6] = ACTIONS(1456), + [aux_sym_command_name_token7] = ACTIONS(1456), + [aux_sym_command_name_token8] = ACTIONS(1456), + [aux_sym_command_name_token9] = ACTIONS(1456), + [aux_sym_command_name_token10] = ACTIONS(1456), + [aux_sym_command_name_token11] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [aux_sym_foreach_command_token1] = ACTIONS(1456), + [aux_sym_class_statement_token1] = ACTIONS(1456), + [aux_sym_enum_statement_token1] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1456), + [anon_sym_AT_LPAREN] = ACTIONS(1456), + [anon_sym_AT_LBRACE] = ACTIONS(1456), + }, + [403] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1492), + [sym_hexadecimal_integer_literal] = ACTIONS(1492), + [sym_real_literal] = ACTIONS(1492), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1492), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1492), + [sym_verbatim_string_characters] = ACTIONS(1492), + [sym_verbatim_here_string_characters] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [aux_sym_comparison_operator_token37] = ACTIONS(1492), + [aux_sym_comparison_operator_token50] = ACTIONS(1492), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1492), + [anon_sym_DOLLAR_CARET] = ACTIONS(1492), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1492), + [anon_sym_DOLLAR_] = ACTIONS(1492), + [aux_sym_variable_token1] = ACTIONS(1492), + [aux_sym_variable_token2] = ACTIONS(1492), + [sym_braced_variable] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [aux_sym_if_statement_token1] = ACTIONS(1492), + [aux_sym_switch_statement_token1] = ACTIONS(1492), + [aux_sym_foreach_statement_token1] = ACTIONS(1492), + [aux_sym_for_statement_token1] = ACTIONS(1492), + [aux_sym_while_statement_token1] = ACTIONS(1492), + [aux_sym_do_statement_token1] = ACTIONS(1492), + [aux_sym_function_statement_token1] = ACTIONS(1492), + [aux_sym_function_statement_token2] = ACTIONS(1492), + [aux_sym_function_statement_token3] = ACTIONS(1492), + [aux_sym_flow_control_statement_token1] = ACTIONS(1492), + [aux_sym_flow_control_statement_token2] = ACTIONS(1492), + [aux_sym_flow_control_statement_token3] = ACTIONS(1492), + [aux_sym_flow_control_statement_token4] = ACTIONS(1492), + [aux_sym_flow_control_statement_token5] = ACTIONS(1492), + [sym_label] = ACTIONS(1492), + [aux_sym_trap_statement_token1] = ACTIONS(1492), + [aux_sym_try_statement_token1] = ACTIONS(1492), + [aux_sym_data_statement_token1] = ACTIONS(1492), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1492), + [aux_sym_parallel_statement_token1] = ACTIONS(1492), + [aux_sym_sequence_statement_token1] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [aux_sym_command_name_token1] = ACTIONS(1492), + [aux_sym_command_name_token2] = ACTIONS(1492), + [aux_sym_command_name_token3] = ACTIONS(1492), + [aux_sym_command_name_token4] = ACTIONS(1492), + [aux_sym_command_name_token5] = ACTIONS(1492), + [aux_sym_command_name_token6] = ACTIONS(1492), + [aux_sym_command_name_token7] = ACTIONS(1492), + [aux_sym_command_name_token8] = ACTIONS(1492), + [aux_sym_command_name_token9] = ACTIONS(1492), + [aux_sym_command_name_token10] = ACTIONS(1492), + [aux_sym_command_name_token11] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [aux_sym_foreach_command_token1] = ACTIONS(1492), + [aux_sym_class_statement_token1] = ACTIONS(1492), + [aux_sym_enum_statement_token1] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1492), + [anon_sym_AT_LPAREN] = ACTIONS(1492), + [anon_sym_AT_LBRACE] = ACTIONS(1492), + }, + [404] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1448), + [sym_hexadecimal_integer_literal] = ACTIONS(1448), + [sym_real_literal] = ACTIONS(1448), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1448), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1448), + [sym_verbatim_string_characters] = ACTIONS(1448), + [sym_verbatim_here_string_characters] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [aux_sym_comparison_operator_token37] = ACTIONS(1448), + [aux_sym_comparison_operator_token50] = ACTIONS(1448), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_CARET] = ACTIONS(1448), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1448), + [anon_sym_DOLLAR_] = ACTIONS(1448), + [aux_sym_variable_token1] = ACTIONS(1448), + [aux_sym_variable_token2] = ACTIONS(1448), + [sym_braced_variable] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [aux_sym_if_statement_token1] = ACTIONS(1448), + [aux_sym_switch_statement_token1] = ACTIONS(1448), + [aux_sym_foreach_statement_token1] = ACTIONS(1448), + [aux_sym_for_statement_token1] = ACTIONS(1448), + [aux_sym_while_statement_token1] = ACTIONS(1448), + [aux_sym_do_statement_token1] = ACTIONS(1448), + [aux_sym_function_statement_token1] = ACTIONS(1448), + [aux_sym_function_statement_token2] = ACTIONS(1448), + [aux_sym_function_statement_token3] = ACTIONS(1448), + [aux_sym_flow_control_statement_token1] = ACTIONS(1448), + [aux_sym_flow_control_statement_token2] = ACTIONS(1448), + [aux_sym_flow_control_statement_token3] = ACTIONS(1448), + [aux_sym_flow_control_statement_token4] = ACTIONS(1448), + [aux_sym_flow_control_statement_token5] = ACTIONS(1448), + [sym_label] = ACTIONS(1448), + [aux_sym_trap_statement_token1] = ACTIONS(1448), + [aux_sym_try_statement_token1] = ACTIONS(1448), + [aux_sym_data_statement_token1] = ACTIONS(1448), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1448), + [aux_sym_parallel_statement_token1] = ACTIONS(1448), + [aux_sym_sequence_statement_token1] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [aux_sym_command_name_token1] = ACTIONS(1448), + [aux_sym_command_name_token2] = ACTIONS(1448), + [aux_sym_command_name_token3] = ACTIONS(1448), + [aux_sym_command_name_token4] = ACTIONS(1448), + [aux_sym_command_name_token5] = ACTIONS(1448), + [aux_sym_command_name_token6] = ACTIONS(1448), + [aux_sym_command_name_token7] = ACTIONS(1448), + [aux_sym_command_name_token8] = ACTIONS(1448), + [aux_sym_command_name_token9] = ACTIONS(1448), + [aux_sym_command_name_token10] = ACTIONS(1448), + [aux_sym_command_name_token11] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [aux_sym_foreach_command_token1] = ACTIONS(1448), + [aux_sym_class_statement_token1] = ACTIONS(1448), + [aux_sym_enum_statement_token1] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1448), + [anon_sym_AT_LPAREN] = ACTIONS(1448), + [anon_sym_AT_LBRACE] = ACTIONS(1448), + }, + [405] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1374), + [sym_hexadecimal_integer_literal] = ACTIONS(1374), + [sym_real_literal] = ACTIONS(1374), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1374), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1374), + [sym_verbatim_string_characters] = ACTIONS(1374), + [sym_verbatim_here_string_characters] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [aux_sym_comparison_operator_token37] = ACTIONS(1374), + [aux_sym_comparison_operator_token50] = ACTIONS(1374), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1374), + [anon_sym_DOLLAR_CARET] = ACTIONS(1374), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1374), + [anon_sym_DOLLAR_] = ACTIONS(1374), + [aux_sym_variable_token1] = ACTIONS(1374), + [aux_sym_variable_token2] = ACTIONS(1374), + [sym_braced_variable] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [aux_sym_if_statement_token1] = ACTIONS(1374), + [aux_sym_switch_statement_token1] = ACTIONS(1374), + [aux_sym_foreach_statement_token1] = ACTIONS(1374), + [aux_sym_for_statement_token1] = ACTIONS(1374), + [aux_sym_while_statement_token1] = ACTIONS(1374), + [aux_sym_do_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token1] = ACTIONS(1374), + [aux_sym_function_statement_token2] = ACTIONS(1374), + [aux_sym_function_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token1] = ACTIONS(1374), + [aux_sym_flow_control_statement_token2] = ACTIONS(1374), + [aux_sym_flow_control_statement_token3] = ACTIONS(1374), + [aux_sym_flow_control_statement_token4] = ACTIONS(1374), + [aux_sym_flow_control_statement_token5] = ACTIONS(1374), + [sym_label] = ACTIONS(1374), + [aux_sym_trap_statement_token1] = ACTIONS(1374), + [aux_sym_try_statement_token1] = ACTIONS(1374), + [aux_sym_data_statement_token1] = ACTIONS(1374), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1374), + [aux_sym_parallel_statement_token1] = ACTIONS(1374), + [aux_sym_sequence_statement_token1] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [aux_sym_command_name_token1] = ACTIONS(1374), + [aux_sym_command_name_token2] = ACTIONS(1374), + [aux_sym_command_name_token3] = ACTIONS(1374), + [aux_sym_command_name_token4] = ACTIONS(1374), + [aux_sym_command_name_token5] = ACTIONS(1374), + [aux_sym_command_name_token6] = ACTIONS(1374), + [aux_sym_command_name_token7] = ACTIONS(1374), + [aux_sym_command_name_token8] = ACTIONS(1374), + [aux_sym_command_name_token9] = ACTIONS(1374), + [aux_sym_command_name_token10] = ACTIONS(1374), + [aux_sym_command_name_token11] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [aux_sym_foreach_command_token1] = ACTIONS(1374), + [aux_sym_class_statement_token1] = ACTIONS(1374), + [aux_sym_enum_statement_token1] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LPAREN] = ACTIONS(1374), + [anon_sym_AT_LBRACE] = ACTIONS(1374), + }, + [406] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1450), + [sym_hexadecimal_integer_literal] = ACTIONS(1450), + [sym_real_literal] = ACTIONS(1450), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1450), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1450), + [sym_verbatim_string_characters] = ACTIONS(1450), + [sym_verbatim_here_string_characters] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [aux_sym_comparison_operator_token37] = ACTIONS(1450), + [aux_sym_comparison_operator_token50] = ACTIONS(1450), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1450), + [anon_sym_DOLLAR_CARET] = ACTIONS(1450), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1450), + [anon_sym_DOLLAR_] = ACTIONS(1450), + [aux_sym_variable_token1] = ACTIONS(1450), + [aux_sym_variable_token2] = ACTIONS(1450), + [sym_braced_variable] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [aux_sym_if_statement_token1] = ACTIONS(1450), + [aux_sym_switch_statement_token1] = ACTIONS(1450), + [aux_sym_foreach_statement_token1] = ACTIONS(1450), + [aux_sym_for_statement_token1] = ACTIONS(1450), + [aux_sym_while_statement_token1] = ACTIONS(1450), + [aux_sym_do_statement_token1] = ACTIONS(1450), + [aux_sym_function_statement_token1] = ACTIONS(1450), + [aux_sym_function_statement_token2] = ACTIONS(1450), + [aux_sym_function_statement_token3] = ACTIONS(1450), + [aux_sym_flow_control_statement_token1] = ACTIONS(1450), + [aux_sym_flow_control_statement_token2] = ACTIONS(1450), + [aux_sym_flow_control_statement_token3] = ACTIONS(1450), + [aux_sym_flow_control_statement_token4] = ACTIONS(1450), + [aux_sym_flow_control_statement_token5] = ACTIONS(1450), + [sym_label] = ACTIONS(1450), + [aux_sym_trap_statement_token1] = ACTIONS(1450), + [aux_sym_try_statement_token1] = ACTIONS(1450), + [aux_sym_data_statement_token1] = ACTIONS(1450), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1450), + [aux_sym_parallel_statement_token1] = ACTIONS(1450), + [aux_sym_sequence_statement_token1] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [aux_sym_command_name_token1] = ACTIONS(1450), + [aux_sym_command_name_token2] = ACTIONS(1450), + [aux_sym_command_name_token3] = ACTIONS(1450), + [aux_sym_command_name_token4] = ACTIONS(1450), + [aux_sym_command_name_token5] = ACTIONS(1450), + [aux_sym_command_name_token6] = ACTIONS(1450), + [aux_sym_command_name_token7] = ACTIONS(1450), + [aux_sym_command_name_token8] = ACTIONS(1450), + [aux_sym_command_name_token9] = ACTIONS(1450), + [aux_sym_command_name_token10] = ACTIONS(1450), + [aux_sym_command_name_token11] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [aux_sym_foreach_command_token1] = ACTIONS(1450), + [aux_sym_class_statement_token1] = ACTIONS(1450), + [aux_sym_enum_statement_token1] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1450), + [anon_sym_AT_LPAREN] = ACTIONS(1450), + [anon_sym_AT_LBRACE] = ACTIONS(1450), + }, + [407] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1452), + [sym_hexadecimal_integer_literal] = ACTIONS(1452), + [sym_real_literal] = ACTIONS(1452), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1452), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1452), + [sym_verbatim_string_characters] = ACTIONS(1452), + [sym_verbatim_here_string_characters] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [aux_sym_comparison_operator_token37] = ACTIONS(1452), + [aux_sym_comparison_operator_token50] = ACTIONS(1452), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1452), + [anon_sym_DOLLAR_CARET] = ACTIONS(1452), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1452), + [anon_sym_DOLLAR_] = ACTIONS(1452), + [aux_sym_variable_token1] = ACTIONS(1452), + [aux_sym_variable_token2] = ACTIONS(1452), + [sym_braced_variable] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [aux_sym_if_statement_token1] = ACTIONS(1452), + [aux_sym_switch_statement_token1] = ACTIONS(1452), + [aux_sym_foreach_statement_token1] = ACTIONS(1452), + [aux_sym_for_statement_token1] = ACTIONS(1452), + [aux_sym_while_statement_token1] = ACTIONS(1452), + [aux_sym_do_statement_token1] = ACTIONS(1452), + [aux_sym_function_statement_token1] = ACTIONS(1452), + [aux_sym_function_statement_token2] = ACTIONS(1452), + [aux_sym_function_statement_token3] = ACTIONS(1452), + [aux_sym_flow_control_statement_token1] = ACTIONS(1452), + [aux_sym_flow_control_statement_token2] = ACTIONS(1452), + [aux_sym_flow_control_statement_token3] = ACTIONS(1452), + [aux_sym_flow_control_statement_token4] = ACTIONS(1452), + [aux_sym_flow_control_statement_token5] = ACTIONS(1452), + [sym_label] = ACTIONS(1452), + [aux_sym_trap_statement_token1] = ACTIONS(1452), + [aux_sym_try_statement_token1] = ACTIONS(1452), + [aux_sym_data_statement_token1] = ACTIONS(1452), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1452), + [aux_sym_parallel_statement_token1] = ACTIONS(1452), + [aux_sym_sequence_statement_token1] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [aux_sym_command_name_token1] = ACTIONS(1452), + [aux_sym_command_name_token2] = ACTIONS(1452), + [aux_sym_command_name_token3] = ACTIONS(1452), + [aux_sym_command_name_token4] = ACTIONS(1452), + [aux_sym_command_name_token5] = ACTIONS(1452), + [aux_sym_command_name_token6] = ACTIONS(1452), + [aux_sym_command_name_token7] = ACTIONS(1452), + [aux_sym_command_name_token8] = ACTIONS(1452), + [aux_sym_command_name_token9] = ACTIONS(1452), + [aux_sym_command_name_token10] = ACTIONS(1452), + [aux_sym_command_name_token11] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [aux_sym_foreach_command_token1] = ACTIONS(1452), + [aux_sym_class_statement_token1] = ACTIONS(1452), + [aux_sym_enum_statement_token1] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_AT_LPAREN] = ACTIONS(1452), + [anon_sym_AT_LBRACE] = ACTIONS(1452), + }, + [408] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1498), + [sym_hexadecimal_integer_literal] = ACTIONS(1498), + [sym_real_literal] = ACTIONS(1498), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1498), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1498), + [sym_verbatim_string_characters] = ACTIONS(1498), + [sym_verbatim_here_string_characters] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [aux_sym_comparison_operator_token37] = ACTIONS(1498), + [aux_sym_comparison_operator_token50] = ACTIONS(1498), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1498), + [anon_sym_DOLLAR_CARET] = ACTIONS(1498), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1498), + [anon_sym_DOLLAR_] = ACTIONS(1498), + [aux_sym_variable_token1] = ACTIONS(1498), + [aux_sym_variable_token2] = ACTIONS(1498), + [sym_braced_variable] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [aux_sym_if_statement_token1] = ACTIONS(1498), + [aux_sym_switch_statement_token1] = ACTIONS(1498), + [aux_sym_foreach_statement_token1] = ACTIONS(1498), + [aux_sym_for_statement_token1] = ACTIONS(1498), + [aux_sym_while_statement_token1] = ACTIONS(1498), + [aux_sym_do_statement_token1] = ACTIONS(1498), + [aux_sym_function_statement_token1] = ACTIONS(1498), + [aux_sym_function_statement_token2] = ACTIONS(1498), + [aux_sym_function_statement_token3] = ACTIONS(1498), + [aux_sym_flow_control_statement_token1] = ACTIONS(1498), + [aux_sym_flow_control_statement_token2] = ACTIONS(1498), + [aux_sym_flow_control_statement_token3] = ACTIONS(1498), + [aux_sym_flow_control_statement_token4] = ACTIONS(1498), + [aux_sym_flow_control_statement_token5] = ACTIONS(1498), + [sym_label] = ACTIONS(1498), + [aux_sym_trap_statement_token1] = ACTIONS(1498), + [aux_sym_try_statement_token1] = ACTIONS(1498), + [aux_sym_data_statement_token1] = ACTIONS(1498), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1498), + [aux_sym_parallel_statement_token1] = ACTIONS(1498), + [aux_sym_sequence_statement_token1] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [aux_sym_command_name_token1] = ACTIONS(1498), + [aux_sym_command_name_token2] = ACTIONS(1498), + [aux_sym_command_name_token3] = ACTIONS(1498), + [aux_sym_command_name_token4] = ACTIONS(1498), + [aux_sym_command_name_token5] = ACTIONS(1498), + [aux_sym_command_name_token6] = ACTIONS(1498), + [aux_sym_command_name_token7] = ACTIONS(1498), + [aux_sym_command_name_token8] = ACTIONS(1498), + [aux_sym_command_name_token9] = ACTIONS(1498), + [aux_sym_command_name_token10] = ACTIONS(1498), + [aux_sym_command_name_token11] = ACTIONS(1498), + [anon_sym_PERCENT] = ACTIONS(1498), + [aux_sym_foreach_command_token1] = ACTIONS(1498), + [aux_sym_class_statement_token1] = ACTIONS(1498), + [aux_sym_enum_statement_token1] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1498), + [anon_sym_AT_LPAREN] = ACTIONS(1498), + [anon_sym_AT_LBRACE] = ACTIONS(1498), + }, + [409] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1458), + [sym_hexadecimal_integer_literal] = ACTIONS(1458), + [sym_real_literal] = ACTIONS(1458), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1458), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1458), + [sym_verbatim_string_characters] = ACTIONS(1458), + [sym_verbatim_here_string_characters] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [aux_sym_comparison_operator_token37] = ACTIONS(1458), + [aux_sym_comparison_operator_token50] = ACTIONS(1458), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1458), + [anon_sym_DOLLAR_CARET] = ACTIONS(1458), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1458), + [anon_sym_DOLLAR_] = ACTIONS(1458), + [aux_sym_variable_token1] = ACTIONS(1458), + [aux_sym_variable_token2] = ACTIONS(1458), + [sym_braced_variable] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [aux_sym_if_statement_token1] = ACTIONS(1458), + [aux_sym_switch_statement_token1] = ACTIONS(1458), + [aux_sym_foreach_statement_token1] = ACTIONS(1458), + [aux_sym_for_statement_token1] = ACTIONS(1458), + [aux_sym_while_statement_token1] = ACTIONS(1458), + [aux_sym_do_statement_token1] = ACTIONS(1458), + [aux_sym_function_statement_token1] = ACTIONS(1458), + [aux_sym_function_statement_token2] = ACTIONS(1458), + [aux_sym_function_statement_token3] = ACTIONS(1458), + [aux_sym_flow_control_statement_token1] = ACTIONS(1458), + [aux_sym_flow_control_statement_token2] = ACTIONS(1458), + [aux_sym_flow_control_statement_token3] = ACTIONS(1458), + [aux_sym_flow_control_statement_token4] = ACTIONS(1458), + [aux_sym_flow_control_statement_token5] = ACTIONS(1458), + [sym_label] = ACTIONS(1458), + [aux_sym_trap_statement_token1] = ACTIONS(1458), + [aux_sym_try_statement_token1] = ACTIONS(1458), + [aux_sym_data_statement_token1] = ACTIONS(1458), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1458), + [aux_sym_parallel_statement_token1] = ACTIONS(1458), + [aux_sym_sequence_statement_token1] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [aux_sym_command_name_token1] = ACTIONS(1458), + [aux_sym_command_name_token2] = ACTIONS(1458), + [aux_sym_command_name_token3] = ACTIONS(1458), + [aux_sym_command_name_token4] = ACTIONS(1458), + [aux_sym_command_name_token5] = ACTIONS(1458), + [aux_sym_command_name_token6] = ACTIONS(1458), + [aux_sym_command_name_token7] = ACTIONS(1458), + [aux_sym_command_name_token8] = ACTIONS(1458), + [aux_sym_command_name_token9] = ACTIONS(1458), + [aux_sym_command_name_token10] = ACTIONS(1458), + [aux_sym_command_name_token11] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [aux_sym_foreach_command_token1] = ACTIONS(1458), + [aux_sym_class_statement_token1] = ACTIONS(1458), + [aux_sym_enum_statement_token1] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1458), + [anon_sym_AT_LPAREN] = ACTIONS(1458), + [anon_sym_AT_LBRACE] = ACTIONS(1458), + }, + [410] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1430), + [sym_hexadecimal_integer_literal] = ACTIONS(1430), + [sym_real_literal] = ACTIONS(1430), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1430), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1430), + [sym_verbatim_string_characters] = ACTIONS(1430), + [sym_verbatim_here_string_characters] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [aux_sym_comparison_operator_token37] = ACTIONS(1430), + [aux_sym_comparison_operator_token50] = ACTIONS(1430), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1430), + [anon_sym_DOLLAR_CARET] = ACTIONS(1430), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1430), + [anon_sym_DOLLAR_] = ACTIONS(1430), + [aux_sym_variable_token1] = ACTIONS(1430), + [aux_sym_variable_token2] = ACTIONS(1430), + [sym_braced_variable] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [aux_sym_if_statement_token1] = ACTIONS(1430), + [aux_sym_switch_statement_token1] = ACTIONS(1430), + [aux_sym_foreach_statement_token1] = ACTIONS(1430), + [aux_sym_for_statement_token1] = ACTIONS(1430), + [aux_sym_while_statement_token1] = ACTIONS(1430), + [aux_sym_do_statement_token1] = ACTIONS(1430), + [aux_sym_function_statement_token1] = ACTIONS(1430), + [aux_sym_function_statement_token2] = ACTIONS(1430), + [aux_sym_function_statement_token3] = ACTIONS(1430), + [aux_sym_flow_control_statement_token1] = ACTIONS(1430), + [aux_sym_flow_control_statement_token2] = ACTIONS(1430), + [aux_sym_flow_control_statement_token3] = ACTIONS(1430), + [aux_sym_flow_control_statement_token4] = ACTIONS(1430), + [aux_sym_flow_control_statement_token5] = ACTIONS(1430), + [sym_label] = ACTIONS(1430), + [aux_sym_trap_statement_token1] = ACTIONS(1430), + [aux_sym_try_statement_token1] = ACTIONS(1430), + [aux_sym_data_statement_token1] = ACTIONS(1430), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1430), + [aux_sym_parallel_statement_token1] = ACTIONS(1430), + [aux_sym_sequence_statement_token1] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [aux_sym_command_name_token1] = ACTIONS(1430), + [aux_sym_command_name_token2] = ACTIONS(1430), + [aux_sym_command_name_token3] = ACTIONS(1430), + [aux_sym_command_name_token4] = ACTIONS(1430), + [aux_sym_command_name_token5] = ACTIONS(1430), + [aux_sym_command_name_token6] = ACTIONS(1430), + [aux_sym_command_name_token7] = ACTIONS(1430), + [aux_sym_command_name_token8] = ACTIONS(1430), + [aux_sym_command_name_token9] = ACTIONS(1430), + [aux_sym_command_name_token10] = ACTIONS(1430), + [aux_sym_command_name_token11] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [aux_sym_foreach_command_token1] = ACTIONS(1430), + [aux_sym_class_statement_token1] = ACTIONS(1430), + [aux_sym_enum_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1430), + [anon_sym_AT_LPAREN] = ACTIONS(1430), + [anon_sym_AT_LBRACE] = ACTIONS(1430), + }, + [411] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1364), + [sym_hexadecimal_integer_literal] = ACTIONS(1364), + [sym_real_literal] = ACTIONS(1364), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1364), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1364), + [sym_verbatim_string_characters] = ACTIONS(1364), + [sym_verbatim_here_string_characters] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [aux_sym_comparison_operator_token37] = ACTIONS(1364), + [aux_sym_comparison_operator_token50] = ACTIONS(1364), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1364), + [anon_sym_DOLLAR_CARET] = ACTIONS(1364), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_] = ACTIONS(1364), + [aux_sym_variable_token1] = ACTIONS(1364), + [aux_sym_variable_token2] = ACTIONS(1364), + [sym_braced_variable] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [aux_sym_if_statement_token1] = ACTIONS(1364), + [aux_sym_switch_statement_token1] = ACTIONS(1364), + [aux_sym_foreach_statement_token1] = ACTIONS(1364), + [aux_sym_for_statement_token1] = ACTIONS(1364), + [aux_sym_while_statement_token1] = ACTIONS(1364), + [aux_sym_do_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token1] = ACTIONS(1364), + [aux_sym_function_statement_token2] = ACTIONS(1364), + [aux_sym_function_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token1] = ACTIONS(1364), + [aux_sym_flow_control_statement_token2] = ACTIONS(1364), + [aux_sym_flow_control_statement_token3] = ACTIONS(1364), + [aux_sym_flow_control_statement_token4] = ACTIONS(1364), + [aux_sym_flow_control_statement_token5] = ACTIONS(1364), + [sym_label] = ACTIONS(1364), + [aux_sym_trap_statement_token1] = ACTIONS(1364), + [aux_sym_try_statement_token1] = ACTIONS(1364), + [aux_sym_data_statement_token1] = ACTIONS(1364), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1364), + [aux_sym_parallel_statement_token1] = ACTIONS(1364), + [aux_sym_sequence_statement_token1] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [aux_sym_command_name_token1] = ACTIONS(1364), + [aux_sym_command_name_token2] = ACTIONS(1364), + [aux_sym_command_name_token3] = ACTIONS(1364), + [aux_sym_command_name_token4] = ACTIONS(1364), + [aux_sym_command_name_token5] = ACTIONS(1364), + [aux_sym_command_name_token6] = ACTIONS(1364), + [aux_sym_command_name_token7] = ACTIONS(1364), + [aux_sym_command_name_token8] = ACTIONS(1364), + [aux_sym_command_name_token9] = ACTIONS(1364), + [aux_sym_command_name_token10] = ACTIONS(1364), + [aux_sym_command_name_token11] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [aux_sym_foreach_command_token1] = ACTIONS(1364), + [aux_sym_class_statement_token1] = ACTIONS(1364), + [aux_sym_enum_statement_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LPAREN] = ACTIONS(1364), + [anon_sym_AT_LBRACE] = ACTIONS(1364), + }, + [412] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1494), + [sym_hexadecimal_integer_literal] = ACTIONS(1494), + [sym_real_literal] = ACTIONS(1494), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1494), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1494), + [sym_verbatim_string_characters] = ACTIONS(1494), + [sym_verbatim_here_string_characters] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [aux_sym_comparison_operator_token37] = ACTIONS(1494), + [aux_sym_comparison_operator_token50] = ACTIONS(1494), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1494), + [anon_sym_DOLLAR_CARET] = ACTIONS(1494), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1494), + [anon_sym_DOLLAR_] = ACTIONS(1494), + [aux_sym_variable_token1] = ACTIONS(1494), + [aux_sym_variable_token2] = ACTIONS(1494), + [sym_braced_variable] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [aux_sym_if_statement_token1] = ACTIONS(1494), + [aux_sym_switch_statement_token1] = ACTIONS(1494), + [aux_sym_foreach_statement_token1] = ACTIONS(1494), + [aux_sym_for_statement_token1] = ACTIONS(1494), + [aux_sym_while_statement_token1] = ACTIONS(1494), + [aux_sym_do_statement_token1] = ACTIONS(1494), + [aux_sym_function_statement_token1] = ACTIONS(1494), + [aux_sym_function_statement_token2] = ACTIONS(1494), + [aux_sym_function_statement_token3] = ACTIONS(1494), + [aux_sym_flow_control_statement_token1] = ACTIONS(1494), + [aux_sym_flow_control_statement_token2] = ACTIONS(1494), + [aux_sym_flow_control_statement_token3] = ACTIONS(1494), + [aux_sym_flow_control_statement_token4] = ACTIONS(1494), + [aux_sym_flow_control_statement_token5] = ACTIONS(1494), + [sym_label] = ACTIONS(1494), + [aux_sym_trap_statement_token1] = ACTIONS(1494), + [aux_sym_try_statement_token1] = ACTIONS(1494), + [aux_sym_data_statement_token1] = ACTIONS(1494), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1494), + [aux_sym_parallel_statement_token1] = ACTIONS(1494), + [aux_sym_sequence_statement_token1] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [aux_sym_command_name_token1] = ACTIONS(1494), + [aux_sym_command_name_token2] = ACTIONS(1494), + [aux_sym_command_name_token3] = ACTIONS(1494), + [aux_sym_command_name_token4] = ACTIONS(1494), + [aux_sym_command_name_token5] = ACTIONS(1494), + [aux_sym_command_name_token6] = ACTIONS(1494), + [aux_sym_command_name_token7] = ACTIONS(1494), + [aux_sym_command_name_token8] = ACTIONS(1494), + [aux_sym_command_name_token9] = ACTIONS(1494), + [aux_sym_command_name_token10] = ACTIONS(1494), + [aux_sym_command_name_token11] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [aux_sym_foreach_command_token1] = ACTIONS(1494), + [aux_sym_class_statement_token1] = ACTIONS(1494), + [aux_sym_enum_statement_token1] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1494), + [anon_sym_AT_LPAREN] = ACTIONS(1494), + [anon_sym_AT_LBRACE] = ACTIONS(1494), + }, + [413] = { + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1432), + [sym_hexadecimal_integer_literal] = ACTIONS(1432), + [sym_real_literal] = ACTIONS(1432), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1432), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1432), + [sym_verbatim_string_characters] = ACTIONS(1432), + [sym_verbatim_here_string_characters] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [aux_sym_comparison_operator_token37] = ACTIONS(1432), + [aux_sym_comparison_operator_token50] = ACTIONS(1432), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1432), + [anon_sym_DOLLAR_CARET] = ACTIONS(1432), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1432), + [anon_sym_DOLLAR_] = ACTIONS(1432), + [aux_sym_variable_token1] = ACTIONS(1432), + [aux_sym_variable_token2] = ACTIONS(1432), + [sym_braced_variable] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [aux_sym_if_statement_token1] = ACTIONS(1432), + [aux_sym_switch_statement_token1] = ACTIONS(1432), + [aux_sym_foreach_statement_token1] = ACTIONS(1432), + [aux_sym_for_statement_token1] = ACTIONS(1432), + [aux_sym_while_statement_token1] = ACTIONS(1432), + [aux_sym_do_statement_token1] = ACTIONS(1432), + [aux_sym_function_statement_token1] = ACTIONS(1432), + [aux_sym_function_statement_token2] = ACTIONS(1432), + [aux_sym_function_statement_token3] = ACTIONS(1432), + [aux_sym_flow_control_statement_token1] = ACTIONS(1432), + [aux_sym_flow_control_statement_token2] = ACTIONS(1432), + [aux_sym_flow_control_statement_token3] = ACTIONS(1432), + [aux_sym_flow_control_statement_token4] = ACTIONS(1432), + [aux_sym_flow_control_statement_token5] = ACTIONS(1432), + [sym_label] = ACTIONS(1432), + [aux_sym_trap_statement_token1] = ACTIONS(1432), + [aux_sym_try_statement_token1] = ACTIONS(1432), + [aux_sym_data_statement_token1] = ACTIONS(1432), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1432), + [aux_sym_parallel_statement_token1] = ACTIONS(1432), + [aux_sym_sequence_statement_token1] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [aux_sym_command_name_token1] = ACTIONS(1432), + [aux_sym_command_name_token2] = ACTIONS(1432), + [aux_sym_command_name_token3] = ACTIONS(1432), + [aux_sym_command_name_token4] = ACTIONS(1432), + [aux_sym_command_name_token5] = ACTIONS(1432), + [aux_sym_command_name_token6] = ACTIONS(1432), + [aux_sym_command_name_token7] = ACTIONS(1432), + [aux_sym_command_name_token8] = ACTIONS(1432), + [aux_sym_command_name_token9] = ACTIONS(1432), + [aux_sym_command_name_token10] = ACTIONS(1432), + [aux_sym_command_name_token11] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [aux_sym_foreach_command_token1] = ACTIONS(1432), + [aux_sym_class_statement_token1] = ACTIONS(1432), + [aux_sym_enum_statement_token1] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1432), + [anon_sym_AT_LPAREN] = ACTIONS(1432), + [anon_sym_AT_LBRACE] = ACTIONS(1432), + }, + [414] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1496), + [sym_hexadecimal_integer_literal] = ACTIONS(1496), + [sym_real_literal] = ACTIONS(1496), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1496), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1496), + [sym_verbatim_string_characters] = ACTIONS(1496), + [sym_verbatim_here_string_characters] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [aux_sym_comparison_operator_token37] = ACTIONS(1496), + [aux_sym_comparison_operator_token50] = ACTIONS(1496), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1496), + [anon_sym_DOLLAR_CARET] = ACTIONS(1496), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1496), + [anon_sym_DOLLAR_] = ACTIONS(1496), + [aux_sym_variable_token1] = ACTIONS(1496), + [aux_sym_variable_token2] = ACTIONS(1496), + [sym_braced_variable] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [aux_sym_if_statement_token1] = ACTIONS(1496), + [aux_sym_switch_statement_token1] = ACTIONS(1496), + [aux_sym_foreach_statement_token1] = ACTIONS(1496), + [aux_sym_for_statement_token1] = ACTIONS(1496), + [aux_sym_while_statement_token1] = ACTIONS(1496), + [aux_sym_do_statement_token1] = ACTIONS(1496), + [aux_sym_function_statement_token1] = ACTIONS(1496), + [aux_sym_function_statement_token2] = ACTIONS(1496), + [aux_sym_function_statement_token3] = ACTIONS(1496), + [aux_sym_flow_control_statement_token1] = ACTIONS(1496), + [aux_sym_flow_control_statement_token2] = ACTIONS(1496), + [aux_sym_flow_control_statement_token3] = ACTIONS(1496), + [aux_sym_flow_control_statement_token4] = ACTIONS(1496), + [aux_sym_flow_control_statement_token5] = ACTIONS(1496), + [sym_label] = ACTIONS(1496), + [aux_sym_trap_statement_token1] = ACTIONS(1496), + [aux_sym_try_statement_token1] = ACTIONS(1496), + [aux_sym_data_statement_token1] = ACTIONS(1496), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1496), + [aux_sym_parallel_statement_token1] = ACTIONS(1496), + [aux_sym_sequence_statement_token1] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [aux_sym_command_name_token1] = ACTIONS(1496), + [aux_sym_command_name_token2] = ACTIONS(1496), + [aux_sym_command_name_token3] = ACTIONS(1496), + [aux_sym_command_name_token4] = ACTIONS(1496), + [aux_sym_command_name_token5] = ACTIONS(1496), + [aux_sym_command_name_token6] = ACTIONS(1496), + [aux_sym_command_name_token7] = ACTIONS(1496), + [aux_sym_command_name_token8] = ACTIONS(1496), + [aux_sym_command_name_token9] = ACTIONS(1496), + [aux_sym_command_name_token10] = ACTIONS(1496), + [aux_sym_command_name_token11] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [aux_sym_foreach_command_token1] = ACTIONS(1496), + [aux_sym_class_statement_token1] = ACTIONS(1496), + [aux_sym_enum_statement_token1] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1496), + [anon_sym_AT_LPAREN] = ACTIONS(1496), + [anon_sym_AT_LBRACE] = ACTIONS(1496), + }, + [415] = { + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1418), + [sym_hexadecimal_integer_literal] = ACTIONS(1418), + [sym_real_literal] = ACTIONS(1418), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1418), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1418), + [sym_verbatim_string_characters] = ACTIONS(1418), + [sym_verbatim_here_string_characters] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [aux_sym_comparison_operator_token37] = ACTIONS(1418), + [aux_sym_comparison_operator_token50] = ACTIONS(1418), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1418), + [anon_sym_DOLLAR_CARET] = ACTIONS(1418), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1418), + [anon_sym_DOLLAR_] = ACTIONS(1418), + [aux_sym_variable_token1] = ACTIONS(1418), + [aux_sym_variable_token2] = ACTIONS(1418), + [sym_braced_variable] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [aux_sym_if_statement_token1] = ACTIONS(1418), + [aux_sym_switch_statement_token1] = ACTIONS(1418), + [aux_sym_foreach_statement_token1] = ACTIONS(1418), + [aux_sym_for_statement_token1] = ACTIONS(1418), + [aux_sym_while_statement_token1] = ACTIONS(1418), + [aux_sym_do_statement_token1] = ACTIONS(1418), + [aux_sym_function_statement_token1] = ACTIONS(1418), + [aux_sym_function_statement_token2] = ACTIONS(1418), + [aux_sym_function_statement_token3] = ACTIONS(1418), + [aux_sym_flow_control_statement_token1] = ACTIONS(1418), + [aux_sym_flow_control_statement_token2] = ACTIONS(1418), + [aux_sym_flow_control_statement_token3] = ACTIONS(1418), + [aux_sym_flow_control_statement_token4] = ACTIONS(1418), + [aux_sym_flow_control_statement_token5] = ACTIONS(1418), + [sym_label] = ACTIONS(1418), + [aux_sym_trap_statement_token1] = ACTIONS(1418), + [aux_sym_try_statement_token1] = ACTIONS(1418), + [aux_sym_data_statement_token1] = ACTIONS(1418), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1418), + [aux_sym_parallel_statement_token1] = ACTIONS(1418), + [aux_sym_sequence_statement_token1] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [aux_sym_command_name_token1] = ACTIONS(1418), + [aux_sym_command_name_token2] = ACTIONS(1418), + [aux_sym_command_name_token3] = ACTIONS(1418), + [aux_sym_command_name_token4] = ACTIONS(1418), + [aux_sym_command_name_token5] = ACTIONS(1418), + [aux_sym_command_name_token6] = ACTIONS(1418), + [aux_sym_command_name_token7] = ACTIONS(1418), + [aux_sym_command_name_token8] = ACTIONS(1418), + [aux_sym_command_name_token9] = ACTIONS(1418), + [aux_sym_command_name_token10] = ACTIONS(1418), + [aux_sym_command_name_token11] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [aux_sym_foreach_command_token1] = ACTIONS(1418), + [aux_sym_class_statement_token1] = ACTIONS(1418), + [aux_sym_enum_statement_token1] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1418), + [anon_sym_AT_LPAREN] = ACTIONS(1418), + [anon_sym_AT_LBRACE] = ACTIONS(1418), + }, + [416] = { + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1408), + [sym_hexadecimal_integer_literal] = ACTIONS(1408), + [sym_real_literal] = ACTIONS(1408), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1408), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1408), + [sym_verbatim_string_characters] = ACTIONS(1408), + [sym_verbatim_here_string_characters] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [aux_sym_comparison_operator_token37] = ACTIONS(1408), + [aux_sym_comparison_operator_token50] = ACTIONS(1408), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1408), + [anon_sym_DOLLAR_CARET] = ACTIONS(1408), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1408), + [anon_sym_DOLLAR_] = ACTIONS(1408), + [aux_sym_variable_token1] = ACTIONS(1408), + [aux_sym_variable_token2] = ACTIONS(1408), + [sym_braced_variable] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [aux_sym_if_statement_token1] = ACTIONS(1408), + [aux_sym_switch_statement_token1] = ACTIONS(1408), + [aux_sym_foreach_statement_token1] = ACTIONS(1408), + [aux_sym_for_statement_token1] = ACTIONS(1408), + [aux_sym_while_statement_token1] = ACTIONS(1408), + [aux_sym_do_statement_token1] = ACTIONS(1408), + [aux_sym_function_statement_token1] = ACTIONS(1408), + [aux_sym_function_statement_token2] = ACTIONS(1408), + [aux_sym_function_statement_token3] = ACTIONS(1408), + [aux_sym_flow_control_statement_token1] = ACTIONS(1408), + [aux_sym_flow_control_statement_token2] = ACTIONS(1408), + [aux_sym_flow_control_statement_token3] = ACTIONS(1408), + [aux_sym_flow_control_statement_token4] = ACTIONS(1408), + [aux_sym_flow_control_statement_token5] = ACTIONS(1408), + [sym_label] = ACTIONS(1408), + [aux_sym_trap_statement_token1] = ACTIONS(1408), + [aux_sym_try_statement_token1] = ACTIONS(1408), + [aux_sym_data_statement_token1] = ACTIONS(1408), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1408), + [aux_sym_parallel_statement_token1] = ACTIONS(1408), + [aux_sym_sequence_statement_token1] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [aux_sym_command_name_token1] = ACTIONS(1408), + [aux_sym_command_name_token2] = ACTIONS(1408), + [aux_sym_command_name_token3] = ACTIONS(1408), + [aux_sym_command_name_token4] = ACTIONS(1408), + [aux_sym_command_name_token5] = ACTIONS(1408), + [aux_sym_command_name_token6] = ACTIONS(1408), + [aux_sym_command_name_token7] = ACTIONS(1408), + [aux_sym_command_name_token8] = ACTIONS(1408), + [aux_sym_command_name_token9] = ACTIONS(1408), + [aux_sym_command_name_token10] = ACTIONS(1408), + [aux_sym_command_name_token11] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [aux_sym_foreach_command_token1] = ACTIONS(1408), + [aux_sym_class_statement_token1] = ACTIONS(1408), + [aux_sym_enum_statement_token1] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1408), + [anon_sym_AT_LPAREN] = ACTIONS(1408), + [anon_sym_AT_LBRACE] = ACTIONS(1408), + }, + [417] = { + [ts_builtin_sym_end] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1412), + [sym_hexadecimal_integer_literal] = ACTIONS(1412), + [sym_real_literal] = ACTIONS(1412), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1412), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1412), + [sym_verbatim_string_characters] = ACTIONS(1412), + [sym_verbatim_here_string_characters] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [aux_sym_comparison_operator_token37] = ACTIONS(1412), + [aux_sym_comparison_operator_token50] = ACTIONS(1412), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1412), + [anon_sym_DOLLAR_CARET] = ACTIONS(1412), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1412), + [anon_sym_DOLLAR_] = ACTIONS(1412), + [aux_sym_variable_token1] = ACTIONS(1412), + [aux_sym_variable_token2] = ACTIONS(1412), + [sym_braced_variable] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [aux_sym_if_statement_token1] = ACTIONS(1412), + [aux_sym_switch_statement_token1] = ACTIONS(1412), + [aux_sym_foreach_statement_token1] = ACTIONS(1412), + [aux_sym_for_statement_token1] = ACTIONS(1412), + [aux_sym_while_statement_token1] = ACTIONS(1412), + [aux_sym_do_statement_token1] = ACTIONS(1412), + [aux_sym_function_statement_token1] = ACTIONS(1412), + [aux_sym_function_statement_token2] = ACTIONS(1412), + [aux_sym_function_statement_token3] = ACTIONS(1412), + [aux_sym_flow_control_statement_token1] = ACTIONS(1412), + [aux_sym_flow_control_statement_token2] = ACTIONS(1412), + [aux_sym_flow_control_statement_token3] = ACTIONS(1412), + [aux_sym_flow_control_statement_token4] = ACTIONS(1412), + [aux_sym_flow_control_statement_token5] = ACTIONS(1412), + [sym_label] = ACTIONS(1412), + [aux_sym_trap_statement_token1] = ACTIONS(1412), + [aux_sym_try_statement_token1] = ACTIONS(1412), + [aux_sym_data_statement_token1] = ACTIONS(1412), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1412), + [aux_sym_parallel_statement_token1] = ACTIONS(1412), + [aux_sym_sequence_statement_token1] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [aux_sym_command_name_token1] = ACTIONS(1412), + [aux_sym_command_name_token2] = ACTIONS(1412), + [aux_sym_command_name_token3] = ACTIONS(1412), + [aux_sym_command_name_token4] = ACTIONS(1412), + [aux_sym_command_name_token5] = ACTIONS(1412), + [aux_sym_command_name_token6] = ACTIONS(1412), + [aux_sym_command_name_token7] = ACTIONS(1412), + [aux_sym_command_name_token8] = ACTIONS(1412), + [aux_sym_command_name_token9] = ACTIONS(1412), + [aux_sym_command_name_token10] = ACTIONS(1412), + [aux_sym_command_name_token11] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [aux_sym_foreach_command_token1] = ACTIONS(1412), + [aux_sym_class_statement_token1] = ACTIONS(1412), + [aux_sym_enum_statement_token1] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1412), + [anon_sym_AT_LPAREN] = ACTIONS(1412), + [anon_sym_AT_LBRACE] = ACTIONS(1412), + }, + [418] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1424), + [sym_hexadecimal_integer_literal] = ACTIONS(1424), + [sym_real_literal] = ACTIONS(1424), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1424), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1424), + [sym_verbatim_string_characters] = ACTIONS(1424), + [sym_verbatim_here_string_characters] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [aux_sym_comparison_operator_token37] = ACTIONS(1424), + [aux_sym_comparison_operator_token50] = ACTIONS(1424), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1424), + [anon_sym_DOLLAR_CARET] = ACTIONS(1424), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1424), + [anon_sym_DOLLAR_] = ACTIONS(1424), + [aux_sym_variable_token1] = ACTIONS(1424), + [aux_sym_variable_token2] = ACTIONS(1424), + [sym_braced_variable] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [aux_sym_if_statement_token1] = ACTIONS(1424), + [aux_sym_switch_statement_token1] = ACTIONS(1424), + [aux_sym_foreach_statement_token1] = ACTIONS(1424), + [aux_sym_for_statement_token1] = ACTIONS(1424), + [aux_sym_while_statement_token1] = ACTIONS(1424), + [aux_sym_do_statement_token1] = ACTIONS(1424), + [aux_sym_function_statement_token1] = ACTIONS(1424), + [aux_sym_function_statement_token2] = ACTIONS(1424), + [aux_sym_function_statement_token3] = ACTIONS(1424), + [aux_sym_flow_control_statement_token1] = ACTIONS(1424), + [aux_sym_flow_control_statement_token2] = ACTIONS(1424), + [aux_sym_flow_control_statement_token3] = ACTIONS(1424), + [aux_sym_flow_control_statement_token4] = ACTIONS(1424), + [aux_sym_flow_control_statement_token5] = ACTIONS(1424), + [sym_label] = ACTIONS(1424), + [aux_sym_trap_statement_token1] = ACTIONS(1424), + [aux_sym_try_statement_token1] = ACTIONS(1424), + [aux_sym_data_statement_token1] = ACTIONS(1424), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1424), + [aux_sym_parallel_statement_token1] = ACTIONS(1424), + [aux_sym_sequence_statement_token1] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [aux_sym_command_name_token1] = ACTIONS(1424), + [aux_sym_command_name_token2] = ACTIONS(1424), + [aux_sym_command_name_token3] = ACTIONS(1424), + [aux_sym_command_name_token4] = ACTIONS(1424), + [aux_sym_command_name_token5] = ACTIONS(1424), + [aux_sym_command_name_token6] = ACTIONS(1424), + [aux_sym_command_name_token7] = ACTIONS(1424), + [aux_sym_command_name_token8] = ACTIONS(1424), + [aux_sym_command_name_token9] = ACTIONS(1424), + [aux_sym_command_name_token10] = ACTIONS(1424), + [aux_sym_command_name_token11] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [aux_sym_foreach_command_token1] = ACTIONS(1424), + [aux_sym_class_statement_token1] = ACTIONS(1424), + [aux_sym_enum_statement_token1] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1424), + [anon_sym_AT_LPAREN] = ACTIONS(1424), + [anon_sym_AT_LBRACE] = ACTIONS(1424), + }, + [419] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1436), + [sym_hexadecimal_integer_literal] = ACTIONS(1436), + [sym_real_literal] = ACTIONS(1436), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1436), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1436), + [sym_verbatim_string_characters] = ACTIONS(1436), + [sym_verbatim_here_string_characters] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [aux_sym_comparison_operator_token37] = ACTIONS(1436), + [aux_sym_comparison_operator_token50] = ACTIONS(1436), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1436), + [anon_sym_DOLLAR_CARET] = ACTIONS(1436), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1436), + [anon_sym_DOLLAR_] = ACTIONS(1436), + [aux_sym_variable_token1] = ACTIONS(1436), + [aux_sym_variable_token2] = ACTIONS(1436), + [sym_braced_variable] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [aux_sym_if_statement_token1] = ACTIONS(1436), + [aux_sym_switch_statement_token1] = ACTIONS(1436), + [aux_sym_foreach_statement_token1] = ACTIONS(1436), + [aux_sym_for_statement_token1] = ACTIONS(1436), + [aux_sym_while_statement_token1] = ACTIONS(1436), + [aux_sym_do_statement_token1] = ACTIONS(1436), + [aux_sym_function_statement_token1] = ACTIONS(1436), + [aux_sym_function_statement_token2] = ACTIONS(1436), + [aux_sym_function_statement_token3] = ACTIONS(1436), + [aux_sym_flow_control_statement_token1] = ACTIONS(1436), + [aux_sym_flow_control_statement_token2] = ACTIONS(1436), + [aux_sym_flow_control_statement_token3] = ACTIONS(1436), + [aux_sym_flow_control_statement_token4] = ACTIONS(1436), + [aux_sym_flow_control_statement_token5] = ACTIONS(1436), + [sym_label] = ACTIONS(1436), + [aux_sym_trap_statement_token1] = ACTIONS(1436), + [aux_sym_try_statement_token1] = ACTIONS(1436), + [aux_sym_data_statement_token1] = ACTIONS(1436), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1436), + [aux_sym_parallel_statement_token1] = ACTIONS(1436), + [aux_sym_sequence_statement_token1] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [aux_sym_command_name_token1] = ACTIONS(1436), + [aux_sym_command_name_token2] = ACTIONS(1436), + [aux_sym_command_name_token3] = ACTIONS(1436), + [aux_sym_command_name_token4] = ACTIONS(1436), + [aux_sym_command_name_token5] = ACTIONS(1436), + [aux_sym_command_name_token6] = ACTIONS(1436), + [aux_sym_command_name_token7] = ACTIONS(1436), + [aux_sym_command_name_token8] = ACTIONS(1436), + [aux_sym_command_name_token9] = ACTIONS(1436), + [aux_sym_command_name_token10] = ACTIONS(1436), + [aux_sym_command_name_token11] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [aux_sym_foreach_command_token1] = ACTIONS(1436), + [aux_sym_class_statement_token1] = ACTIONS(1436), + [aux_sym_enum_statement_token1] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1436), + [anon_sym_AT_LPAREN] = ACTIONS(1436), + [anon_sym_AT_LBRACE] = ACTIONS(1436), + }, + [420] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1414), + [sym_hexadecimal_integer_literal] = ACTIONS(1414), + [sym_real_literal] = ACTIONS(1414), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1414), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1414), + [sym_verbatim_string_characters] = ACTIONS(1414), + [sym_verbatim_here_string_characters] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [aux_sym_comparison_operator_token37] = ACTIONS(1414), + [aux_sym_comparison_operator_token50] = ACTIONS(1414), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1414), + [anon_sym_DOLLAR_CARET] = ACTIONS(1414), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1414), + [anon_sym_DOLLAR_] = ACTIONS(1414), + [aux_sym_variable_token1] = ACTIONS(1414), + [aux_sym_variable_token2] = ACTIONS(1414), + [sym_braced_variable] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [aux_sym_if_statement_token1] = ACTIONS(1414), + [aux_sym_switch_statement_token1] = ACTIONS(1414), + [aux_sym_foreach_statement_token1] = ACTIONS(1414), + [aux_sym_for_statement_token1] = ACTIONS(1414), + [aux_sym_while_statement_token1] = ACTIONS(1414), + [aux_sym_do_statement_token1] = ACTIONS(1414), + [aux_sym_function_statement_token1] = ACTIONS(1414), + [aux_sym_function_statement_token2] = ACTIONS(1414), + [aux_sym_function_statement_token3] = ACTIONS(1414), + [aux_sym_flow_control_statement_token1] = ACTIONS(1414), + [aux_sym_flow_control_statement_token2] = ACTIONS(1414), + [aux_sym_flow_control_statement_token3] = ACTIONS(1414), + [aux_sym_flow_control_statement_token4] = ACTIONS(1414), + [aux_sym_flow_control_statement_token5] = ACTIONS(1414), + [sym_label] = ACTIONS(1414), + [aux_sym_trap_statement_token1] = ACTIONS(1414), + [aux_sym_try_statement_token1] = ACTIONS(1414), + [aux_sym_data_statement_token1] = ACTIONS(1414), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1414), + [aux_sym_parallel_statement_token1] = ACTIONS(1414), + [aux_sym_sequence_statement_token1] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [aux_sym_command_name_token1] = ACTIONS(1414), + [aux_sym_command_name_token2] = ACTIONS(1414), + [aux_sym_command_name_token3] = ACTIONS(1414), + [aux_sym_command_name_token4] = ACTIONS(1414), + [aux_sym_command_name_token5] = ACTIONS(1414), + [aux_sym_command_name_token6] = ACTIONS(1414), + [aux_sym_command_name_token7] = ACTIONS(1414), + [aux_sym_command_name_token8] = ACTIONS(1414), + [aux_sym_command_name_token9] = ACTIONS(1414), + [aux_sym_command_name_token10] = ACTIONS(1414), + [aux_sym_command_name_token11] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [aux_sym_foreach_command_token1] = ACTIONS(1414), + [aux_sym_class_statement_token1] = ACTIONS(1414), + [aux_sym_enum_statement_token1] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1414), + [anon_sym_AT_LPAREN] = ACTIONS(1414), + [anon_sym_AT_LBRACE] = ACTIONS(1414), + }, + [421] = { + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1460), + [sym_hexadecimal_integer_literal] = ACTIONS(1460), + [sym_real_literal] = ACTIONS(1460), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1460), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1460), + [sym_verbatim_string_characters] = ACTIONS(1460), + [sym_verbatim_here_string_characters] = ACTIONS(1460), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [aux_sym_comparison_operator_token37] = ACTIONS(1460), + [aux_sym_comparison_operator_token50] = ACTIONS(1460), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1460), + [anon_sym_DOLLAR_CARET] = ACTIONS(1460), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1460), + [anon_sym_DOLLAR_] = ACTIONS(1460), + [aux_sym_variable_token1] = ACTIONS(1460), + [aux_sym_variable_token2] = ACTIONS(1460), + [sym_braced_variable] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [aux_sym_if_statement_token1] = ACTIONS(1460), + [aux_sym_switch_statement_token1] = ACTIONS(1460), + [aux_sym_foreach_statement_token1] = ACTIONS(1460), + [aux_sym_for_statement_token1] = ACTIONS(1460), + [aux_sym_while_statement_token1] = ACTIONS(1460), + [aux_sym_do_statement_token1] = ACTIONS(1460), + [aux_sym_function_statement_token1] = ACTIONS(1460), + [aux_sym_function_statement_token2] = ACTIONS(1460), + [aux_sym_function_statement_token3] = ACTIONS(1460), + [aux_sym_flow_control_statement_token1] = ACTIONS(1460), + [aux_sym_flow_control_statement_token2] = ACTIONS(1460), + [aux_sym_flow_control_statement_token3] = ACTIONS(1460), + [aux_sym_flow_control_statement_token4] = ACTIONS(1460), + [aux_sym_flow_control_statement_token5] = ACTIONS(1460), + [sym_label] = ACTIONS(1460), + [aux_sym_trap_statement_token1] = ACTIONS(1460), + [aux_sym_try_statement_token1] = ACTIONS(1460), + [aux_sym_data_statement_token1] = ACTIONS(1460), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1460), + [aux_sym_parallel_statement_token1] = ACTIONS(1460), + [aux_sym_sequence_statement_token1] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [aux_sym_command_name_token1] = ACTIONS(1460), + [aux_sym_command_name_token2] = ACTIONS(1460), + [aux_sym_command_name_token3] = ACTIONS(1460), + [aux_sym_command_name_token4] = ACTIONS(1460), + [aux_sym_command_name_token5] = ACTIONS(1460), + [aux_sym_command_name_token6] = ACTIONS(1460), + [aux_sym_command_name_token7] = ACTIONS(1460), + [aux_sym_command_name_token8] = ACTIONS(1460), + [aux_sym_command_name_token9] = ACTIONS(1460), + [aux_sym_command_name_token10] = ACTIONS(1460), + [aux_sym_command_name_token11] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1460), + [aux_sym_foreach_command_token1] = ACTIONS(1460), + [aux_sym_class_statement_token1] = ACTIONS(1460), + [aux_sym_enum_statement_token1] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), + [anon_sym_AT_LPAREN] = ACTIONS(1460), + [anon_sym_AT_LBRACE] = ACTIONS(1460), + }, + [422] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1428), + [sym_hexadecimal_integer_literal] = ACTIONS(1428), + [sym_real_literal] = ACTIONS(1428), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1428), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1428), + [sym_verbatim_string_characters] = ACTIONS(1428), + [sym_verbatim_here_string_characters] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [aux_sym_comparison_operator_token37] = ACTIONS(1428), + [aux_sym_comparison_operator_token50] = ACTIONS(1428), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1428), + [anon_sym_DOLLAR_CARET] = ACTIONS(1428), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1428), + [anon_sym_DOLLAR_] = ACTIONS(1428), + [aux_sym_variable_token1] = ACTIONS(1428), + [aux_sym_variable_token2] = ACTIONS(1428), + [sym_braced_variable] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [aux_sym_if_statement_token1] = ACTIONS(1428), + [aux_sym_switch_statement_token1] = ACTIONS(1428), + [aux_sym_foreach_statement_token1] = ACTIONS(1428), + [aux_sym_for_statement_token1] = ACTIONS(1428), + [aux_sym_while_statement_token1] = ACTIONS(1428), + [aux_sym_do_statement_token1] = ACTIONS(1428), + [aux_sym_function_statement_token1] = ACTIONS(1428), + [aux_sym_function_statement_token2] = ACTIONS(1428), + [aux_sym_function_statement_token3] = ACTIONS(1428), + [aux_sym_flow_control_statement_token1] = ACTIONS(1428), + [aux_sym_flow_control_statement_token2] = ACTIONS(1428), + [aux_sym_flow_control_statement_token3] = ACTIONS(1428), + [aux_sym_flow_control_statement_token4] = ACTIONS(1428), + [aux_sym_flow_control_statement_token5] = ACTIONS(1428), + [sym_label] = ACTIONS(1428), + [aux_sym_trap_statement_token1] = ACTIONS(1428), + [aux_sym_try_statement_token1] = ACTIONS(1428), + [aux_sym_data_statement_token1] = ACTIONS(1428), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1428), + [aux_sym_parallel_statement_token1] = ACTIONS(1428), + [aux_sym_sequence_statement_token1] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [aux_sym_command_name_token1] = ACTIONS(1428), + [aux_sym_command_name_token2] = ACTIONS(1428), + [aux_sym_command_name_token3] = ACTIONS(1428), + [aux_sym_command_name_token4] = ACTIONS(1428), + [aux_sym_command_name_token5] = ACTIONS(1428), + [aux_sym_command_name_token6] = ACTIONS(1428), + [aux_sym_command_name_token7] = ACTIONS(1428), + [aux_sym_command_name_token8] = ACTIONS(1428), + [aux_sym_command_name_token9] = ACTIONS(1428), + [aux_sym_command_name_token10] = ACTIONS(1428), + [aux_sym_command_name_token11] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [aux_sym_foreach_command_token1] = ACTIONS(1428), + [aux_sym_class_statement_token1] = ACTIONS(1428), + [aux_sym_enum_statement_token1] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1428), + [anon_sym_AT_LPAREN] = ACTIONS(1428), + [anon_sym_AT_LBRACE] = ACTIONS(1428), }, - [366] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1807), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [423] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1486), + [sym_hexadecimal_integer_literal] = ACTIONS(1486), + [sym_real_literal] = ACTIONS(1486), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1486), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1486), + [sym_verbatim_string_characters] = ACTIONS(1486), + [sym_verbatim_here_string_characters] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [aux_sym_comparison_operator_token37] = ACTIONS(1486), + [aux_sym_comparison_operator_token50] = ACTIONS(1486), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1486), + [anon_sym_DOLLAR_CARET] = ACTIONS(1486), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1486), + [anon_sym_DOLLAR_] = ACTIONS(1486), + [aux_sym_variable_token1] = ACTIONS(1486), + [aux_sym_variable_token2] = ACTIONS(1486), + [sym_braced_variable] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [aux_sym_if_statement_token1] = ACTIONS(1486), + [aux_sym_switch_statement_token1] = ACTIONS(1486), + [aux_sym_foreach_statement_token1] = ACTIONS(1486), + [aux_sym_for_statement_token1] = ACTIONS(1486), + [aux_sym_while_statement_token1] = ACTIONS(1486), + [aux_sym_do_statement_token1] = ACTIONS(1486), + [aux_sym_function_statement_token1] = ACTIONS(1486), + [aux_sym_function_statement_token2] = ACTIONS(1486), + [aux_sym_function_statement_token3] = ACTIONS(1486), + [aux_sym_flow_control_statement_token1] = ACTIONS(1486), + [aux_sym_flow_control_statement_token2] = ACTIONS(1486), + [aux_sym_flow_control_statement_token3] = ACTIONS(1486), + [aux_sym_flow_control_statement_token4] = ACTIONS(1486), + [aux_sym_flow_control_statement_token5] = ACTIONS(1486), + [sym_label] = ACTIONS(1486), + [aux_sym_trap_statement_token1] = ACTIONS(1486), + [aux_sym_try_statement_token1] = ACTIONS(1486), + [aux_sym_data_statement_token1] = ACTIONS(1486), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1486), + [aux_sym_parallel_statement_token1] = ACTIONS(1486), + [aux_sym_sequence_statement_token1] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [aux_sym_command_name_token1] = ACTIONS(1486), + [aux_sym_command_name_token2] = ACTIONS(1486), + [aux_sym_command_name_token3] = ACTIONS(1486), + [aux_sym_command_name_token4] = ACTIONS(1486), + [aux_sym_command_name_token5] = ACTIONS(1486), + [aux_sym_command_name_token6] = ACTIONS(1486), + [aux_sym_command_name_token7] = ACTIONS(1486), + [aux_sym_command_name_token8] = ACTIONS(1486), + [aux_sym_command_name_token9] = ACTIONS(1486), + [aux_sym_command_name_token10] = ACTIONS(1486), + [aux_sym_command_name_token11] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [aux_sym_foreach_command_token1] = ACTIONS(1486), + [aux_sym_class_statement_token1] = ACTIONS(1486), + [aux_sym_enum_statement_token1] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1486), + [anon_sym_AT_LPAREN] = ACTIONS(1486), + [anon_sym_AT_LBRACE] = ACTIONS(1486), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1382), + [sym_hexadecimal_integer_literal] = ACTIONS(1382), + [sym_real_literal] = ACTIONS(1382), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1382), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1382), + [sym_verbatim_string_characters] = ACTIONS(1382), + [sym_verbatim_here_string_characters] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [aux_sym_comparison_operator_token37] = ACTIONS(1382), + [aux_sym_comparison_operator_token50] = ACTIONS(1382), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1382), + [anon_sym_DOLLAR_CARET] = ACTIONS(1382), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1382), + [anon_sym_DOLLAR_] = ACTIONS(1382), + [aux_sym_variable_token1] = ACTIONS(1382), + [aux_sym_variable_token2] = ACTIONS(1382), + [sym_braced_variable] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [aux_sym_if_statement_token1] = ACTIONS(1382), + [aux_sym_switch_statement_token1] = ACTIONS(1382), + [aux_sym_foreach_statement_token1] = ACTIONS(1382), + [aux_sym_for_statement_token1] = ACTIONS(1382), + [aux_sym_while_statement_token1] = ACTIONS(1382), + [aux_sym_do_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token1] = ACTIONS(1382), + [aux_sym_function_statement_token2] = ACTIONS(1382), + [aux_sym_function_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token1] = ACTIONS(1382), + [aux_sym_flow_control_statement_token2] = ACTIONS(1382), + [aux_sym_flow_control_statement_token3] = ACTIONS(1382), + [aux_sym_flow_control_statement_token4] = ACTIONS(1382), + [aux_sym_flow_control_statement_token5] = ACTIONS(1382), + [sym_label] = ACTIONS(1382), + [aux_sym_trap_statement_token1] = ACTIONS(1382), + [aux_sym_try_statement_token1] = ACTIONS(1382), + [aux_sym_data_statement_token1] = ACTIONS(1382), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1382), + [aux_sym_parallel_statement_token1] = ACTIONS(1382), + [aux_sym_sequence_statement_token1] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_command_name_token1] = ACTIONS(1382), + [aux_sym_command_name_token2] = ACTIONS(1382), + [aux_sym_command_name_token3] = ACTIONS(1382), + [aux_sym_command_name_token4] = ACTIONS(1382), + [aux_sym_command_name_token5] = ACTIONS(1382), + [aux_sym_command_name_token6] = ACTIONS(1382), + [aux_sym_command_name_token7] = ACTIONS(1382), + [aux_sym_command_name_token8] = ACTIONS(1382), + [aux_sym_command_name_token9] = ACTIONS(1382), + [aux_sym_command_name_token10] = ACTIONS(1382), + [aux_sym_command_name_token11] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [aux_sym_foreach_command_token1] = ACTIONS(1382), + [aux_sym_class_statement_token1] = ACTIONS(1382), + [aux_sym_enum_statement_token1] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LPAREN] = ACTIONS(1382), + [anon_sym_AT_LBRACE] = ACTIONS(1382), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1446), + [sym_hexadecimal_integer_literal] = ACTIONS(1446), + [sym_real_literal] = ACTIONS(1446), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1446), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1446), + [sym_verbatim_string_characters] = ACTIONS(1446), + [sym_verbatim_here_string_characters] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [aux_sym_comparison_operator_token37] = ACTIONS(1446), + [aux_sym_comparison_operator_token50] = ACTIONS(1446), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1446), + [anon_sym_DOLLAR_CARET] = ACTIONS(1446), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1446), + [anon_sym_DOLLAR_] = ACTIONS(1446), + [aux_sym_variable_token1] = ACTIONS(1446), + [aux_sym_variable_token2] = ACTIONS(1446), + [sym_braced_variable] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [aux_sym_if_statement_token1] = ACTIONS(1446), + [aux_sym_switch_statement_token1] = ACTIONS(1446), + [aux_sym_foreach_statement_token1] = ACTIONS(1446), + [aux_sym_for_statement_token1] = ACTIONS(1446), + [aux_sym_while_statement_token1] = ACTIONS(1446), + [aux_sym_do_statement_token1] = ACTIONS(1446), + [aux_sym_function_statement_token1] = ACTIONS(1446), + [aux_sym_function_statement_token2] = ACTIONS(1446), + [aux_sym_function_statement_token3] = ACTIONS(1446), + [aux_sym_flow_control_statement_token1] = ACTIONS(1446), + [aux_sym_flow_control_statement_token2] = ACTIONS(1446), + [aux_sym_flow_control_statement_token3] = ACTIONS(1446), + [aux_sym_flow_control_statement_token4] = ACTIONS(1446), + [aux_sym_flow_control_statement_token5] = ACTIONS(1446), + [sym_label] = ACTIONS(1446), + [aux_sym_trap_statement_token1] = ACTIONS(1446), + [aux_sym_try_statement_token1] = ACTIONS(1446), + [aux_sym_data_statement_token1] = ACTIONS(1446), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1446), + [aux_sym_parallel_statement_token1] = ACTIONS(1446), + [aux_sym_sequence_statement_token1] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [aux_sym_command_name_token1] = ACTIONS(1446), + [aux_sym_command_name_token2] = ACTIONS(1446), + [aux_sym_command_name_token3] = ACTIONS(1446), + [aux_sym_command_name_token4] = ACTIONS(1446), + [aux_sym_command_name_token5] = ACTIONS(1446), + [aux_sym_command_name_token6] = ACTIONS(1446), + [aux_sym_command_name_token7] = ACTIONS(1446), + [aux_sym_command_name_token8] = ACTIONS(1446), + [aux_sym_command_name_token9] = ACTIONS(1446), + [aux_sym_command_name_token10] = ACTIONS(1446), + [aux_sym_command_name_token11] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [aux_sym_foreach_command_token1] = ACTIONS(1446), + [aux_sym_class_statement_token1] = ACTIONS(1446), + [aux_sym_enum_statement_token1] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), + [anon_sym_AT_LPAREN] = ACTIONS(1446), + [anon_sym_AT_LBRACE] = ACTIONS(1446), + }, + [426] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1594), + [sym_hexadecimal_integer_literal] = ACTIONS(1594), + [sym_real_literal] = ACTIONS(1594), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1594), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1594), + [sym_verbatim_string_characters] = ACTIONS(1594), + [sym_verbatim_here_string_characters] = ACTIONS(1594), + [anon_sym_DOT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [aux_sym_comparison_operator_token37] = ACTIONS(1594), + [aux_sym_comparison_operator_token50] = ACTIONS(1594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1594), + [anon_sym_DOLLAR_CARET] = ACTIONS(1594), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1594), + [anon_sym_DOLLAR_] = ACTIONS(1594), + [aux_sym_variable_token1] = ACTIONS(1594), + [aux_sym_variable_token2] = ACTIONS(1594), + [sym_braced_variable] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [aux_sym_if_statement_token1] = ACTIONS(1594), + [aux_sym_switch_statement_token1] = ACTIONS(1594), + [aux_sym_foreach_statement_token1] = ACTIONS(1594), + [aux_sym_for_statement_token1] = ACTIONS(1594), + [aux_sym_while_statement_token1] = ACTIONS(1594), + [aux_sym_do_statement_token1] = ACTIONS(1594), + [aux_sym_function_statement_token1] = ACTIONS(1594), + [aux_sym_function_statement_token2] = ACTIONS(1594), + [aux_sym_function_statement_token3] = ACTIONS(1594), + [aux_sym_flow_control_statement_token1] = ACTIONS(1594), + [aux_sym_flow_control_statement_token2] = ACTIONS(1594), + [aux_sym_flow_control_statement_token3] = ACTIONS(1594), + [aux_sym_flow_control_statement_token4] = ACTIONS(1594), + [aux_sym_flow_control_statement_token5] = ACTIONS(1594), + [sym_label] = ACTIONS(1594), + [aux_sym_trap_statement_token1] = ACTIONS(1594), + [aux_sym_try_statement_token1] = ACTIONS(1594), + [aux_sym_data_statement_token1] = ACTIONS(1594), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1594), + [aux_sym_parallel_statement_token1] = ACTIONS(1594), + [aux_sym_sequence_statement_token1] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [aux_sym_command_name_token1] = ACTIONS(1594), + [aux_sym_command_name_token2] = ACTIONS(1594), + [aux_sym_command_name_token3] = ACTIONS(1594), + [aux_sym_command_name_token4] = ACTIONS(1594), + [aux_sym_command_name_token5] = ACTIONS(1594), + [aux_sym_command_name_token6] = ACTIONS(1594), + [aux_sym_command_name_token7] = ACTIONS(1594), + [aux_sym_command_name_token8] = ACTIONS(1594), + [aux_sym_command_name_token9] = ACTIONS(1594), + [aux_sym_command_name_token10] = ACTIONS(1594), + [aux_sym_command_name_token11] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(1594), + [aux_sym_foreach_command_token1] = ACTIONS(1594), + [aux_sym_class_statement_token1] = ACTIONS(1594), + [aux_sym_enum_statement_token1] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1594), + [anon_sym_AT_LPAREN] = ACTIONS(1594), + [anon_sym_AT_LBRACE] = ACTIONS(1594), + }, + [427] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1315), + [sym_hexadecimal_integer_literal] = ACTIONS(1315), + [sym_real_literal] = ACTIONS(1315), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1315), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1315), + [sym_verbatim_string_characters] = ACTIONS(1315), + [sym_verbatim_here_string_characters] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [aux_sym_comparison_operator_token37] = ACTIONS(1315), + [aux_sym_comparison_operator_token50] = ACTIONS(1315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1315), + [anon_sym_DOLLAR_CARET] = ACTIONS(1315), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1315), + [anon_sym_DOLLAR_] = ACTIONS(1315), + [aux_sym_variable_token1] = ACTIONS(1315), + [aux_sym_variable_token2] = ACTIONS(1315), + [sym_braced_variable] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [aux_sym_if_statement_token1] = ACTIONS(1315), + [aux_sym_switch_statement_token1] = ACTIONS(1315), + [aux_sym_foreach_statement_token1] = ACTIONS(1315), + [aux_sym_for_statement_token1] = ACTIONS(1315), + [aux_sym_while_statement_token1] = ACTIONS(1315), + [aux_sym_do_statement_token1] = ACTIONS(1315), + [aux_sym_function_statement_token1] = ACTIONS(1315), + [aux_sym_function_statement_token2] = ACTIONS(1315), + [aux_sym_function_statement_token3] = ACTIONS(1315), + [aux_sym_flow_control_statement_token1] = ACTIONS(1315), + [aux_sym_flow_control_statement_token2] = ACTIONS(1315), + [aux_sym_flow_control_statement_token3] = ACTIONS(1315), + [aux_sym_flow_control_statement_token4] = ACTIONS(1315), + [aux_sym_flow_control_statement_token5] = ACTIONS(1315), + [sym_label] = ACTIONS(1315), + [aux_sym_trap_statement_token1] = ACTIONS(1315), + [aux_sym_try_statement_token1] = ACTIONS(1315), + [aux_sym_data_statement_token1] = ACTIONS(1315), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1315), + [aux_sym_parallel_statement_token1] = ACTIONS(1315), + [aux_sym_sequence_statement_token1] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [aux_sym_command_name_token1] = ACTIONS(1315), + [aux_sym_command_name_token2] = ACTIONS(1315), + [aux_sym_command_name_token3] = ACTIONS(1315), + [aux_sym_command_name_token4] = ACTIONS(1315), + [aux_sym_command_name_token5] = ACTIONS(1315), + [aux_sym_command_name_token6] = ACTIONS(1315), + [aux_sym_command_name_token7] = ACTIONS(1315), + [aux_sym_command_name_token8] = ACTIONS(1315), + [aux_sym_command_name_token9] = ACTIONS(1315), + [aux_sym_command_name_token10] = ACTIONS(1315), + [aux_sym_command_name_token11] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1315), + [aux_sym_foreach_command_token1] = ACTIONS(1315), + [aux_sym_class_statement_token1] = ACTIONS(1315), + [aux_sym_enum_statement_token1] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1315), + [anon_sym_AT_LPAREN] = ACTIONS(1315), + [anon_sym_AT_LBRACE] = ACTIONS(1315), + }, + [428] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1326), + [sym_hexadecimal_integer_literal] = ACTIONS(1326), + [sym_real_literal] = ACTIONS(1326), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1326), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1326), + [sym_verbatim_string_characters] = ACTIONS(1326), + [sym_verbatim_here_string_characters] = ACTIONS(1326), + [anon_sym_DOT] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [aux_sym_comparison_operator_token37] = ACTIONS(1326), + [aux_sym_comparison_operator_token50] = ACTIONS(1326), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1326), + [anon_sym_DOLLAR_CARET] = ACTIONS(1326), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_] = ACTIONS(1326), + [aux_sym_variable_token1] = ACTIONS(1326), + [aux_sym_variable_token2] = ACTIONS(1326), + [sym_braced_variable] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_COMMA] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [aux_sym_if_statement_token1] = ACTIONS(1326), + [aux_sym_switch_statement_token1] = ACTIONS(1326), + [aux_sym_foreach_statement_token1] = ACTIONS(1326), + [aux_sym_for_statement_token1] = ACTIONS(1326), + [aux_sym_while_statement_token1] = ACTIONS(1326), + [aux_sym_do_statement_token1] = ACTIONS(1326), + [aux_sym_function_statement_token1] = ACTIONS(1326), + [aux_sym_function_statement_token2] = ACTIONS(1326), + [aux_sym_function_statement_token3] = ACTIONS(1326), + [aux_sym_flow_control_statement_token1] = ACTIONS(1326), + [aux_sym_flow_control_statement_token2] = ACTIONS(1326), + [aux_sym_flow_control_statement_token3] = ACTIONS(1326), + [aux_sym_flow_control_statement_token4] = ACTIONS(1326), + [aux_sym_flow_control_statement_token5] = ACTIONS(1326), + [sym_label] = ACTIONS(1326), + [aux_sym_trap_statement_token1] = ACTIONS(1326), + [aux_sym_try_statement_token1] = ACTIONS(1326), + [aux_sym_data_statement_token1] = ACTIONS(1326), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1326), + [aux_sym_parallel_statement_token1] = ACTIONS(1326), + [aux_sym_sequence_statement_token1] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [aux_sym_command_name_token1] = ACTIONS(1326), + [aux_sym_command_name_token2] = ACTIONS(1326), + [aux_sym_command_name_token3] = ACTIONS(1326), + [aux_sym_command_name_token4] = ACTIONS(1326), + [aux_sym_command_name_token5] = ACTIONS(1326), + [aux_sym_command_name_token6] = ACTIONS(1326), + [aux_sym_command_name_token7] = ACTIONS(1326), + [aux_sym_command_name_token8] = ACTIONS(1326), + [aux_sym_command_name_token9] = ACTIONS(1326), + [aux_sym_command_name_token10] = ACTIONS(1326), + [aux_sym_command_name_token11] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [aux_sym_foreach_command_token1] = ACTIONS(1326), + [aux_sym_class_statement_token1] = ACTIONS(1326), + [aux_sym_enum_statement_token1] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_AT_LPAREN] = ACTIONS(1326), + [anon_sym_AT_LBRACE] = ACTIONS(1326), + }, + [429] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1330), + [sym_hexadecimal_integer_literal] = ACTIONS(1330), + [sym_real_literal] = ACTIONS(1330), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1330), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1330), + [sym_verbatim_string_characters] = ACTIONS(1330), + [sym_verbatim_here_string_characters] = ACTIONS(1330), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [aux_sym_comparison_operator_token37] = ACTIONS(1330), + [aux_sym_comparison_operator_token50] = ACTIONS(1330), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1330), + [anon_sym_DOLLAR_CARET] = ACTIONS(1330), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_] = ACTIONS(1330), + [aux_sym_variable_token1] = ACTIONS(1330), + [aux_sym_variable_token2] = ACTIONS(1330), + [sym_braced_variable] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [aux_sym_if_statement_token1] = ACTIONS(1330), + [aux_sym_switch_statement_token1] = ACTIONS(1330), + [aux_sym_foreach_statement_token1] = ACTIONS(1330), + [aux_sym_for_statement_token1] = ACTIONS(1330), + [aux_sym_while_statement_token1] = ACTIONS(1330), + [aux_sym_do_statement_token1] = ACTIONS(1330), + [aux_sym_function_statement_token1] = ACTIONS(1330), + [aux_sym_function_statement_token2] = ACTIONS(1330), + [aux_sym_function_statement_token3] = ACTIONS(1330), + [aux_sym_flow_control_statement_token1] = ACTIONS(1330), + [aux_sym_flow_control_statement_token2] = ACTIONS(1330), + [aux_sym_flow_control_statement_token3] = ACTIONS(1330), + [aux_sym_flow_control_statement_token4] = ACTIONS(1330), + [aux_sym_flow_control_statement_token5] = ACTIONS(1330), + [sym_label] = ACTIONS(1330), + [aux_sym_trap_statement_token1] = ACTIONS(1330), + [aux_sym_try_statement_token1] = ACTIONS(1330), + [aux_sym_data_statement_token1] = ACTIONS(1330), + [aux_sym_inlinescript_statement_token1] = ACTIONS(1330), + [aux_sym_parallel_statement_token1] = ACTIONS(1330), + [aux_sym_sequence_statement_token1] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [aux_sym_command_name_token1] = ACTIONS(1330), + [aux_sym_command_name_token2] = ACTIONS(1330), + [aux_sym_command_name_token3] = ACTIONS(1330), + [aux_sym_command_name_token4] = ACTIONS(1330), + [aux_sym_command_name_token5] = ACTIONS(1330), + [aux_sym_command_name_token6] = ACTIONS(1330), + [aux_sym_command_name_token7] = ACTIONS(1330), + [aux_sym_command_name_token8] = ACTIONS(1330), + [aux_sym_command_name_token9] = ACTIONS(1330), + [aux_sym_command_name_token10] = ACTIONS(1330), + [aux_sym_command_name_token11] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [aux_sym_foreach_command_token1] = ACTIONS(1330), + [aux_sym_class_statement_token1] = ACTIONS(1330), + [aux_sym_enum_statement_token1] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_AT_LPAREN] = ACTIONS(1330), + [anon_sym_AT_LBRACE] = ACTIONS(1330), + }, + [430] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1578), + [sym_logical_expression] = STATE(1356), + [sym_bitwise_expression] = STATE(1274), + [sym_comparison_expression] = STATE(556), + [sym_additive_expression] = STATE(541), + [sym_multiplicative_expression] = STATE(490), + [sym_format_expression] = STATE(447), + [sym_range_expression] = STATE(446), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(439), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_attribute_arguments] = STATE(1787), + [sym_attribute_argument] = STATE(1455), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), + [sym_real_literal] = ACTIONS(547), [aux_sym_expandable_string_literal_token1] = ACTIONS(125), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), [sym_verbatim_string_characters] = ACTIONS(129), [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), + [sym_simple_name] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), [anon_sym_DOLLAR_CARET] = ACTIONS(135), [anon_sym_DOLLAR_QMARK] = ACTIONS(135), @@ -62891,132 +69609,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(135), [sym_braced_variable] = ACTIONS(135), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(551), [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_AT_LPAREN] = ACTIONS(151), [anon_sym_AT_LBRACE] = ACTIONS(153), }, - [367] = { - [sym__literal] = STATE(294), - [sym_integer_literal] = STATE(294), - [sym_string_literal] = STATE(294), - [sym_expandable_string_literal] = STATE(138), - [sym_expandable_here_string_literal] = STATE(138), - [sym_variable] = STATE(294), - [sym__expression] = STATE(2109), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1325), - [sym_comparison_expression] = STATE(570), - [sym_additive_expression] = STATE(547), - [sym_multiplicative_expression] = STATE(382), - [sym_format_expression] = STATE(345), - [sym_range_expression] = STATE(346), - [sym_array_literal_expression] = STATE(185), - [sym_unary_expression] = STATE(304), - [sym_expression_with_unary_operator] = STATE(178), - [sym_pre_increment_expression] = STATE(176), - [sym_pre_decrement_expression] = STATE(176), - [sym_cast_expression] = STATE(176), - [sym__primary_expression] = STATE(294), - [sym__value] = STATE(294), - [sym_parenthesized_expression] = STATE(294), - [sym_sub_expression] = STATE(294), - [sym_array_expression] = STATE(294), - [sym_script_block_expression] = STATE(294), - [sym_hash_literal_expression] = STATE(294), - [sym_post_increment_expression] = STATE(294), - [sym_post_decrement_expression] = STATE(294), - [sym_member_access] = STATE(294), - [sym_element_access] = STATE(294), - [sym_invokation_expression] = STATE(294), - [sym_invokation_foreach_expression] = STATE(147), - [sym_type_literal] = STATE(80), + [431] = { + [aux_sym_array_literal_expression_repeat1] = STATE(431), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(5), - [sym_hexadecimal_integer_literal] = ACTIONS(83), - [sym_real_literal] = ACTIONS(547), - [aux_sym_expandable_string_literal_token1] = ACTIONS(87), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), - [sym_verbatim_string_characters] = ACTIONS(91), - [sym_verbatim_here_string_characters] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(503), - [aux_sym_comparison_operator_token37] = ACTIONS(549), - [aux_sym_comparison_operator_token50] = ACTIONS(549), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_DOLLAR_CARET] = ACTIONS(101), - [anon_sym_DOLLAR_QMARK] = ACTIONS(101), - [anon_sym_DOLLAR_] = ACTIONS(21), - [aux_sym_variable_token1] = ACTIONS(21), - [aux_sym_variable_token2] = ACTIONS(101), - [sym_braced_variable] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(549), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), - [anon_sym_AT_LPAREN] = ACTIONS(115), - [anon_sym_AT_LBRACE] = ACTIONS(117), - }, - [368] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1710), - [sym_logical_expression] = STATE(1392), - [sym_bitwise_expression] = STATE(1310), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(771), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(771), + }, + [432] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1578), + [sym_logical_expression] = STATE(1356), + [sym_bitwise_expression] = STATE(1274), [sym_comparison_expression] = STATE(556), - [sym_additive_expression] = STATE(526), - [sym_multiplicative_expression] = STATE(371), - [sym_format_expression] = STATE(320), - [sym_range_expression] = STATE(321), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(298), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [sym_additive_expression] = STATE(541), + [sym_multiplicative_expression] = STATE(490), + [sym_format_expression] = STATE(447), + [sym_range_expression] = STATE(446), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(439), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_attribute_arguments] = STATE(1886), + [sym_attribute_argument] = STATE(1455), [sym_comment] = ACTIONS(81), [sym_decimal_integer_literal] = ACTIONS(119), [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), + [sym_real_literal] = ACTIONS(547), [aux_sym_expandable_string_literal_token1] = ACTIONS(125), [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), [sym_verbatim_string_characters] = ACTIONS(129), [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), + [sym_simple_name] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), [anon_sym_DOLLAR_CARET] = ACTIONS(135), [anon_sym_DOLLAR_QMARK] = ACTIONS(135), @@ -63025,10403 +69751,4334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_token2] = ACTIONS(135), [sym_braced_variable] = ACTIONS(135), [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_COMMA] = ACTIONS(551), [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), [anon_sym_AT_LPAREN] = ACTIONS(151), [anon_sym_AT_LBRACE] = ACTIONS(153), }, - [369] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(2018), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [433] = { + [aux_sym_array_literal_expression_repeat1] = STATE(435), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [370] = { - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1455), - [sym_hexadecimal_integer_literal] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1455), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1455), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1455), - [sym_verbatim_string_characters] = ACTIONS(1455), - [sym_verbatim_here_string_characters] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [aux_sym_comparison_operator_token37] = ACTIONS(1455), - [aux_sym_comparison_operator_token50] = ACTIONS(1455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1455), - [anon_sym_DOLLAR_CARET] = ACTIONS(1455), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1455), - [anon_sym_DOLLAR_] = ACTIONS(1455), - [aux_sym_variable_token1] = ACTIONS(1455), - [aux_sym_variable_token2] = ACTIONS(1455), - [sym_braced_variable] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [aux_sym_block_name_token1] = ACTIONS(1457), - [aux_sym_block_name_token2] = ACTIONS(1457), - [aux_sym_block_name_token3] = ACTIONS(1457), - [aux_sym_block_name_token4] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [aux_sym_if_statement_token1] = ACTIONS(1455), - [aux_sym_switch_statement_token1] = ACTIONS(1455), - [aux_sym_foreach_statement_token1] = ACTIONS(1455), - [aux_sym_for_statement_token1] = ACTIONS(1455), - [aux_sym_while_statement_token1] = ACTIONS(1455), - [aux_sym_do_statement_token1] = ACTIONS(1455), - [aux_sym_function_statement_token1] = ACTIONS(1455), - [aux_sym_function_statement_token2] = ACTIONS(1455), - [aux_sym_function_statement_token3] = ACTIONS(1455), - [aux_sym_flow_control_statement_token1] = ACTIONS(1455), - [aux_sym_flow_control_statement_token2] = ACTIONS(1455), - [aux_sym_flow_control_statement_token3] = ACTIONS(1455), - [aux_sym_flow_control_statement_token4] = ACTIONS(1455), - [aux_sym_flow_control_statement_token5] = ACTIONS(1455), - [sym_label] = ACTIONS(1455), - [aux_sym_trap_statement_token1] = ACTIONS(1455), - [aux_sym_try_statement_token1] = ACTIONS(1455), - [aux_sym_data_statement_token1] = ACTIONS(1455), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1455), - [aux_sym_parallel_statement_token1] = ACTIONS(1455), - [aux_sym_sequence_statement_token1] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [aux_sym_command_name_token1] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [aux_sym_foreach_command_token1] = ACTIONS(1455), - [aux_sym_class_statement_token1] = ACTIONS(1455), - [aux_sym_enum_statement_token1] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1455), - [anon_sym_AT_LPAREN] = ACTIONS(1455), - [anon_sym_AT_LBRACE] = ACTIONS(1455), + [aux_sym_comparison_operator_token1] = ACTIONS(780), + [aux_sym_comparison_operator_token2] = ACTIONS(780), + [aux_sym_comparison_operator_token3] = ACTIONS(780), + [aux_sym_comparison_operator_token4] = ACTIONS(780), + [aux_sym_comparison_operator_token5] = ACTIONS(780), + [aux_sym_comparison_operator_token6] = ACTIONS(780), + [aux_sym_comparison_operator_token7] = ACTIONS(780), + [aux_sym_comparison_operator_token8] = ACTIONS(780), + [aux_sym_comparison_operator_token9] = ACTIONS(780), + [aux_sym_comparison_operator_token10] = ACTIONS(780), + [aux_sym_comparison_operator_token11] = ACTIONS(780), + [aux_sym_comparison_operator_token12] = ACTIONS(780), + [aux_sym_comparison_operator_token13] = ACTIONS(780), + [aux_sym_comparison_operator_token14] = ACTIONS(780), + [aux_sym_comparison_operator_token15] = ACTIONS(780), + [aux_sym_comparison_operator_token16] = ACTIONS(780), + [aux_sym_comparison_operator_token17] = ACTIONS(780), + [aux_sym_comparison_operator_token18] = ACTIONS(780), + [aux_sym_comparison_operator_token19] = ACTIONS(780), + [aux_sym_comparison_operator_token20] = ACTIONS(780), + [aux_sym_comparison_operator_token21] = ACTIONS(780), + [aux_sym_comparison_operator_token22] = ACTIONS(780), + [aux_sym_comparison_operator_token23] = ACTIONS(780), + [aux_sym_comparison_operator_token24] = ACTIONS(780), + [aux_sym_comparison_operator_token25] = ACTIONS(780), + [aux_sym_comparison_operator_token26] = ACTIONS(780), + [aux_sym_comparison_operator_token27] = ACTIONS(780), + [aux_sym_comparison_operator_token28] = ACTIONS(782), + [aux_sym_comparison_operator_token29] = ACTIONS(780), + [aux_sym_comparison_operator_token30] = ACTIONS(780), + [aux_sym_comparison_operator_token31] = ACTIONS(780), + [aux_sym_comparison_operator_token32] = ACTIONS(780), + [aux_sym_comparison_operator_token33] = ACTIONS(780), + [aux_sym_comparison_operator_token34] = ACTIONS(782), + [aux_sym_comparison_operator_token35] = ACTIONS(780), + [aux_sym_comparison_operator_token36] = ACTIONS(780), + [aux_sym_comparison_operator_token37] = ACTIONS(780), + [aux_sym_comparison_operator_token38] = ACTIONS(780), + [aux_sym_comparison_operator_token39] = ACTIONS(780), + [aux_sym_comparison_operator_token40] = ACTIONS(780), + [aux_sym_comparison_operator_token41] = ACTIONS(780), + [aux_sym_comparison_operator_token42] = ACTIONS(780), + [aux_sym_comparison_operator_token43] = ACTIONS(780), + [aux_sym_comparison_operator_token44] = ACTIONS(780), + [aux_sym_comparison_operator_token45] = ACTIONS(780), + [aux_sym_comparison_operator_token46] = ACTIONS(780), + [aux_sym_comparison_operator_token47] = ACTIONS(780), + [aux_sym_comparison_operator_token48] = ACTIONS(780), + [aux_sym_comparison_operator_token49] = ACTIONS(780), + [aux_sym_comparison_operator_token50] = ACTIONS(780), + [aux_sym_format_operator_token1] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_PERCENT] = ACTIONS(780), + [aux_sym_logical_expression_token1] = ACTIONS(780), + [aux_sym_logical_expression_token2] = ACTIONS(780), + [aux_sym_logical_expression_token3] = ACTIONS(780), + [aux_sym_bitwise_expression_token1] = ACTIONS(780), + [aux_sym_bitwise_expression_token2] = ACTIONS(780), + [aux_sym_bitwise_expression_token3] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_BSLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [sym__statement_terminator] = ACTIONS(780), + }, + [434] = { + [aux_sym_array_literal_expression_repeat1] = STATE(431), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(780), + [aux_sym_comparison_operator_token2] = ACTIONS(780), + [aux_sym_comparison_operator_token3] = ACTIONS(780), + [aux_sym_comparison_operator_token4] = ACTIONS(780), + [aux_sym_comparison_operator_token5] = ACTIONS(780), + [aux_sym_comparison_operator_token6] = ACTIONS(780), + [aux_sym_comparison_operator_token7] = ACTIONS(780), + [aux_sym_comparison_operator_token8] = ACTIONS(780), + [aux_sym_comparison_operator_token9] = ACTIONS(780), + [aux_sym_comparison_operator_token10] = ACTIONS(780), + [aux_sym_comparison_operator_token11] = ACTIONS(780), + [aux_sym_comparison_operator_token12] = ACTIONS(780), + [aux_sym_comparison_operator_token13] = ACTIONS(780), + [aux_sym_comparison_operator_token14] = ACTIONS(780), + [aux_sym_comparison_operator_token15] = ACTIONS(780), + [aux_sym_comparison_operator_token16] = ACTIONS(780), + [aux_sym_comparison_operator_token17] = ACTIONS(780), + [aux_sym_comparison_operator_token18] = ACTIONS(780), + [aux_sym_comparison_operator_token19] = ACTIONS(780), + [aux_sym_comparison_operator_token20] = ACTIONS(780), + [aux_sym_comparison_operator_token21] = ACTIONS(780), + [aux_sym_comparison_operator_token22] = ACTIONS(780), + [aux_sym_comparison_operator_token23] = ACTIONS(780), + [aux_sym_comparison_operator_token24] = ACTIONS(780), + [aux_sym_comparison_operator_token25] = ACTIONS(780), + [aux_sym_comparison_operator_token26] = ACTIONS(780), + [aux_sym_comparison_operator_token27] = ACTIONS(780), + [aux_sym_comparison_operator_token28] = ACTIONS(782), + [aux_sym_comparison_operator_token29] = ACTIONS(780), + [aux_sym_comparison_operator_token30] = ACTIONS(780), + [aux_sym_comparison_operator_token31] = ACTIONS(780), + [aux_sym_comparison_operator_token32] = ACTIONS(780), + [aux_sym_comparison_operator_token33] = ACTIONS(780), + [aux_sym_comparison_operator_token34] = ACTIONS(782), + [aux_sym_comparison_operator_token35] = ACTIONS(780), + [aux_sym_comparison_operator_token36] = ACTIONS(780), + [aux_sym_comparison_operator_token37] = ACTIONS(780), + [aux_sym_comparison_operator_token38] = ACTIONS(780), + [aux_sym_comparison_operator_token39] = ACTIONS(780), + [aux_sym_comparison_operator_token40] = ACTIONS(780), + [aux_sym_comparison_operator_token41] = ACTIONS(780), + [aux_sym_comparison_operator_token42] = ACTIONS(780), + [aux_sym_comparison_operator_token43] = ACTIONS(780), + [aux_sym_comparison_operator_token44] = ACTIONS(780), + [aux_sym_comparison_operator_token45] = ACTIONS(780), + [aux_sym_comparison_operator_token46] = ACTIONS(780), + [aux_sym_comparison_operator_token47] = ACTIONS(780), + [aux_sym_comparison_operator_token48] = ACTIONS(780), + [aux_sym_comparison_operator_token49] = ACTIONS(780), + [aux_sym_comparison_operator_token50] = ACTIONS(780), + [aux_sym_format_operator_token1] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_PERCENT] = ACTIONS(780), + [aux_sym_logical_expression_token1] = ACTIONS(780), + [aux_sym_logical_expression_token2] = ACTIONS(780), + [aux_sym_logical_expression_token3] = ACTIONS(780), + [aux_sym_bitwise_expression_token1] = ACTIONS(780), + [aux_sym_bitwise_expression_token2] = ACTIONS(780), + [aux_sym_bitwise_expression_token3] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_BSLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + [anon_sym_RBRACK] = ACTIONS(780), + }, + [435] = { + [aux_sym_array_literal_expression_repeat1] = STATE(435), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(771), + [aux_sym_comparison_operator_token2] = ACTIONS(771), + [aux_sym_comparison_operator_token3] = ACTIONS(771), + [aux_sym_comparison_operator_token4] = ACTIONS(771), + [aux_sym_comparison_operator_token5] = ACTIONS(771), + [aux_sym_comparison_operator_token6] = ACTIONS(771), + [aux_sym_comparison_operator_token7] = ACTIONS(771), + [aux_sym_comparison_operator_token8] = ACTIONS(771), + [aux_sym_comparison_operator_token9] = ACTIONS(771), + [aux_sym_comparison_operator_token10] = ACTIONS(771), + [aux_sym_comparison_operator_token11] = ACTIONS(771), + [aux_sym_comparison_operator_token12] = ACTIONS(771), + [aux_sym_comparison_operator_token13] = ACTIONS(771), + [aux_sym_comparison_operator_token14] = ACTIONS(771), + [aux_sym_comparison_operator_token15] = ACTIONS(771), + [aux_sym_comparison_operator_token16] = ACTIONS(771), + [aux_sym_comparison_operator_token17] = ACTIONS(771), + [aux_sym_comparison_operator_token18] = ACTIONS(771), + [aux_sym_comparison_operator_token19] = ACTIONS(771), + [aux_sym_comparison_operator_token20] = ACTIONS(771), + [aux_sym_comparison_operator_token21] = ACTIONS(771), + [aux_sym_comparison_operator_token22] = ACTIONS(771), + [aux_sym_comparison_operator_token23] = ACTIONS(771), + [aux_sym_comparison_operator_token24] = ACTIONS(771), + [aux_sym_comparison_operator_token25] = ACTIONS(771), + [aux_sym_comparison_operator_token26] = ACTIONS(771), + [aux_sym_comparison_operator_token27] = ACTIONS(771), + [aux_sym_comparison_operator_token28] = ACTIONS(773), + [aux_sym_comparison_operator_token29] = ACTIONS(771), + [aux_sym_comparison_operator_token30] = ACTIONS(771), + [aux_sym_comparison_operator_token31] = ACTIONS(771), + [aux_sym_comparison_operator_token32] = ACTIONS(771), + [aux_sym_comparison_operator_token33] = ACTIONS(771), + [aux_sym_comparison_operator_token34] = ACTIONS(773), + [aux_sym_comparison_operator_token35] = ACTIONS(771), + [aux_sym_comparison_operator_token36] = ACTIONS(771), + [aux_sym_comparison_operator_token37] = ACTIONS(771), + [aux_sym_comparison_operator_token38] = ACTIONS(771), + [aux_sym_comparison_operator_token39] = ACTIONS(771), + [aux_sym_comparison_operator_token40] = ACTIONS(771), + [aux_sym_comparison_operator_token41] = ACTIONS(771), + [aux_sym_comparison_operator_token42] = ACTIONS(771), + [aux_sym_comparison_operator_token43] = ACTIONS(771), + [aux_sym_comparison_operator_token44] = ACTIONS(771), + [aux_sym_comparison_operator_token45] = ACTIONS(771), + [aux_sym_comparison_operator_token46] = ACTIONS(771), + [aux_sym_comparison_operator_token47] = ACTIONS(771), + [aux_sym_comparison_operator_token48] = ACTIONS(771), + [aux_sym_comparison_operator_token49] = ACTIONS(771), + [aux_sym_comparison_operator_token50] = ACTIONS(771), + [aux_sym_format_operator_token1] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(1609), + [anon_sym_PERCENT] = ACTIONS(771), + [aux_sym_logical_expression_token1] = ACTIONS(771), + [aux_sym_logical_expression_token2] = ACTIONS(771), + [aux_sym_logical_expression_token3] = ACTIONS(771), + [aux_sym_bitwise_expression_token1] = ACTIONS(771), + [aux_sym_bitwise_expression_token2] = ACTIONS(771), + [aux_sym_bitwise_expression_token3] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_BSLASH] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(771), + [sym__statement_terminator] = ACTIONS(771), }, - [371] = { + [436] = { + [aux_sym_array_literal_expression_repeat1] = STATE(433), [sym_comment] = ACTIONS(81), - [aux_sym_comparison_operator_token1] = ACTIONS(817), - [aux_sym_comparison_operator_token2] = ACTIONS(817), - [aux_sym_comparison_operator_token3] = ACTIONS(817), - [aux_sym_comparison_operator_token4] = ACTIONS(817), - [aux_sym_comparison_operator_token5] = ACTIONS(817), - [aux_sym_comparison_operator_token6] = ACTIONS(817), - [aux_sym_comparison_operator_token7] = ACTIONS(817), - [aux_sym_comparison_operator_token8] = ACTIONS(817), - [aux_sym_comparison_operator_token9] = ACTIONS(817), - [aux_sym_comparison_operator_token10] = ACTIONS(817), - [aux_sym_comparison_operator_token11] = ACTIONS(817), - [aux_sym_comparison_operator_token12] = ACTIONS(817), - [aux_sym_comparison_operator_token13] = ACTIONS(817), - [aux_sym_comparison_operator_token14] = ACTIONS(817), - [aux_sym_comparison_operator_token15] = ACTIONS(817), - [aux_sym_comparison_operator_token16] = ACTIONS(817), - [aux_sym_comparison_operator_token17] = ACTIONS(817), - [aux_sym_comparison_operator_token18] = ACTIONS(817), - [aux_sym_comparison_operator_token19] = ACTIONS(817), - [aux_sym_comparison_operator_token20] = ACTIONS(817), - [aux_sym_comparison_operator_token21] = ACTIONS(817), - [aux_sym_comparison_operator_token22] = ACTIONS(817), - [aux_sym_comparison_operator_token23] = ACTIONS(817), - [aux_sym_comparison_operator_token24] = ACTIONS(817), - [aux_sym_comparison_operator_token25] = ACTIONS(817), - [aux_sym_comparison_operator_token26] = ACTIONS(817), - [aux_sym_comparison_operator_token27] = ACTIONS(817), - [aux_sym_comparison_operator_token28] = ACTIONS(819), - [aux_sym_comparison_operator_token29] = ACTIONS(817), - [aux_sym_comparison_operator_token30] = ACTIONS(817), - [aux_sym_comparison_operator_token31] = ACTIONS(817), - [aux_sym_comparison_operator_token32] = ACTIONS(817), - [aux_sym_comparison_operator_token33] = ACTIONS(817), - [aux_sym_comparison_operator_token34] = ACTIONS(819), - [aux_sym_comparison_operator_token35] = ACTIONS(817), - [aux_sym_comparison_operator_token36] = ACTIONS(817), - [aux_sym_comparison_operator_token37] = ACTIONS(817), - [aux_sym_comparison_operator_token38] = ACTIONS(817), - [aux_sym_comparison_operator_token39] = ACTIONS(817), - [aux_sym_comparison_operator_token40] = ACTIONS(817), - [aux_sym_comparison_operator_token41] = ACTIONS(817), - [aux_sym_comparison_operator_token42] = ACTIONS(817), - [aux_sym_comparison_operator_token43] = ACTIONS(817), - [aux_sym_comparison_operator_token44] = ACTIONS(817), - [aux_sym_comparison_operator_token45] = ACTIONS(817), - [aux_sym_comparison_operator_token46] = ACTIONS(817), - [aux_sym_comparison_operator_token47] = ACTIONS(817), - [aux_sym_comparison_operator_token48] = ACTIONS(817), - [aux_sym_comparison_operator_token49] = ACTIONS(817), - [aux_sym_comparison_operator_token50] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_PERCENT] = ACTIONS(1451), - [aux_sym_logical_expression_token1] = ACTIONS(817), - [aux_sym_logical_expression_token2] = ACTIONS(817), - [aux_sym_logical_expression_token3] = ACTIONS(817), - [aux_sym_bitwise_expression_token1] = ACTIONS(817), - [aux_sym_bitwise_expression_token2] = ACTIONS(817), - [aux_sym_bitwise_expression_token3] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_BSLASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), + [aux_sym_comparison_operator_token1] = ACTIONS(765), + [aux_sym_comparison_operator_token2] = ACTIONS(765), + [aux_sym_comparison_operator_token3] = ACTIONS(765), + [aux_sym_comparison_operator_token4] = ACTIONS(765), + [aux_sym_comparison_operator_token5] = ACTIONS(765), + [aux_sym_comparison_operator_token6] = ACTIONS(765), + [aux_sym_comparison_operator_token7] = ACTIONS(765), + [aux_sym_comparison_operator_token8] = ACTIONS(765), + [aux_sym_comparison_operator_token9] = ACTIONS(765), + [aux_sym_comparison_operator_token10] = ACTIONS(765), + [aux_sym_comparison_operator_token11] = ACTIONS(765), + [aux_sym_comparison_operator_token12] = ACTIONS(765), + [aux_sym_comparison_operator_token13] = ACTIONS(765), + [aux_sym_comparison_operator_token14] = ACTIONS(765), + [aux_sym_comparison_operator_token15] = ACTIONS(765), + [aux_sym_comparison_operator_token16] = ACTIONS(765), + [aux_sym_comparison_operator_token17] = ACTIONS(765), + [aux_sym_comparison_operator_token18] = ACTIONS(765), + [aux_sym_comparison_operator_token19] = ACTIONS(765), + [aux_sym_comparison_operator_token20] = ACTIONS(765), + [aux_sym_comparison_operator_token21] = ACTIONS(765), + [aux_sym_comparison_operator_token22] = ACTIONS(765), + [aux_sym_comparison_operator_token23] = ACTIONS(765), + [aux_sym_comparison_operator_token24] = ACTIONS(765), + [aux_sym_comparison_operator_token25] = ACTIONS(765), + [aux_sym_comparison_operator_token26] = ACTIONS(765), + [aux_sym_comparison_operator_token27] = ACTIONS(765), + [aux_sym_comparison_operator_token28] = ACTIONS(767), + [aux_sym_comparison_operator_token29] = ACTIONS(765), + [aux_sym_comparison_operator_token30] = ACTIONS(765), + [aux_sym_comparison_operator_token31] = ACTIONS(765), + [aux_sym_comparison_operator_token32] = ACTIONS(765), + [aux_sym_comparison_operator_token33] = ACTIONS(765), + [aux_sym_comparison_operator_token34] = ACTIONS(767), + [aux_sym_comparison_operator_token35] = ACTIONS(765), + [aux_sym_comparison_operator_token36] = ACTIONS(765), + [aux_sym_comparison_operator_token37] = ACTIONS(765), + [aux_sym_comparison_operator_token38] = ACTIONS(765), + [aux_sym_comparison_operator_token39] = ACTIONS(765), + [aux_sym_comparison_operator_token40] = ACTIONS(765), + [aux_sym_comparison_operator_token41] = ACTIONS(765), + [aux_sym_comparison_operator_token42] = ACTIONS(765), + [aux_sym_comparison_operator_token43] = ACTIONS(765), + [aux_sym_comparison_operator_token44] = ACTIONS(765), + [aux_sym_comparison_operator_token45] = ACTIONS(765), + [aux_sym_comparison_operator_token46] = ACTIONS(765), + [aux_sym_comparison_operator_token47] = ACTIONS(765), + [aux_sym_comparison_operator_token48] = ACTIONS(765), + [aux_sym_comparison_operator_token49] = ACTIONS(765), + [aux_sym_comparison_operator_token50] = ACTIONS(765), + [aux_sym_format_operator_token1] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_PERCENT] = ACTIONS(765), + [aux_sym_logical_expression_token1] = ACTIONS(765), + [aux_sym_logical_expression_token2] = ACTIONS(765), + [aux_sym_logical_expression_token3] = ACTIONS(765), + [aux_sym_bitwise_expression_token1] = ACTIONS(765), + [aux_sym_bitwise_expression_token2] = ACTIONS(765), + [aux_sym_bitwise_expression_token3] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(765), + [sym__statement_terminator] = ACTIONS(765), }, - [372] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1970), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [437] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(475), + [sym_real_literal] = ACTIONS(475), + [aux_sym_expandable_string_literal_token1] = ACTIONS(475), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(475), + [sym_verbatim_string_characters] = ACTIONS(475), + [sym_verbatim_here_string_characters] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(475), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(475), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(475), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(475), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(475), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(475), + [anon_sym_2_GT_AMP1] = ACTIONS(475), + [anon_sym_3_GT_AMP1] = ACTIONS(475), + [anon_sym_4_GT_AMP1] = ACTIONS(475), + [anon_sym_5_GT_AMP1] = ACTIONS(475), + [anon_sym_6_GT_AMP1] = ACTIONS(475), + [anon_sym_STAR_GT_AMP2] = ACTIONS(475), + [anon_sym_1_GT_AMP2] = ACTIONS(475), + [anon_sym_3_GT_AMP2] = ACTIONS(475), + [anon_sym_4_GT_AMP2] = ACTIONS(475), + [anon_sym_5_GT_AMP2] = ACTIONS(475), + [anon_sym_6_GT_AMP2] = ACTIONS(475), + [aux_sym_comparison_operator_token37] = ACTIONS(475), + [aux_sym_comparison_operator_token50] = ACTIONS(475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(475), + [anon_sym_DOLLAR_CARET] = ACTIONS(475), + [anon_sym_DOLLAR_QMARK] = ACTIONS(475), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(475), + [sym_braced_variable] = ACTIONS(475), + [sym_command_parameter] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [sym_stop_parsing] = ACTIONS(475), + [anon_sym_SPACE] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_AT_LPAREN] = ACTIONS(475), + [anon_sym_AT_LBRACE] = ACTIONS(475), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(475), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + }, + [438] = { + [aux_sym_array_literal_expression_repeat1] = STATE(434), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [aux_sym_comparison_operator_token1] = ACTIONS(765), + [aux_sym_comparison_operator_token2] = ACTIONS(765), + [aux_sym_comparison_operator_token3] = ACTIONS(765), + [aux_sym_comparison_operator_token4] = ACTIONS(765), + [aux_sym_comparison_operator_token5] = ACTIONS(765), + [aux_sym_comparison_operator_token6] = ACTIONS(765), + [aux_sym_comparison_operator_token7] = ACTIONS(765), + [aux_sym_comparison_operator_token8] = ACTIONS(765), + [aux_sym_comparison_operator_token9] = ACTIONS(765), + [aux_sym_comparison_operator_token10] = ACTIONS(765), + [aux_sym_comparison_operator_token11] = ACTIONS(765), + [aux_sym_comparison_operator_token12] = ACTIONS(765), + [aux_sym_comparison_operator_token13] = ACTIONS(765), + [aux_sym_comparison_operator_token14] = ACTIONS(765), + [aux_sym_comparison_operator_token15] = ACTIONS(765), + [aux_sym_comparison_operator_token16] = ACTIONS(765), + [aux_sym_comparison_operator_token17] = ACTIONS(765), + [aux_sym_comparison_operator_token18] = ACTIONS(765), + [aux_sym_comparison_operator_token19] = ACTIONS(765), + [aux_sym_comparison_operator_token20] = ACTIONS(765), + [aux_sym_comparison_operator_token21] = ACTIONS(765), + [aux_sym_comparison_operator_token22] = ACTIONS(765), + [aux_sym_comparison_operator_token23] = ACTIONS(765), + [aux_sym_comparison_operator_token24] = ACTIONS(765), + [aux_sym_comparison_operator_token25] = ACTIONS(765), + [aux_sym_comparison_operator_token26] = ACTIONS(765), + [aux_sym_comparison_operator_token27] = ACTIONS(765), + [aux_sym_comparison_operator_token28] = ACTIONS(767), + [aux_sym_comparison_operator_token29] = ACTIONS(765), + [aux_sym_comparison_operator_token30] = ACTIONS(765), + [aux_sym_comparison_operator_token31] = ACTIONS(765), + [aux_sym_comparison_operator_token32] = ACTIONS(765), + [aux_sym_comparison_operator_token33] = ACTIONS(765), + [aux_sym_comparison_operator_token34] = ACTIONS(767), + [aux_sym_comparison_operator_token35] = ACTIONS(765), + [aux_sym_comparison_operator_token36] = ACTIONS(765), + [aux_sym_comparison_operator_token37] = ACTIONS(765), + [aux_sym_comparison_operator_token38] = ACTIONS(765), + [aux_sym_comparison_operator_token39] = ACTIONS(765), + [aux_sym_comparison_operator_token40] = ACTIONS(765), + [aux_sym_comparison_operator_token41] = ACTIONS(765), + [aux_sym_comparison_operator_token42] = ACTIONS(765), + [aux_sym_comparison_operator_token43] = ACTIONS(765), + [aux_sym_comparison_operator_token44] = ACTIONS(765), + [aux_sym_comparison_operator_token45] = ACTIONS(765), + [aux_sym_comparison_operator_token46] = ACTIONS(765), + [aux_sym_comparison_operator_token47] = ACTIONS(765), + [aux_sym_comparison_operator_token48] = ACTIONS(765), + [aux_sym_comparison_operator_token49] = ACTIONS(765), + [aux_sym_comparison_operator_token50] = ACTIONS(765), + [aux_sym_format_operator_token1] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_PERCENT] = ACTIONS(765), + [aux_sym_logical_expression_token1] = ACTIONS(765), + [aux_sym_logical_expression_token2] = ACTIONS(765), + [aux_sym_logical_expression_token3] = ACTIONS(765), + [aux_sym_bitwise_expression_token1] = ACTIONS(765), + [aux_sym_bitwise_expression_token2] = ACTIONS(765), + [aux_sym_bitwise_expression_token3] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(765), + [anon_sym_RBRACK] = ACTIONS(765), }, - [373] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1744), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [439] = { + [aux_sym_array_literal_expression_repeat1] = STATE(441), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [aux_sym_comparison_operator_token1] = ACTIONS(765), + [aux_sym_comparison_operator_token2] = ACTIONS(765), + [aux_sym_comparison_operator_token3] = ACTIONS(765), + [aux_sym_comparison_operator_token4] = ACTIONS(765), + [aux_sym_comparison_operator_token5] = ACTIONS(765), + [aux_sym_comparison_operator_token6] = ACTIONS(765), + [aux_sym_comparison_operator_token7] = ACTIONS(765), + [aux_sym_comparison_operator_token8] = ACTIONS(765), + [aux_sym_comparison_operator_token9] = ACTIONS(765), + [aux_sym_comparison_operator_token10] = ACTIONS(765), + [aux_sym_comparison_operator_token11] = ACTIONS(765), + [aux_sym_comparison_operator_token12] = ACTIONS(765), + [aux_sym_comparison_operator_token13] = ACTIONS(765), + [aux_sym_comparison_operator_token14] = ACTIONS(765), + [aux_sym_comparison_operator_token15] = ACTIONS(765), + [aux_sym_comparison_operator_token16] = ACTIONS(765), + [aux_sym_comparison_operator_token17] = ACTIONS(765), + [aux_sym_comparison_operator_token18] = ACTIONS(765), + [aux_sym_comparison_operator_token19] = ACTIONS(765), + [aux_sym_comparison_operator_token20] = ACTIONS(765), + [aux_sym_comparison_operator_token21] = ACTIONS(765), + [aux_sym_comparison_operator_token22] = ACTIONS(765), + [aux_sym_comparison_operator_token23] = ACTIONS(765), + [aux_sym_comparison_operator_token24] = ACTIONS(765), + [aux_sym_comparison_operator_token25] = ACTIONS(765), + [aux_sym_comparison_operator_token26] = ACTIONS(765), + [aux_sym_comparison_operator_token27] = ACTIONS(765), + [aux_sym_comparison_operator_token28] = ACTIONS(767), + [aux_sym_comparison_operator_token29] = ACTIONS(765), + [aux_sym_comparison_operator_token30] = ACTIONS(765), + [aux_sym_comparison_operator_token31] = ACTIONS(765), + [aux_sym_comparison_operator_token32] = ACTIONS(765), + [aux_sym_comparison_operator_token33] = ACTIONS(765), + [aux_sym_comparison_operator_token34] = ACTIONS(767), + [aux_sym_comparison_operator_token35] = ACTIONS(765), + [aux_sym_comparison_operator_token36] = ACTIONS(765), + [aux_sym_comparison_operator_token37] = ACTIONS(765), + [aux_sym_comparison_operator_token38] = ACTIONS(765), + [aux_sym_comparison_operator_token39] = ACTIONS(765), + [aux_sym_comparison_operator_token40] = ACTIONS(765), + [aux_sym_comparison_operator_token41] = ACTIONS(765), + [aux_sym_comparison_operator_token42] = ACTIONS(765), + [aux_sym_comparison_operator_token43] = ACTIONS(765), + [aux_sym_comparison_operator_token44] = ACTIONS(765), + [aux_sym_comparison_operator_token45] = ACTIONS(765), + [aux_sym_comparison_operator_token46] = ACTIONS(765), + [aux_sym_comparison_operator_token47] = ACTIONS(765), + [aux_sym_comparison_operator_token48] = ACTIONS(765), + [aux_sym_comparison_operator_token49] = ACTIONS(765), + [aux_sym_comparison_operator_token50] = ACTIONS(765), + [aux_sym_format_operator_token1] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [aux_sym_logical_expression_token1] = ACTIONS(765), + [aux_sym_logical_expression_token2] = ACTIONS(765), + [aux_sym_logical_expression_token3] = ACTIONS(765), + [aux_sym_bitwise_expression_token1] = ACTIONS(765), + [aux_sym_bitwise_expression_token2] = ACTIONS(765), + [aux_sym_bitwise_expression_token3] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_DOT_DOT] = ACTIONS(765), }, - [374] = { - [sym_catch_clause] = STATE(374), - [aux_sym_catch_clauses_repeat1] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1459), + [440] = { [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1437), - [sym_hexadecimal_integer_literal] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1437), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1437), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1437), - [sym_verbatim_string_characters] = ACTIONS(1437), - [sym_verbatim_here_string_characters] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [aux_sym_comparison_operator_token37] = ACTIONS(1437), - [aux_sym_comparison_operator_token50] = ACTIONS(1437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1437), - [anon_sym_DOLLAR_CARET] = ACTIONS(1437), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1437), - [anon_sym_DOLLAR_] = ACTIONS(1437), - [aux_sym_variable_token1] = ACTIONS(1437), - [aux_sym_variable_token2] = ACTIONS(1437), - [sym_braced_variable] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [aux_sym_if_statement_token1] = ACTIONS(1437), - [aux_sym_switch_statement_token1] = ACTIONS(1437), - [aux_sym_foreach_statement_token1] = ACTIONS(1437), - [aux_sym_for_statement_token1] = ACTIONS(1437), - [aux_sym_while_statement_token1] = ACTIONS(1437), - [aux_sym_do_statement_token1] = ACTIONS(1437), - [aux_sym_function_statement_token1] = ACTIONS(1437), - [aux_sym_function_statement_token2] = ACTIONS(1437), - [aux_sym_function_statement_token3] = ACTIONS(1437), - [aux_sym_flow_control_statement_token1] = ACTIONS(1437), - [aux_sym_flow_control_statement_token2] = ACTIONS(1437), - [aux_sym_flow_control_statement_token3] = ACTIONS(1437), - [aux_sym_flow_control_statement_token4] = ACTIONS(1437), - [aux_sym_flow_control_statement_token5] = ACTIONS(1437), - [sym_label] = ACTIONS(1437), - [aux_sym_trap_statement_token1] = ACTIONS(1437), - [aux_sym_try_statement_token1] = ACTIONS(1437), - [aux_sym_catch_clause_token1] = ACTIONS(1461), - [aux_sym_finally_clause_token1] = ACTIONS(1437), - [aux_sym_data_statement_token1] = ACTIONS(1437), - [aux_sym_inlinescript_statement_token1] = ACTIONS(1437), - [aux_sym_parallel_statement_token1] = ACTIONS(1437), - [aux_sym_sequence_statement_token1] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_command_name_token1] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [aux_sym_foreach_command_token1] = ACTIONS(1437), - [aux_sym_class_statement_token1] = ACTIONS(1437), - [aux_sym_enum_statement_token1] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1437), - [anon_sym_AT_LPAREN] = ACTIONS(1437), - [anon_sym_AT_LBRACE] = ACTIONS(1437), - }, - [375] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1768), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(475), + [sym_real_literal] = ACTIONS(475), + [aux_sym_expandable_string_literal_token1] = ACTIONS(475), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(475), + [sym_verbatim_string_characters] = ACTIONS(475), + [sym_verbatim_here_string_characters] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(475), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(475), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(475), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(475), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(475), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(475), + [anon_sym_2_GT_AMP1] = ACTIONS(475), + [anon_sym_3_GT_AMP1] = ACTIONS(475), + [anon_sym_4_GT_AMP1] = ACTIONS(475), + [anon_sym_5_GT_AMP1] = ACTIONS(475), + [anon_sym_6_GT_AMP1] = ACTIONS(475), + [anon_sym_STAR_GT_AMP2] = ACTIONS(475), + [anon_sym_1_GT_AMP2] = ACTIONS(475), + [anon_sym_3_GT_AMP2] = ACTIONS(475), + [anon_sym_4_GT_AMP2] = ACTIONS(475), + [anon_sym_5_GT_AMP2] = ACTIONS(475), + [anon_sym_6_GT_AMP2] = ACTIONS(475), + [aux_sym_comparison_operator_token37] = ACTIONS(475), + [aux_sym_comparison_operator_token50] = ACTIONS(475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(475), + [anon_sym_DOLLAR_CARET] = ACTIONS(475), + [anon_sym_DOLLAR_QMARK] = ACTIONS(475), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(475), + [sym_braced_variable] = ACTIONS(475), + [sym_command_parameter] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [sym_stop_parsing] = ACTIONS(475), + [anon_sym_SPACE] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_AT_LPAREN] = ACTIONS(475), + [anon_sym_AT_LBRACE] = ACTIONS(475), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(475), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + [sym__statement_terminator] = ACTIONS(477), + }, + [441] = { + [aux_sym_array_literal_expression_repeat1] = STATE(431), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [376] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1790), - [sym_logical_expression] = STATE(1409), - [sym_bitwise_expression] = STATE(1322), - [sym_comparison_expression] = STATE(568), - [sym_additive_expression] = STATE(548), - [sym_multiplicative_expression] = STATE(384), - [sym_format_expression] = STATE(348), - [sym_range_expression] = STATE(349), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(306), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [aux_sym_comparison_operator_token1] = ACTIONS(780), + [aux_sym_comparison_operator_token2] = ACTIONS(780), + [aux_sym_comparison_operator_token3] = ACTIONS(780), + [aux_sym_comparison_operator_token4] = ACTIONS(780), + [aux_sym_comparison_operator_token5] = ACTIONS(780), + [aux_sym_comparison_operator_token6] = ACTIONS(780), + [aux_sym_comparison_operator_token7] = ACTIONS(780), + [aux_sym_comparison_operator_token8] = ACTIONS(780), + [aux_sym_comparison_operator_token9] = ACTIONS(780), + [aux_sym_comparison_operator_token10] = ACTIONS(780), + [aux_sym_comparison_operator_token11] = ACTIONS(780), + [aux_sym_comparison_operator_token12] = ACTIONS(780), + [aux_sym_comparison_operator_token13] = ACTIONS(780), + [aux_sym_comparison_operator_token14] = ACTIONS(780), + [aux_sym_comparison_operator_token15] = ACTIONS(780), + [aux_sym_comparison_operator_token16] = ACTIONS(780), + [aux_sym_comparison_operator_token17] = ACTIONS(780), + [aux_sym_comparison_operator_token18] = ACTIONS(780), + [aux_sym_comparison_operator_token19] = ACTIONS(780), + [aux_sym_comparison_operator_token20] = ACTIONS(780), + [aux_sym_comparison_operator_token21] = ACTIONS(780), + [aux_sym_comparison_operator_token22] = ACTIONS(780), + [aux_sym_comparison_operator_token23] = ACTIONS(780), + [aux_sym_comparison_operator_token24] = ACTIONS(780), + [aux_sym_comparison_operator_token25] = ACTIONS(780), + [aux_sym_comparison_operator_token26] = ACTIONS(780), + [aux_sym_comparison_operator_token27] = ACTIONS(780), + [aux_sym_comparison_operator_token28] = ACTIONS(782), + [aux_sym_comparison_operator_token29] = ACTIONS(780), + [aux_sym_comparison_operator_token30] = ACTIONS(780), + [aux_sym_comparison_operator_token31] = ACTIONS(780), + [aux_sym_comparison_operator_token32] = ACTIONS(780), + [aux_sym_comparison_operator_token33] = ACTIONS(780), + [aux_sym_comparison_operator_token34] = ACTIONS(782), + [aux_sym_comparison_operator_token35] = ACTIONS(780), + [aux_sym_comparison_operator_token36] = ACTIONS(780), + [aux_sym_comparison_operator_token37] = ACTIONS(780), + [aux_sym_comparison_operator_token38] = ACTIONS(780), + [aux_sym_comparison_operator_token39] = ACTIONS(780), + [aux_sym_comparison_operator_token40] = ACTIONS(780), + [aux_sym_comparison_operator_token41] = ACTIONS(780), + [aux_sym_comparison_operator_token42] = ACTIONS(780), + [aux_sym_comparison_operator_token43] = ACTIONS(780), + [aux_sym_comparison_operator_token44] = ACTIONS(780), + [aux_sym_comparison_operator_token45] = ACTIONS(780), + [aux_sym_comparison_operator_token46] = ACTIONS(780), + [aux_sym_comparison_operator_token47] = ACTIONS(780), + [aux_sym_comparison_operator_token48] = ACTIONS(780), + [aux_sym_comparison_operator_token49] = ACTIONS(780), + [aux_sym_comparison_operator_token50] = ACTIONS(780), + [aux_sym_format_operator_token1] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_PERCENT] = ACTIONS(780), + [aux_sym_logical_expression_token1] = ACTIONS(780), + [aux_sym_logical_expression_token2] = ACTIONS(780), + [aux_sym_logical_expression_token3] = ACTIONS(780), + [aux_sym_bitwise_expression_token1] = ACTIONS(780), + [aux_sym_bitwise_expression_token2] = ACTIONS(780), + [aux_sym_bitwise_expression_token3] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_SLASH] = ACTIONS(780), + [anon_sym_BSLASH] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(780), + [anon_sym_DOT_DOT] = ACTIONS(780), + }, + [442] = { + [aux_sym_command_argument_sep_repeat1] = STATE(450), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1614), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + }, + [443] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(475), + [sym_real_literal] = ACTIONS(475), + [aux_sym_expandable_string_literal_token1] = ACTIONS(475), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(475), + [sym_verbatim_string_characters] = ACTIONS(475), + [sym_verbatim_here_string_characters] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(475), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(475), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(475), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(475), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(475), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(475), + [anon_sym_2_GT_AMP1] = ACTIONS(475), + [anon_sym_3_GT_AMP1] = ACTIONS(475), + [anon_sym_4_GT_AMP1] = ACTIONS(475), + [anon_sym_5_GT_AMP1] = ACTIONS(475), + [anon_sym_6_GT_AMP1] = ACTIONS(475), + [anon_sym_STAR_GT_AMP2] = ACTIONS(475), + [anon_sym_1_GT_AMP2] = ACTIONS(475), + [anon_sym_3_GT_AMP2] = ACTIONS(475), + [anon_sym_4_GT_AMP2] = ACTIONS(475), + [anon_sym_5_GT_AMP2] = ACTIONS(475), + [anon_sym_6_GT_AMP2] = ACTIONS(475), + [aux_sym_comparison_operator_token37] = ACTIONS(475), + [aux_sym_comparison_operator_token50] = ACTIONS(475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(475), + [anon_sym_DOLLAR_CARET] = ACTIONS(475), + [anon_sym_DOLLAR_QMARK] = ACTIONS(475), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(475), + [sym_braced_variable] = ACTIONS(475), + [sym_command_parameter] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [sym_stop_parsing] = ACTIONS(475), + [anon_sym_SPACE] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_AT_LPAREN] = ACTIONS(475), + [anon_sym_AT_LBRACE] = ACTIONS(475), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(475), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + [sym__statement_terminator] = ACTIONS(477), + }, + [444] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(475), + [sym_hexadecimal_integer_literal] = ACTIONS(475), + [sym_real_literal] = ACTIONS(475), + [aux_sym_expandable_string_literal_token1] = ACTIONS(475), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(475), + [sym_verbatim_string_characters] = ACTIONS(475), + [sym_verbatim_here_string_characters] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_2_GT] = ACTIONS(475), + [anon_sym_2_GT_GT] = ACTIONS(475), + [anon_sym_3_GT] = ACTIONS(475), + [anon_sym_3_GT_GT] = ACTIONS(475), + [anon_sym_4_GT] = ACTIONS(475), + [anon_sym_4_GT_GT] = ACTIONS(475), + [anon_sym_5_GT] = ACTIONS(475), + [anon_sym_5_GT_GT] = ACTIONS(475), + [anon_sym_6_GT] = ACTIONS(475), + [anon_sym_6_GT_GT] = ACTIONS(475), + [anon_sym_STAR_GT] = ACTIONS(475), + [anon_sym_STAR_GT_GT] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_STAR_GT_AMP1] = ACTIONS(475), + [anon_sym_2_GT_AMP1] = ACTIONS(475), + [anon_sym_3_GT_AMP1] = ACTIONS(475), + [anon_sym_4_GT_AMP1] = ACTIONS(475), + [anon_sym_5_GT_AMP1] = ACTIONS(475), + [anon_sym_6_GT_AMP1] = ACTIONS(475), + [anon_sym_STAR_GT_AMP2] = ACTIONS(475), + [anon_sym_1_GT_AMP2] = ACTIONS(475), + [anon_sym_3_GT_AMP2] = ACTIONS(475), + [anon_sym_4_GT_AMP2] = ACTIONS(475), + [anon_sym_5_GT_AMP2] = ACTIONS(475), + [anon_sym_6_GT_AMP2] = ACTIONS(475), + [aux_sym_comparison_operator_token37] = ACTIONS(475), + [aux_sym_comparison_operator_token50] = ACTIONS(475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(475), + [anon_sym_DOLLAR_CARET] = ACTIONS(475), + [anon_sym_DOLLAR_QMARK] = ACTIONS(475), + [anon_sym_DOLLAR_] = ACTIONS(475), + [aux_sym_variable_token1] = ACTIONS(475), + [aux_sym_variable_token2] = ACTIONS(475), + [sym_braced_variable] = ACTIONS(475), + [sym_command_parameter] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [sym_stop_parsing] = ACTIONS(475), + [anon_sym_SPACE] = ACTIONS(477), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(475), + [anon_sym_DASH_DASH] = ACTIONS(475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(475), + [anon_sym_AT_LPAREN] = ACTIONS(475), + [anon_sym_AT_LBRACE] = ACTIONS(475), + [anon_sym_DOT2] = ACTIONS(475), + [anon_sym_COLON_COLON] = ACTIONS(475), + [aux_sym_invokation_foreach_expression_token1] = ACTIONS(477), + }, + [445] = { + [aux_sym_command_argument_sep_repeat1] = STATE(449), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + [sym__statement_terminator] = ACTIONS(1618), + }, + [446] = { [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), + [aux_sym_comparison_operator_token1] = ACTIONS(813), + [aux_sym_comparison_operator_token2] = ACTIONS(813), + [aux_sym_comparison_operator_token3] = ACTIONS(813), + [aux_sym_comparison_operator_token4] = ACTIONS(813), + [aux_sym_comparison_operator_token5] = ACTIONS(813), + [aux_sym_comparison_operator_token6] = ACTIONS(813), + [aux_sym_comparison_operator_token7] = ACTIONS(813), + [aux_sym_comparison_operator_token8] = ACTIONS(813), + [aux_sym_comparison_operator_token9] = ACTIONS(813), + [aux_sym_comparison_operator_token10] = ACTIONS(813), + [aux_sym_comparison_operator_token11] = ACTIONS(813), + [aux_sym_comparison_operator_token12] = ACTIONS(813), + [aux_sym_comparison_operator_token13] = ACTIONS(813), + [aux_sym_comparison_operator_token14] = ACTIONS(813), + [aux_sym_comparison_operator_token15] = ACTIONS(813), + [aux_sym_comparison_operator_token16] = ACTIONS(813), + [aux_sym_comparison_operator_token17] = ACTIONS(813), + [aux_sym_comparison_operator_token18] = ACTIONS(813), + [aux_sym_comparison_operator_token19] = ACTIONS(813), + [aux_sym_comparison_operator_token20] = ACTIONS(813), + [aux_sym_comparison_operator_token21] = ACTIONS(813), + [aux_sym_comparison_operator_token22] = ACTIONS(813), + [aux_sym_comparison_operator_token23] = ACTIONS(813), + [aux_sym_comparison_operator_token24] = ACTIONS(813), + [aux_sym_comparison_operator_token25] = ACTIONS(813), + [aux_sym_comparison_operator_token26] = ACTIONS(813), + [aux_sym_comparison_operator_token27] = ACTIONS(813), + [aux_sym_comparison_operator_token28] = ACTIONS(815), + [aux_sym_comparison_operator_token29] = ACTIONS(813), + [aux_sym_comparison_operator_token30] = ACTIONS(813), + [aux_sym_comparison_operator_token31] = ACTIONS(813), + [aux_sym_comparison_operator_token32] = ACTIONS(813), + [aux_sym_comparison_operator_token33] = ACTIONS(813), + [aux_sym_comparison_operator_token34] = ACTIONS(815), + [aux_sym_comparison_operator_token35] = ACTIONS(813), + [aux_sym_comparison_operator_token36] = ACTIONS(813), + [aux_sym_comparison_operator_token37] = ACTIONS(813), + [aux_sym_comparison_operator_token38] = ACTIONS(813), + [aux_sym_comparison_operator_token39] = ACTIONS(813), + [aux_sym_comparison_operator_token40] = ACTIONS(813), + [aux_sym_comparison_operator_token41] = ACTIONS(813), + [aux_sym_comparison_operator_token42] = ACTIONS(813), + [aux_sym_comparison_operator_token43] = ACTIONS(813), + [aux_sym_comparison_operator_token44] = ACTIONS(813), + [aux_sym_comparison_operator_token45] = ACTIONS(813), + [aux_sym_comparison_operator_token46] = ACTIONS(813), + [aux_sym_comparison_operator_token47] = ACTIONS(813), + [aux_sym_comparison_operator_token48] = ACTIONS(813), + [aux_sym_comparison_operator_token49] = ACTIONS(813), + [aux_sym_comparison_operator_token50] = ACTIONS(813), + [aux_sym_format_operator_token1] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [aux_sym_logical_expression_token1] = ACTIONS(813), + [aux_sym_logical_expression_token2] = ACTIONS(813), + [aux_sym_logical_expression_token3] = ACTIONS(813), + [aux_sym_bitwise_expression_token1] = ACTIONS(813), + [aux_sym_bitwise_expression_token2] = ACTIONS(813), + [aux_sym_bitwise_expression_token3] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(1620), }, - [377] = { - [sym__literal] = STATE(293), - [sym_integer_literal] = STATE(293), - [sym_string_literal] = STATE(293), - [sym_expandable_string_literal] = STATE(113), - [sym_expandable_here_string_literal] = STATE(113), - [sym_variable] = STATE(293), - [sym__expression] = STATE(1612), - [sym_logical_expression] = STATE(1392), - [sym_bitwise_expression] = STATE(1310), - [sym_comparison_expression] = STATE(556), - [sym_additive_expression] = STATE(526), - [sym_multiplicative_expression] = STATE(371), - [sym_format_expression] = STATE(320), - [sym_range_expression] = STATE(321), - [sym_array_literal_expression] = STATE(158), - [sym_unary_expression] = STATE(298), - [sym_expression_with_unary_operator] = STATE(163), - [sym_pre_increment_expression] = STATE(157), - [sym_pre_decrement_expression] = STATE(157), - [sym_cast_expression] = STATE(157), - [sym__primary_expression] = STATE(293), - [sym__value] = STATE(293), - [sym_parenthesized_expression] = STATE(293), - [sym_sub_expression] = STATE(293), - [sym_array_expression] = STATE(293), - [sym_script_block_expression] = STATE(293), - [sym_hash_literal_expression] = STATE(293), - [sym_post_increment_expression] = STATE(293), - [sym_post_decrement_expression] = STATE(293), - [sym_member_access] = STATE(293), - [sym_element_access] = STATE(293), - [sym_invokation_expression] = STATE(293), - [sym_invokation_foreach_expression] = STATE(115), - [sym_type_literal] = STATE(77), + [447] = { + [sym_format_operator] = STATE(572), [sym_comment] = ACTIONS(81), - [sym_decimal_integer_literal] = ACTIONS(119), - [sym_hexadecimal_integer_literal] = ACTIONS(121), - [sym_real_literal] = ACTIONS(491), - [aux_sym_expandable_string_literal_token1] = ACTIONS(125), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), - [sym_verbatim_string_characters] = ACTIONS(129), - [sym_verbatim_here_string_characters] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(481), - [aux_sym_comparison_operator_token37] = ACTIONS(493), - [aux_sym_comparison_operator_token50] = ACTIONS(493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_DOLLAR_CARET] = ACTIONS(135), - [anon_sym_DOLLAR_QMARK] = ACTIONS(135), - [anon_sym_DOLLAR_] = ACTIONS(137), - [aux_sym_variable_token1] = ACTIONS(137), - [aux_sym_variable_token2] = ACTIONS(135), - [sym_braced_variable] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(493), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_AT_LBRACE] = ACTIONS(153), - }, - [378] = { - [sym_comment] = ACTIONS(3), - [sym_decimal_integer_literal] = ACTIONS(1343), - [sym_hexadecimal_integer_literal] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1343), - [aux_sym_expandable_string_literal_token1] = ACTIONS(1343), - [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1343), - [sym_verbatim_string_characters] = ACTIONS(1343), - [sym_verbatim_here_string_characters] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_GT_GT] = ACTIONS(1343), - [anon_sym_2_GT] = ACTIONS(1343), - [anon_sym_2_GT_GT] = ACTIONS(1343), - [anon_sym_3_GT] = ACTIONS(1343), - [anon_sym_3_GT_GT] = ACTIONS(1343), - [anon_sym_4_GT] = ACTIONS(1343), - [anon_sym_4_GT_GT] = ACTIONS(1343), - [anon_sym_5_GT] = ACTIONS(1343), - [anon_sym_5_GT_GT] = ACTIONS(1343), - [anon_sym_6_GT] = ACTIONS(1343), - [anon_sym_6_GT_GT] = ACTIONS(1343), - [anon_sym_STAR_GT] = ACTIONS(1343), - [anon_sym_STAR_GT_GT] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP1] = ACTIONS(1343), - [anon_sym_2_GT_AMP1] = ACTIONS(1343), - [anon_sym_3_GT_AMP1] = ACTIONS(1343), - [anon_sym_4_GT_AMP1] = ACTIONS(1343), - [anon_sym_5_GT_AMP1] = ACTIONS(1343), - [anon_sym_6_GT_AMP1] = ACTIONS(1343), - [anon_sym_STAR_GT_AMP2] = ACTIONS(1343), - [anon_sym_1_GT_AMP2] = ACTIONS(1343), - [anon_sym_3_GT_AMP2] = ACTIONS(1343), - [anon_sym_4_GT_AMP2] = ACTIONS(1343), - [anon_sym_5_GT_AMP2] = ACTIONS(1343), - [anon_sym_6_GT_AMP2] = ACTIONS(1343), - [aux_sym_comparison_operator_token37] = ACTIONS(1343), - [aux_sym_comparison_operator_token50] = ACTIONS(1343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), - [anon_sym_DOLLAR_CARET] = ACTIONS(1343), - [anon_sym_DOLLAR_QMARK] = ACTIONS(1343), - [anon_sym_DOLLAR_] = ACTIONS(1343), - [aux_sym_variable_token1] = ACTIONS(1343), - [aux_sym_variable_token2] = ACTIONS(1343), - [sym_braced_variable] = ACTIONS(1343), - [sym_generic_token] = ACTIONS(1343), - [sym_command_parameter] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [sym_stop_parsing] = ACTIONS(1343), - [anon_sym_SPACE] = ACTIONS(1343), - [anon_sym_COLON] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LPAREN] = ACTIONS(1343), - [anon_sym_AT_LBRACE] = ACTIONS(1343), + [aux_sym_comparison_operator_token1] = ACTIONS(809), + [aux_sym_comparison_operator_token2] = ACTIONS(809), + [aux_sym_comparison_operator_token3] = ACTIONS(809), + [aux_sym_comparison_operator_token4] = ACTIONS(809), + [aux_sym_comparison_operator_token5] = ACTIONS(809), + [aux_sym_comparison_operator_token6] = ACTIONS(809), + [aux_sym_comparison_operator_token7] = ACTIONS(809), + [aux_sym_comparison_operator_token8] = ACTIONS(809), + [aux_sym_comparison_operator_token9] = ACTIONS(809), + [aux_sym_comparison_operator_token10] = ACTIONS(809), + [aux_sym_comparison_operator_token11] = ACTIONS(809), + [aux_sym_comparison_operator_token12] = ACTIONS(809), + [aux_sym_comparison_operator_token13] = ACTIONS(809), + [aux_sym_comparison_operator_token14] = ACTIONS(809), + [aux_sym_comparison_operator_token15] = ACTIONS(809), + [aux_sym_comparison_operator_token16] = ACTIONS(809), + [aux_sym_comparison_operator_token17] = ACTIONS(809), + [aux_sym_comparison_operator_token18] = ACTIONS(809), + [aux_sym_comparison_operator_token19] = ACTIONS(809), + [aux_sym_comparison_operator_token20] = ACTIONS(809), + [aux_sym_comparison_operator_token21] = ACTIONS(809), + [aux_sym_comparison_operator_token22] = ACTIONS(809), + [aux_sym_comparison_operator_token23] = ACTIONS(809), + [aux_sym_comparison_operator_token24] = ACTIONS(809), + [aux_sym_comparison_operator_token25] = ACTIONS(809), + [aux_sym_comparison_operator_token26] = ACTIONS(809), + [aux_sym_comparison_operator_token27] = ACTIONS(809), + [aux_sym_comparison_operator_token28] = ACTIONS(811), + [aux_sym_comparison_operator_token29] = ACTIONS(809), + [aux_sym_comparison_operator_token30] = ACTIONS(809), + [aux_sym_comparison_operator_token31] = ACTIONS(809), + [aux_sym_comparison_operator_token32] = ACTIONS(809), + [aux_sym_comparison_operator_token33] = ACTIONS(809), + [aux_sym_comparison_operator_token34] = ACTIONS(811), + [aux_sym_comparison_operator_token35] = ACTIONS(809), + [aux_sym_comparison_operator_token36] = ACTIONS(809), + [aux_sym_comparison_operator_token37] = ACTIONS(809), + [aux_sym_comparison_operator_token38] = ACTIONS(809), + [aux_sym_comparison_operator_token39] = ACTIONS(809), + [aux_sym_comparison_operator_token40] = ACTIONS(809), + [aux_sym_comparison_operator_token41] = ACTIONS(809), + [aux_sym_comparison_operator_token42] = ACTIONS(809), + [aux_sym_comparison_operator_token43] = ACTIONS(809), + [aux_sym_comparison_operator_token44] = ACTIONS(809), + [aux_sym_comparison_operator_token45] = ACTIONS(809), + [aux_sym_comparison_operator_token46] = ACTIONS(809), + [aux_sym_comparison_operator_token47] = ACTIONS(809), + [aux_sym_comparison_operator_token48] = ACTIONS(809), + [aux_sym_comparison_operator_token49] = ACTIONS(809), + [aux_sym_comparison_operator_token50] = ACTIONS(809), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_PERCENT] = ACTIONS(809), + [aux_sym_logical_expression_token1] = ACTIONS(809), + [aux_sym_logical_expression_token2] = ACTIONS(809), + [aux_sym_logical_expression_token3] = ACTIONS(809), + [aux_sym_bitwise_expression_token1] = ACTIONS(809), + [aux_sym_bitwise_expression_token2] = ACTIONS(809), + [aux_sym_bitwise_expression_token3] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(809), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [69] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1341), 1, - aux_sym_else_clause_token1, - STATE(427), 1, - sym_else_clause, - ACTIONS(1466), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [211] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(819), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1470), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(817), 56, - sym__statement_terminator, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_PLUS, - [284] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(831), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1472), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(829), 56, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_PLUS, - anon_sym_RBRACK, - [357] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(819), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1472), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(817), 56, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_PLUS, - anon_sym_RBRACK, - [430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [499] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(831), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1470), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(829), 56, - sym__statement_terminator, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_PLUS, - [572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [641] = 34, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(392), 1, - sym_unary_expression, - STATE(394), 1, - sym_format_argument_expression, - STATE(395), 1, - sym_range_argument_expression, - STATE(462), 1, - sym_multiplicative_argument_expression, - STATE(578), 1, - sym_additive_argument_expression, - STATE(589), 1, - sym_comparison_argument_expression, - STATE(1360), 1, - sym_logical_argument_expression, - STATE(1361), 1, - sym_bitwise_argument_expression, - STATE(1597), 1, - sym_argument_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 1, - aux_sym_finally_clause_token1, - STATE(473), 1, - sym_finally_clause, - ACTIONS(1474), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [847] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(805), 1, - aux_sym_format_operator_token1, - STATE(587), 1, - sym_format_operator, - ACTIONS(1478), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1476), 58, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - [922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1480), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [991] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1484), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1482), 60, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_format_operator_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - anon_sym_DOT_DOT, - [1062] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT_DOT, - ACTIONS(1488), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1486), 59, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_format_operator_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - [1135] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(805), 1, - aux_sym_format_operator_token1, - STATE(587), 1, - sym_format_operator, - ACTIONS(1494), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1492), 58, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - [1210] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1490), 1, - anon_sym_DOT_DOT, - ACTIONS(1498), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1496), 59, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_format_operator_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - [1283] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1502), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1500), 60, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_format_operator_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PERCENT, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - anon_sym_DOT_DOT, - [1354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [1423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1506), 63, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [1492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_SPACE, - STATE(399), 1, - aux_sym_command_argument_sep_repeat1, - ACTIONS(1353), 60, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [1564] = 33, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - STATE(3), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(181), 1, - sym_format_expression, - STATE(182), 1, - sym_range_expression, - STATE(185), 1, - sym_array_literal_expression, - STATE(189), 1, - sym_multiplicative_expression, - STATE(197), 1, - sym_additive_expression, - STATE(208), 1, - sym_comparison_expression, - STATE(914), 1, - sym_bitwise_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(99), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [1694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - ts_builtin_sym_end, - ACTIONS(1464), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [1764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - ts_builtin_sym_end, - ACTIONS(1464), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [1834] = 33, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(306), 1, - sym_unary_expression, - STATE(348), 1, - sym_format_expression, - STATE(349), 1, - sym_range_expression, - STATE(384), 1, - sym_multiplicative_expression, - STATE(548), 1, - sym_additive_expression, - STATE(568), 1, - sym_comparison_expression, - STATE(1332), 1, - sym_bitwise_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [1964] = 33, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, - sym_real_literal, - ACTIONS(553), 1, - anon_sym_PLUS_PLUS, - ACTIONS(555), 1, - anon_sym_DASH_DASH, - STATE(80), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(304), 1, - sym_unary_expression, - STATE(345), 1, - sym_format_expression, - STATE(346), 1, - sym_range_expression, - STATE(382), 1, - sym_multiplicative_expression, - STATE(547), 1, - sym_additive_expression, - STATE(570), 1, - sym_comparison_expression, - STATE(1316), 1, - sym_bitwise_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(549), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [2094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1513), 1, - ts_builtin_sym_end, - ACTIONS(1506), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2164] = 33, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(298), 1, - sym_unary_expression, - STATE(320), 1, - sym_format_expression, - STATE(321), 1, - sym_range_expression, - STATE(371), 1, - sym_multiplicative_expression, - STATE(526), 1, - sym_additive_expression, - STATE(556), 1, - sym_comparison_expression, - STATE(1307), 1, - sym_bitwise_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [2294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 1, - ts_builtin_sym_end, - ACTIONS(1468), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 1, - ts_builtin_sym_end, - ACTIONS(1468), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2434] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(251), 14, - sym_decimal_integer_literal, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(253), 48, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [2504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - ts_builtin_sym_end, - ACTIONS(1504), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_SPACE, - STATE(399), 1, - aux_sym_command_argument_sep_repeat1, - ACTIONS(1343), 60, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1349), 1, - sym__statement_terminator, - ACTIONS(1521), 1, - anon_sym_SPACE, - STATE(415), 1, - aux_sym_command_argument_sep_repeat1, - ACTIONS(1343), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - aux_sym_finally_clause_token1, - ACTIONS(1523), 1, - ts_builtin_sym_end, - STATE(536), 1, - sym_finally_clause, - ACTIONS(1474), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2794] = 33, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - STATE(4), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(179), 1, - sym_range_expression, - STATE(180), 1, - sym_format_expression, - STATE(190), 1, - sym_multiplicative_expression, - STATE(196), 1, - sym_additive_expression, - STATE(200), 1, - sym_comparison_expression, - STATE(915), 1, - sym_bitwise_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(133), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [2924] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - sym__statement_terminator, - ACTIONS(1525), 1, - anon_sym_SPACE, - STATE(415), 1, - aux_sym_command_argument_sep_repeat1, - ACTIONS(1353), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [2998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1528), 1, - ts_builtin_sym_end, - ACTIONS(1480), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_elseif_clause_token1, - aux_sym_else_clause_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3068] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(251), 14, - sym_decimal_integer_literal, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(253), 48, - sym__statement_terminator, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [3138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - aux_sym_else_clause_token1, - ACTIONS(1530), 1, - ts_builtin_sym_end, - STATE(492), 1, - sym_else_clause, - ACTIONS(1466), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1532), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1534), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3346] = 32, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - STATE(3), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(181), 1, - sym_format_expression, - STATE(182), 1, - sym_range_expression, - STATE(185), 1, - sym_array_literal_expression, - STATE(189), 1, - sym_multiplicative_expression, - STATE(197), 1, - sym_additive_expression, - STATE(207), 1, - sym_comparison_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(99), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [3473] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1544), 1, - anon_sym_RBRACE, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1806), 1, - sym_hash_literal_body, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [3598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3665] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1554), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1831), 1, - sym_hash_literal_body, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [3790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1556), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1558), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1560), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [3991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1562), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1564), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4125] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1566), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - STATE(2015), 1, - sym_hash_literal_body, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [4250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1570), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1572), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1574), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4585] = 32, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, - sym_real_literal, - ACTIONS(553), 1, - anon_sym_PLUS_PLUS, - ACTIONS(555), 1, - anon_sym_DASH_DASH, - STATE(80), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(304), 1, - sym_unary_expression, - STATE(345), 1, - sym_format_expression, - STATE(346), 1, - sym_range_expression, - STATE(382), 1, - sym_multiplicative_expression, - STATE(547), 1, - sym_additive_expression, - STATE(569), 1, - sym_comparison_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(549), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [4712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1576), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [4846] = 32, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(392), 1, - sym_unary_expression, - STATE(394), 1, - sym_format_argument_expression, - STATE(395), 1, - sym_range_argument_expression, - STATE(462), 1, - sym_multiplicative_argument_expression, - STATE(578), 1, - sym_additive_argument_expression, - STATE(589), 1, - sym_comparison_argument_expression, - STATE(1386), 1, - sym_bitwise_argument_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [4973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1578), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1580), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5107] = 32, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(306), 1, - sym_unary_expression, - STATE(348), 1, - sym_format_expression, - STATE(349), 1, - sym_range_expression, - STATE(384), 1, - sym_multiplicative_expression, - STATE(548), 1, - sym_additive_expression, - STATE(567), 1, - sym_comparison_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [5234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1582), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5301] = 32, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - STATE(4), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(179), 1, - sym_range_expression, - STATE(180), 1, - sym_format_expression, - STATE(190), 1, - sym_multiplicative_expression, - STATE(196), 1, - sym_additive_expression, - STATE(201), 1, - sym_comparison_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(133), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [5428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1586), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1590), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1592), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1594), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1596), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1598), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [5964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1474), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1600), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6165] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1604), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - STATE(1936), 1, - sym_hash_literal_body, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [6290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1608), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6424] = 32, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(298), 1, - sym_unary_expression, - STATE(320), 1, - sym_format_expression, - STATE(321), 1, - sym_range_expression, - STATE(371), 1, - sym_multiplicative_expression, - STATE(526), 1, - sym_additive_expression, - STATE(562), 1, - sym_comparison_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [6551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1610), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6685] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1614), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1616), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(1612), 54, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - [6756] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1618), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - STATE(1931), 1, - sym_hash_literal_body, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [6881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1620), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [6948] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1622), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1736), 1, - sym_hash_literal_body, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [7073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1624), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1626), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1628), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1630), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7408] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1634), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1762), 1, - sym_hash_literal_body, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [7533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1636), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7667] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1642), 3, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - anon_sym_DASH, - ACTIONS(1616), 4, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_BSLASH, - anon_sym_STAR, - ACTIONS(1640), 54, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - anon_sym_PLUS, - [7738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1644), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1646), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [7939] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, - anon_sym_AT_LPAREN, - ACTIONS(1125), 1, - anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - ACTIONS(1650), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1784), 1, - sym_hash_literal_body, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1542), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [8064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1654), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1658), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1660), 61, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1662), 1, - ts_builtin_sym_end, - ACTIONS(1596), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1664), 1, - ts_builtin_sym_end, - ACTIONS(1552), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - ts_builtin_sym_end, - ACTIONS(1656), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1668), 1, - ts_builtin_sym_end, - ACTIONS(1652), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - ts_builtin_sym_end, - ACTIONS(1658), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1672), 1, - ts_builtin_sym_end, - ACTIONS(1556), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - ts_builtin_sym_end, - ACTIONS(1582), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1676), 1, - ts_builtin_sym_end, - ACTIONS(1558), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [8943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1678), 1, - ts_builtin_sym_end, - ACTIONS(1560), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1343), 60, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1680), 1, - ts_builtin_sym_end, - ACTIONS(1576), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - ts_builtin_sym_end, - ACTIONS(1578), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1684), 1, - ts_builtin_sym_end, - ACTIONS(1580), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1686), 1, - ts_builtin_sym_end, - ACTIONS(1602), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9349] = 31, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, - sym_real_literal, - ACTIONS(553), 1, - anon_sym_PLUS_PLUS, - ACTIONS(555), 1, - anon_sym_DASH_DASH, - STATE(80), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(304), 1, - sym_unary_expression, - STATE(345), 1, - sym_format_expression, - STATE(346), 1, - sym_range_expression, - STATE(382), 1, - sym_multiplicative_expression, - STATE(558), 1, - sym_additive_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(549), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [9473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 1, - ts_builtin_sym_end, - ACTIONS(1584), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - ts_builtin_sym_end, - ACTIONS(1586), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1692), 1, - ts_builtin_sym_end, - ACTIONS(1606), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1349), 1, - sym__statement_terminator, - ACTIONS(1343), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_generic_token, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1694), 1, - ts_builtin_sym_end, - ACTIONS(1588), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1696), 1, - ts_builtin_sym_end, - ACTIONS(1590), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1698), 1, - ts_builtin_sym_end, - ACTIONS(1594), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [9949] = 31, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(306), 1, - sym_unary_expression, - STATE(348), 1, - sym_format_expression, - STATE(349), 1, - sym_range_expression, - STATE(384), 1, - sym_multiplicative_expression, - STATE(551), 1, - sym_additive_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [10073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1700), 1, - ts_builtin_sym_end, - ACTIONS(1598), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1702), 1, - ts_builtin_sym_end, - ACTIONS(1600), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 1, - ts_builtin_sym_end, - ACTIONS(1474), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10277] = 3, - ACTIONS(3), 1, + [448] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(801), + [aux_sym_comparison_operator_token2] = ACTIONS(801), + [aux_sym_comparison_operator_token3] = ACTIONS(801), + [aux_sym_comparison_operator_token4] = ACTIONS(801), + [aux_sym_comparison_operator_token5] = ACTIONS(801), + [aux_sym_comparison_operator_token6] = ACTIONS(801), + [aux_sym_comparison_operator_token7] = ACTIONS(801), + [aux_sym_comparison_operator_token8] = ACTIONS(801), + [aux_sym_comparison_operator_token9] = ACTIONS(801), + [aux_sym_comparison_operator_token10] = ACTIONS(801), + [aux_sym_comparison_operator_token11] = ACTIONS(801), + [aux_sym_comparison_operator_token12] = ACTIONS(801), + [aux_sym_comparison_operator_token13] = ACTIONS(801), + [aux_sym_comparison_operator_token14] = ACTIONS(801), + [aux_sym_comparison_operator_token15] = ACTIONS(801), + [aux_sym_comparison_operator_token16] = ACTIONS(801), + [aux_sym_comparison_operator_token17] = ACTIONS(801), + [aux_sym_comparison_operator_token18] = ACTIONS(801), + [aux_sym_comparison_operator_token19] = ACTIONS(801), + [aux_sym_comparison_operator_token20] = ACTIONS(801), + [aux_sym_comparison_operator_token21] = ACTIONS(801), + [aux_sym_comparison_operator_token22] = ACTIONS(801), + [aux_sym_comparison_operator_token23] = ACTIONS(801), + [aux_sym_comparison_operator_token24] = ACTIONS(801), + [aux_sym_comparison_operator_token25] = ACTIONS(801), + [aux_sym_comparison_operator_token26] = ACTIONS(801), + [aux_sym_comparison_operator_token27] = ACTIONS(801), + [aux_sym_comparison_operator_token28] = ACTIONS(803), + [aux_sym_comparison_operator_token29] = ACTIONS(801), + [aux_sym_comparison_operator_token30] = ACTIONS(801), + [aux_sym_comparison_operator_token31] = ACTIONS(801), + [aux_sym_comparison_operator_token32] = ACTIONS(801), + [aux_sym_comparison_operator_token33] = ACTIONS(801), + [aux_sym_comparison_operator_token34] = ACTIONS(803), + [aux_sym_comparison_operator_token35] = ACTIONS(801), + [aux_sym_comparison_operator_token36] = ACTIONS(801), + [aux_sym_comparison_operator_token37] = ACTIONS(801), + [aux_sym_comparison_operator_token38] = ACTIONS(801), + [aux_sym_comparison_operator_token39] = ACTIONS(801), + [aux_sym_comparison_operator_token40] = ACTIONS(801), + [aux_sym_comparison_operator_token41] = ACTIONS(801), + [aux_sym_comparison_operator_token42] = ACTIONS(801), + [aux_sym_comparison_operator_token43] = ACTIONS(801), + [aux_sym_comparison_operator_token44] = ACTIONS(801), + [aux_sym_comparison_operator_token45] = ACTIONS(801), + [aux_sym_comparison_operator_token46] = ACTIONS(801), + [aux_sym_comparison_operator_token47] = ACTIONS(801), + [aux_sym_comparison_operator_token48] = ACTIONS(801), + [aux_sym_comparison_operator_token49] = ACTIONS(801), + [aux_sym_comparison_operator_token50] = ACTIONS(801), + [aux_sym_format_operator_token1] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [aux_sym_logical_expression_token1] = ACTIONS(801), + [aux_sym_logical_expression_token2] = ACTIONS(801), + [aux_sym_logical_expression_token3] = ACTIONS(801), + [aux_sym_bitwise_expression_token1] = ACTIONS(801), + [aux_sym_bitwise_expression_token2] = ACTIONS(801), + [aux_sym_bitwise_expression_token3] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_BSLASH] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(1620), + }, + [449] = { + [aux_sym_command_argument_sep_repeat1] = STATE(449), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1622), + [sym_hexadecimal_integer_literal] = ACTIONS(1622), + [sym_real_literal] = ACTIONS(1622), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1622), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1622), + [sym_verbatim_string_characters] = ACTIONS(1622), + [sym_verbatim_here_string_characters] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_GT_GT] = ACTIONS(1622), + [anon_sym_2_GT] = ACTIONS(1622), + [anon_sym_2_GT_GT] = ACTIONS(1622), + [anon_sym_3_GT] = ACTIONS(1622), + [anon_sym_3_GT_GT] = ACTIONS(1622), + [anon_sym_4_GT] = ACTIONS(1622), + [anon_sym_4_GT_GT] = ACTIONS(1622), + [anon_sym_5_GT] = ACTIONS(1622), + [anon_sym_5_GT_GT] = ACTIONS(1622), + [anon_sym_6_GT] = ACTIONS(1622), + [anon_sym_6_GT_GT] = ACTIONS(1622), + [anon_sym_STAR_GT] = ACTIONS(1622), + [anon_sym_STAR_GT_GT] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1622), + [anon_sym_2_GT_AMP1] = ACTIONS(1622), + [anon_sym_3_GT_AMP1] = ACTIONS(1622), + [anon_sym_4_GT_AMP1] = ACTIONS(1622), + [anon_sym_5_GT_AMP1] = ACTIONS(1622), + [anon_sym_6_GT_AMP1] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1622), + [anon_sym_1_GT_AMP2] = ACTIONS(1622), + [anon_sym_3_GT_AMP2] = ACTIONS(1622), + [anon_sym_4_GT_AMP2] = ACTIONS(1622), + [anon_sym_5_GT_AMP2] = ACTIONS(1622), + [anon_sym_6_GT_AMP2] = ACTIONS(1622), + [aux_sym_comparison_operator_token37] = ACTIONS(1622), + [aux_sym_comparison_operator_token50] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_CARET] = ACTIONS(1622), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1622), + [anon_sym_DOLLAR_] = ACTIONS(1622), + [aux_sym_variable_token1] = ACTIONS(1622), + [aux_sym_variable_token2] = ACTIONS(1622), + [sym_braced_variable] = ACTIONS(1622), + [sym_generic_token] = ACTIONS(1622), + [sym_command_parameter] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [sym_stop_parsing] = ACTIONS(1622), + [anon_sym_SPACE] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS] = ACTIONS(1622), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LBRACE] = ACTIONS(1622), + [sym__statement_terminator] = ACTIONS(1627), + }, + [450] = { + [aux_sym_command_argument_sep_repeat1] = STATE(450), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1622), + [sym_hexadecimal_integer_literal] = ACTIONS(1622), + [sym_real_literal] = ACTIONS(1622), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1622), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1622), + [sym_verbatim_string_characters] = ACTIONS(1622), + [sym_verbatim_here_string_characters] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_GT_GT] = ACTIONS(1622), + [anon_sym_2_GT] = ACTIONS(1622), + [anon_sym_2_GT_GT] = ACTIONS(1622), + [anon_sym_3_GT] = ACTIONS(1622), + [anon_sym_3_GT_GT] = ACTIONS(1622), + [anon_sym_4_GT] = ACTIONS(1622), + [anon_sym_4_GT_GT] = ACTIONS(1622), + [anon_sym_5_GT] = ACTIONS(1622), + [anon_sym_5_GT_GT] = ACTIONS(1622), + [anon_sym_6_GT] = ACTIONS(1622), + [anon_sym_6_GT_GT] = ACTIONS(1622), + [anon_sym_STAR_GT] = ACTIONS(1622), + [anon_sym_STAR_GT_GT] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1622), + [anon_sym_2_GT_AMP1] = ACTIONS(1622), + [anon_sym_3_GT_AMP1] = ACTIONS(1622), + [anon_sym_4_GT_AMP1] = ACTIONS(1622), + [anon_sym_5_GT_AMP1] = ACTIONS(1622), + [anon_sym_6_GT_AMP1] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1622), + [anon_sym_1_GT_AMP2] = ACTIONS(1622), + [anon_sym_3_GT_AMP2] = ACTIONS(1622), + [anon_sym_4_GT_AMP2] = ACTIONS(1622), + [anon_sym_5_GT_AMP2] = ACTIONS(1622), + [anon_sym_6_GT_AMP2] = ACTIONS(1622), + [aux_sym_comparison_operator_token37] = ACTIONS(1622), + [aux_sym_comparison_operator_token50] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_CARET] = ACTIONS(1622), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1622), + [anon_sym_DOLLAR_] = ACTIONS(1622), + [aux_sym_variable_token1] = ACTIONS(1622), + [aux_sym_variable_token2] = ACTIONS(1622), + [sym_braced_variable] = ACTIONS(1622), + [sym_generic_token] = ACTIONS(1622), + [sym_command_parameter] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [sym_stop_parsing] = ACTIONS(1622), + [anon_sym_SPACE] = ACTIONS(1629), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS] = ACTIONS(1622), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LBRACE] = ACTIONS(1622), + }, + [451] = { + [sym_format_operator] = STATE(572), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(795), + [aux_sym_comparison_operator_token2] = ACTIONS(795), + [aux_sym_comparison_operator_token3] = ACTIONS(795), + [aux_sym_comparison_operator_token4] = ACTIONS(795), + [aux_sym_comparison_operator_token5] = ACTIONS(795), + [aux_sym_comparison_operator_token6] = ACTIONS(795), + [aux_sym_comparison_operator_token7] = ACTIONS(795), + [aux_sym_comparison_operator_token8] = ACTIONS(795), + [aux_sym_comparison_operator_token9] = ACTIONS(795), + [aux_sym_comparison_operator_token10] = ACTIONS(795), + [aux_sym_comparison_operator_token11] = ACTIONS(795), + [aux_sym_comparison_operator_token12] = ACTIONS(795), + [aux_sym_comparison_operator_token13] = ACTIONS(795), + [aux_sym_comparison_operator_token14] = ACTIONS(795), + [aux_sym_comparison_operator_token15] = ACTIONS(795), + [aux_sym_comparison_operator_token16] = ACTIONS(795), + [aux_sym_comparison_operator_token17] = ACTIONS(795), + [aux_sym_comparison_operator_token18] = ACTIONS(795), + [aux_sym_comparison_operator_token19] = ACTIONS(795), + [aux_sym_comparison_operator_token20] = ACTIONS(795), + [aux_sym_comparison_operator_token21] = ACTIONS(795), + [aux_sym_comparison_operator_token22] = ACTIONS(795), + [aux_sym_comparison_operator_token23] = ACTIONS(795), + [aux_sym_comparison_operator_token24] = ACTIONS(795), + [aux_sym_comparison_operator_token25] = ACTIONS(795), + [aux_sym_comparison_operator_token26] = ACTIONS(795), + [aux_sym_comparison_operator_token27] = ACTIONS(795), + [aux_sym_comparison_operator_token28] = ACTIONS(797), + [aux_sym_comparison_operator_token29] = ACTIONS(795), + [aux_sym_comparison_operator_token30] = ACTIONS(795), + [aux_sym_comparison_operator_token31] = ACTIONS(795), + [aux_sym_comparison_operator_token32] = ACTIONS(795), + [aux_sym_comparison_operator_token33] = ACTIONS(795), + [aux_sym_comparison_operator_token34] = ACTIONS(797), + [aux_sym_comparison_operator_token35] = ACTIONS(795), + [aux_sym_comparison_operator_token36] = ACTIONS(795), + [aux_sym_comparison_operator_token37] = ACTIONS(795), + [aux_sym_comparison_operator_token38] = ACTIONS(795), + [aux_sym_comparison_operator_token39] = ACTIONS(795), + [aux_sym_comparison_operator_token40] = ACTIONS(795), + [aux_sym_comparison_operator_token41] = ACTIONS(795), + [aux_sym_comparison_operator_token42] = ACTIONS(795), + [aux_sym_comparison_operator_token43] = ACTIONS(795), + [aux_sym_comparison_operator_token44] = ACTIONS(795), + [aux_sym_comparison_operator_token45] = ACTIONS(795), + [aux_sym_comparison_operator_token46] = ACTIONS(795), + [aux_sym_comparison_operator_token47] = ACTIONS(795), + [aux_sym_comparison_operator_token48] = ACTIONS(795), + [aux_sym_comparison_operator_token49] = ACTIONS(795), + [aux_sym_comparison_operator_token50] = ACTIONS(795), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_PERCENT] = ACTIONS(795), + [aux_sym_logical_expression_token1] = ACTIONS(795), + [aux_sym_logical_expression_token2] = ACTIONS(795), + [aux_sym_logical_expression_token3] = ACTIONS(795), + [aux_sym_bitwise_expression_token1] = ACTIONS(795), + [aux_sym_bitwise_expression_token2] = ACTIONS(795), + [aux_sym_bitwise_expression_token3] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_BSLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + }, + [452] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1578), + [sym_logical_expression] = STATE(1356), + [sym_bitwise_expression] = STATE(1274), + [sym_comparison_expression] = STATE(556), + [sym_additive_expression] = STATE(541), + [sym_multiplicative_expression] = STATE(490), + [sym_format_expression] = STATE(447), + [sym_range_expression] = STATE(446), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(439), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_attribute_argument] = STATE(1624), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [sym_simple_name] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [453] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1759), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [454] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(801), + [aux_sym_comparison_operator_token2] = ACTIONS(801), + [aux_sym_comparison_operator_token3] = ACTIONS(801), + [aux_sym_comparison_operator_token4] = ACTIONS(801), + [aux_sym_comparison_operator_token5] = ACTIONS(801), + [aux_sym_comparison_operator_token6] = ACTIONS(801), + [aux_sym_comparison_operator_token7] = ACTIONS(801), + [aux_sym_comparison_operator_token8] = ACTIONS(801), + [aux_sym_comparison_operator_token9] = ACTIONS(801), + [aux_sym_comparison_operator_token10] = ACTIONS(801), + [aux_sym_comparison_operator_token11] = ACTIONS(801), + [aux_sym_comparison_operator_token12] = ACTIONS(801), + [aux_sym_comparison_operator_token13] = ACTIONS(801), + [aux_sym_comparison_operator_token14] = ACTIONS(801), + [aux_sym_comparison_operator_token15] = ACTIONS(801), + [aux_sym_comparison_operator_token16] = ACTIONS(801), + [aux_sym_comparison_operator_token17] = ACTIONS(801), + [aux_sym_comparison_operator_token18] = ACTIONS(801), + [aux_sym_comparison_operator_token19] = ACTIONS(801), + [aux_sym_comparison_operator_token20] = ACTIONS(801), + [aux_sym_comparison_operator_token21] = ACTIONS(801), + [aux_sym_comparison_operator_token22] = ACTIONS(801), + [aux_sym_comparison_operator_token23] = ACTIONS(801), + [aux_sym_comparison_operator_token24] = ACTIONS(801), + [aux_sym_comparison_operator_token25] = ACTIONS(801), + [aux_sym_comparison_operator_token26] = ACTIONS(801), + [aux_sym_comparison_operator_token27] = ACTIONS(801), + [aux_sym_comparison_operator_token28] = ACTIONS(803), + [aux_sym_comparison_operator_token29] = ACTIONS(801), + [aux_sym_comparison_operator_token30] = ACTIONS(801), + [aux_sym_comparison_operator_token31] = ACTIONS(801), + [aux_sym_comparison_operator_token32] = ACTIONS(801), + [aux_sym_comparison_operator_token33] = ACTIONS(801), + [aux_sym_comparison_operator_token34] = ACTIONS(803), + [aux_sym_comparison_operator_token35] = ACTIONS(801), + [aux_sym_comparison_operator_token36] = ACTIONS(801), + [aux_sym_comparison_operator_token37] = ACTIONS(801), + [aux_sym_comparison_operator_token38] = ACTIONS(801), + [aux_sym_comparison_operator_token39] = ACTIONS(801), + [aux_sym_comparison_operator_token40] = ACTIONS(801), + [aux_sym_comparison_operator_token41] = ACTIONS(801), + [aux_sym_comparison_operator_token42] = ACTIONS(801), + [aux_sym_comparison_operator_token43] = ACTIONS(801), + [aux_sym_comparison_operator_token44] = ACTIONS(801), + [aux_sym_comparison_operator_token45] = ACTIONS(801), + [aux_sym_comparison_operator_token46] = ACTIONS(801), + [aux_sym_comparison_operator_token47] = ACTIONS(801), + [aux_sym_comparison_operator_token48] = ACTIONS(801), + [aux_sym_comparison_operator_token49] = ACTIONS(801), + [aux_sym_comparison_operator_token50] = ACTIONS(801), + [aux_sym_format_operator_token1] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [aux_sym_logical_expression_token1] = ACTIONS(801), + [aux_sym_logical_expression_token2] = ACTIONS(801), + [aux_sym_logical_expression_token3] = ACTIONS(801), + [aux_sym_bitwise_expression_token1] = ACTIONS(801), + [aux_sym_bitwise_expression_token2] = ACTIONS(801), + [aux_sym_bitwise_expression_token3] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_BSLASH] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [sym__statement_terminator] = ACTIONS(801), + }, + [455] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1612), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + }, + [456] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1833), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [457] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1802), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [458] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1820), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [459] = { + [sym_format_operator] = STATE(576), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(809), + [aux_sym_comparison_operator_token2] = ACTIONS(809), + [aux_sym_comparison_operator_token3] = ACTIONS(809), + [aux_sym_comparison_operator_token4] = ACTIONS(809), + [aux_sym_comparison_operator_token5] = ACTIONS(809), + [aux_sym_comparison_operator_token6] = ACTIONS(809), + [aux_sym_comparison_operator_token7] = ACTIONS(809), + [aux_sym_comparison_operator_token8] = ACTIONS(809), + [aux_sym_comparison_operator_token9] = ACTIONS(809), + [aux_sym_comparison_operator_token10] = ACTIONS(809), + [aux_sym_comparison_operator_token11] = ACTIONS(809), + [aux_sym_comparison_operator_token12] = ACTIONS(809), + [aux_sym_comparison_operator_token13] = ACTIONS(809), + [aux_sym_comparison_operator_token14] = ACTIONS(809), + [aux_sym_comparison_operator_token15] = ACTIONS(809), + [aux_sym_comparison_operator_token16] = ACTIONS(809), + [aux_sym_comparison_operator_token17] = ACTIONS(809), + [aux_sym_comparison_operator_token18] = ACTIONS(809), + [aux_sym_comparison_operator_token19] = ACTIONS(809), + [aux_sym_comparison_operator_token20] = ACTIONS(809), + [aux_sym_comparison_operator_token21] = ACTIONS(809), + [aux_sym_comparison_operator_token22] = ACTIONS(809), + [aux_sym_comparison_operator_token23] = ACTIONS(809), + [aux_sym_comparison_operator_token24] = ACTIONS(809), + [aux_sym_comparison_operator_token25] = ACTIONS(809), + [aux_sym_comparison_operator_token26] = ACTIONS(809), + [aux_sym_comparison_operator_token27] = ACTIONS(809), + [aux_sym_comparison_operator_token28] = ACTIONS(811), + [aux_sym_comparison_operator_token29] = ACTIONS(809), + [aux_sym_comparison_operator_token30] = ACTIONS(809), + [aux_sym_comparison_operator_token31] = ACTIONS(809), + [aux_sym_comparison_operator_token32] = ACTIONS(809), + [aux_sym_comparison_operator_token33] = ACTIONS(809), + [aux_sym_comparison_operator_token34] = ACTIONS(811), + [aux_sym_comparison_operator_token35] = ACTIONS(809), + [aux_sym_comparison_operator_token36] = ACTIONS(809), + [aux_sym_comparison_operator_token37] = ACTIONS(809), + [aux_sym_comparison_operator_token38] = ACTIONS(809), + [aux_sym_comparison_operator_token39] = ACTIONS(809), + [aux_sym_comparison_operator_token40] = ACTIONS(809), + [aux_sym_comparison_operator_token41] = ACTIONS(809), + [aux_sym_comparison_operator_token42] = ACTIONS(809), + [aux_sym_comparison_operator_token43] = ACTIONS(809), + [aux_sym_comparison_operator_token44] = ACTIONS(809), + [aux_sym_comparison_operator_token45] = ACTIONS(809), + [aux_sym_comparison_operator_token46] = ACTIONS(809), + [aux_sym_comparison_operator_token47] = ACTIONS(809), + [aux_sym_comparison_operator_token48] = ACTIONS(809), + [aux_sym_comparison_operator_token49] = ACTIONS(809), + [aux_sym_comparison_operator_token50] = ACTIONS(809), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(809), + [aux_sym_logical_expression_token1] = ACTIONS(809), + [aux_sym_logical_expression_token2] = ACTIONS(809), + [aux_sym_logical_expression_token3] = ACTIONS(809), + [aux_sym_bitwise_expression_token1] = ACTIONS(809), + [aux_sym_bitwise_expression_token2] = ACTIONS(809), + [aux_sym_bitwise_expression_token3] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(809), + }, + [460] = { + [aux_sym_command_argument_sep_repeat1] = STATE(462), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1642), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + [sym__statement_terminator] = ACTIONS(1618), + }, + [461] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(813), + [aux_sym_comparison_operator_token2] = ACTIONS(813), + [aux_sym_comparison_operator_token3] = ACTIONS(813), + [aux_sym_comparison_operator_token4] = ACTIONS(813), + [aux_sym_comparison_operator_token5] = ACTIONS(813), + [aux_sym_comparison_operator_token6] = ACTIONS(813), + [aux_sym_comparison_operator_token7] = ACTIONS(813), + [aux_sym_comparison_operator_token8] = ACTIONS(813), + [aux_sym_comparison_operator_token9] = ACTIONS(813), + [aux_sym_comparison_operator_token10] = ACTIONS(813), + [aux_sym_comparison_operator_token11] = ACTIONS(813), + [aux_sym_comparison_operator_token12] = ACTIONS(813), + [aux_sym_comparison_operator_token13] = ACTIONS(813), + [aux_sym_comparison_operator_token14] = ACTIONS(813), + [aux_sym_comparison_operator_token15] = ACTIONS(813), + [aux_sym_comparison_operator_token16] = ACTIONS(813), + [aux_sym_comparison_operator_token17] = ACTIONS(813), + [aux_sym_comparison_operator_token18] = ACTIONS(813), + [aux_sym_comparison_operator_token19] = ACTIONS(813), + [aux_sym_comparison_operator_token20] = ACTIONS(813), + [aux_sym_comparison_operator_token21] = ACTIONS(813), + [aux_sym_comparison_operator_token22] = ACTIONS(813), + [aux_sym_comparison_operator_token23] = ACTIONS(813), + [aux_sym_comparison_operator_token24] = ACTIONS(813), + [aux_sym_comparison_operator_token25] = ACTIONS(813), + [aux_sym_comparison_operator_token26] = ACTIONS(813), + [aux_sym_comparison_operator_token27] = ACTIONS(813), + [aux_sym_comparison_operator_token28] = ACTIONS(815), + [aux_sym_comparison_operator_token29] = ACTIONS(813), + [aux_sym_comparison_operator_token30] = ACTIONS(813), + [aux_sym_comparison_operator_token31] = ACTIONS(813), + [aux_sym_comparison_operator_token32] = ACTIONS(813), + [aux_sym_comparison_operator_token33] = ACTIONS(813), + [aux_sym_comparison_operator_token34] = ACTIONS(815), + [aux_sym_comparison_operator_token35] = ACTIONS(813), + [aux_sym_comparison_operator_token36] = ACTIONS(813), + [aux_sym_comparison_operator_token37] = ACTIONS(813), + [aux_sym_comparison_operator_token38] = ACTIONS(813), + [aux_sym_comparison_operator_token39] = ACTIONS(813), + [aux_sym_comparison_operator_token40] = ACTIONS(813), + [aux_sym_comparison_operator_token41] = ACTIONS(813), + [aux_sym_comparison_operator_token42] = ACTIONS(813), + [aux_sym_comparison_operator_token43] = ACTIONS(813), + [aux_sym_comparison_operator_token44] = ACTIONS(813), + [aux_sym_comparison_operator_token45] = ACTIONS(813), + [aux_sym_comparison_operator_token46] = ACTIONS(813), + [aux_sym_comparison_operator_token47] = ACTIONS(813), + [aux_sym_comparison_operator_token48] = ACTIONS(813), + [aux_sym_comparison_operator_token49] = ACTIONS(813), + [aux_sym_comparison_operator_token50] = ACTIONS(813), + [aux_sym_format_operator_token1] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [aux_sym_logical_expression_token1] = ACTIONS(813), + [aux_sym_logical_expression_token2] = ACTIONS(813), + [aux_sym_logical_expression_token3] = ACTIONS(813), + [aux_sym_bitwise_expression_token1] = ACTIONS(813), + [aux_sym_bitwise_expression_token2] = ACTIONS(813), + [aux_sym_bitwise_expression_token3] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_RBRACK] = ACTIONS(813), + }, + [462] = { + [aux_sym_command_argument_sep_repeat1] = STATE(462), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1622), + [sym_hexadecimal_integer_literal] = ACTIONS(1622), + [sym_real_literal] = ACTIONS(1622), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1622), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1622), + [sym_verbatim_string_characters] = ACTIONS(1622), + [sym_verbatim_here_string_characters] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_GT_GT] = ACTIONS(1622), + [anon_sym_2_GT] = ACTIONS(1622), + [anon_sym_2_GT_GT] = ACTIONS(1622), + [anon_sym_3_GT] = ACTIONS(1622), + [anon_sym_3_GT_GT] = ACTIONS(1622), + [anon_sym_4_GT] = ACTIONS(1622), + [anon_sym_4_GT_GT] = ACTIONS(1622), + [anon_sym_5_GT] = ACTIONS(1622), + [anon_sym_5_GT_GT] = ACTIONS(1622), + [anon_sym_6_GT] = ACTIONS(1622), + [anon_sym_6_GT_GT] = ACTIONS(1622), + [anon_sym_STAR_GT] = ACTIONS(1622), + [anon_sym_STAR_GT_GT] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1622), + [anon_sym_2_GT_AMP1] = ACTIONS(1622), + [anon_sym_3_GT_AMP1] = ACTIONS(1622), + [anon_sym_4_GT_AMP1] = ACTIONS(1622), + [anon_sym_5_GT_AMP1] = ACTIONS(1622), + [anon_sym_6_GT_AMP1] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1622), + [anon_sym_1_GT_AMP2] = ACTIONS(1622), + [anon_sym_3_GT_AMP2] = ACTIONS(1622), + [anon_sym_4_GT_AMP2] = ACTIONS(1622), + [anon_sym_5_GT_AMP2] = ACTIONS(1622), + [anon_sym_6_GT_AMP2] = ACTIONS(1622), + [aux_sym_comparison_operator_token37] = ACTIONS(1622), + [aux_sym_comparison_operator_token50] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_CARET] = ACTIONS(1622), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1622), + [anon_sym_DOLLAR_] = ACTIONS(1622), + [aux_sym_variable_token1] = ACTIONS(1622), + [aux_sym_variable_token2] = ACTIONS(1622), + [sym_braced_variable] = ACTIONS(1622), + [sym_generic_token] = ACTIONS(1622), + [sym_command_parameter] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [sym_stop_parsing] = ACTIONS(1622), + [anon_sym_SPACE] = ACTIONS(1646), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS] = ACTIONS(1622), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LBRACE] = ACTIONS(1622), + [sym__statement_terminator] = ACTIONS(1627), + }, + [463] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1697), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [464] = { + [sym_format_operator] = STATE(576), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(795), + [aux_sym_comparison_operator_token2] = ACTIONS(795), + [aux_sym_comparison_operator_token3] = ACTIONS(795), + [aux_sym_comparison_operator_token4] = ACTIONS(795), + [aux_sym_comparison_operator_token5] = ACTIONS(795), + [aux_sym_comparison_operator_token6] = ACTIONS(795), + [aux_sym_comparison_operator_token7] = ACTIONS(795), + [aux_sym_comparison_operator_token8] = ACTIONS(795), + [aux_sym_comparison_operator_token9] = ACTIONS(795), + [aux_sym_comparison_operator_token10] = ACTIONS(795), + [aux_sym_comparison_operator_token11] = ACTIONS(795), + [aux_sym_comparison_operator_token12] = ACTIONS(795), + [aux_sym_comparison_operator_token13] = ACTIONS(795), + [aux_sym_comparison_operator_token14] = ACTIONS(795), + [aux_sym_comparison_operator_token15] = ACTIONS(795), + [aux_sym_comparison_operator_token16] = ACTIONS(795), + [aux_sym_comparison_operator_token17] = ACTIONS(795), + [aux_sym_comparison_operator_token18] = ACTIONS(795), + [aux_sym_comparison_operator_token19] = ACTIONS(795), + [aux_sym_comparison_operator_token20] = ACTIONS(795), + [aux_sym_comparison_operator_token21] = ACTIONS(795), + [aux_sym_comparison_operator_token22] = ACTIONS(795), + [aux_sym_comparison_operator_token23] = ACTIONS(795), + [aux_sym_comparison_operator_token24] = ACTIONS(795), + [aux_sym_comparison_operator_token25] = ACTIONS(795), + [aux_sym_comparison_operator_token26] = ACTIONS(795), + [aux_sym_comparison_operator_token27] = ACTIONS(795), + [aux_sym_comparison_operator_token28] = ACTIONS(797), + [aux_sym_comparison_operator_token29] = ACTIONS(795), + [aux_sym_comparison_operator_token30] = ACTIONS(795), + [aux_sym_comparison_operator_token31] = ACTIONS(795), + [aux_sym_comparison_operator_token32] = ACTIONS(795), + [aux_sym_comparison_operator_token33] = ACTIONS(795), + [aux_sym_comparison_operator_token34] = ACTIONS(797), + [aux_sym_comparison_operator_token35] = ACTIONS(795), + [aux_sym_comparison_operator_token36] = ACTIONS(795), + [aux_sym_comparison_operator_token37] = ACTIONS(795), + [aux_sym_comparison_operator_token38] = ACTIONS(795), + [aux_sym_comparison_operator_token39] = ACTIONS(795), + [aux_sym_comparison_operator_token40] = ACTIONS(795), + [aux_sym_comparison_operator_token41] = ACTIONS(795), + [aux_sym_comparison_operator_token42] = ACTIONS(795), + [aux_sym_comparison_operator_token43] = ACTIONS(795), + [aux_sym_comparison_operator_token44] = ACTIONS(795), + [aux_sym_comparison_operator_token45] = ACTIONS(795), + [aux_sym_comparison_operator_token46] = ACTIONS(795), + [aux_sym_comparison_operator_token47] = ACTIONS(795), + [aux_sym_comparison_operator_token48] = ACTIONS(795), + [aux_sym_comparison_operator_token49] = ACTIONS(795), + [aux_sym_comparison_operator_token50] = ACTIONS(795), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(795), + [aux_sym_logical_expression_token1] = ACTIONS(795), + [aux_sym_logical_expression_token2] = ACTIONS(795), + [aux_sym_logical_expression_token3] = ACTIONS(795), + [aux_sym_bitwise_expression_token1] = ACTIONS(795), + [aux_sym_bitwise_expression_token2] = ACTIONS(795), + [aux_sym_bitwise_expression_token3] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_BSLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_RBRACK] = ACTIONS(795), + }, + [465] = { + [aux_sym_command_argument_sep_repeat1] = STATE(472), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1651), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + }, + [466] = { + [sym_format_operator] = STATE(571), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(795), + [aux_sym_comparison_operator_token2] = ACTIONS(795), + [aux_sym_comparison_operator_token3] = ACTIONS(795), + [aux_sym_comparison_operator_token4] = ACTIONS(795), + [aux_sym_comparison_operator_token5] = ACTIONS(795), + [aux_sym_comparison_operator_token6] = ACTIONS(795), + [aux_sym_comparison_operator_token7] = ACTIONS(795), + [aux_sym_comparison_operator_token8] = ACTIONS(795), + [aux_sym_comparison_operator_token9] = ACTIONS(795), + [aux_sym_comparison_operator_token10] = ACTIONS(795), + [aux_sym_comparison_operator_token11] = ACTIONS(795), + [aux_sym_comparison_operator_token12] = ACTIONS(795), + [aux_sym_comparison_operator_token13] = ACTIONS(795), + [aux_sym_comparison_operator_token14] = ACTIONS(795), + [aux_sym_comparison_operator_token15] = ACTIONS(795), + [aux_sym_comparison_operator_token16] = ACTIONS(795), + [aux_sym_comparison_operator_token17] = ACTIONS(795), + [aux_sym_comparison_operator_token18] = ACTIONS(795), + [aux_sym_comparison_operator_token19] = ACTIONS(795), + [aux_sym_comparison_operator_token20] = ACTIONS(795), + [aux_sym_comparison_operator_token21] = ACTIONS(795), + [aux_sym_comparison_operator_token22] = ACTIONS(795), + [aux_sym_comparison_operator_token23] = ACTIONS(795), + [aux_sym_comparison_operator_token24] = ACTIONS(795), + [aux_sym_comparison_operator_token25] = ACTIONS(795), + [aux_sym_comparison_operator_token26] = ACTIONS(795), + [aux_sym_comparison_operator_token27] = ACTIONS(795), + [aux_sym_comparison_operator_token28] = ACTIONS(797), + [aux_sym_comparison_operator_token29] = ACTIONS(795), + [aux_sym_comparison_operator_token30] = ACTIONS(795), + [aux_sym_comparison_operator_token31] = ACTIONS(795), + [aux_sym_comparison_operator_token32] = ACTIONS(795), + [aux_sym_comparison_operator_token33] = ACTIONS(795), + [aux_sym_comparison_operator_token34] = ACTIONS(797), + [aux_sym_comparison_operator_token35] = ACTIONS(795), + [aux_sym_comparison_operator_token36] = ACTIONS(795), + [aux_sym_comparison_operator_token37] = ACTIONS(795), + [aux_sym_comparison_operator_token38] = ACTIONS(795), + [aux_sym_comparison_operator_token39] = ACTIONS(795), + [aux_sym_comparison_operator_token40] = ACTIONS(795), + [aux_sym_comparison_operator_token41] = ACTIONS(795), + [aux_sym_comparison_operator_token42] = ACTIONS(795), + [aux_sym_comparison_operator_token43] = ACTIONS(795), + [aux_sym_comparison_operator_token44] = ACTIONS(795), + [aux_sym_comparison_operator_token45] = ACTIONS(795), + [aux_sym_comparison_operator_token46] = ACTIONS(795), + [aux_sym_comparison_operator_token47] = ACTIONS(795), + [aux_sym_comparison_operator_token48] = ACTIONS(795), + [aux_sym_comparison_operator_token49] = ACTIONS(795), + [aux_sym_comparison_operator_token50] = ACTIONS(795), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(795), + [aux_sym_logical_expression_token1] = ACTIONS(795), + [aux_sym_logical_expression_token2] = ACTIONS(795), + [aux_sym_logical_expression_token3] = ACTIONS(795), + [aux_sym_bitwise_expression_token1] = ACTIONS(795), + [aux_sym_bitwise_expression_token2] = ACTIONS(795), + [aux_sym_bitwise_expression_token3] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_BSLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [sym__statement_terminator] = ACTIONS(795), + }, + [467] = { + [sym_format_operator] = STATE(571), + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(809), + [aux_sym_comparison_operator_token2] = ACTIONS(809), + [aux_sym_comparison_operator_token3] = ACTIONS(809), + [aux_sym_comparison_operator_token4] = ACTIONS(809), + [aux_sym_comparison_operator_token5] = ACTIONS(809), + [aux_sym_comparison_operator_token6] = ACTIONS(809), + [aux_sym_comparison_operator_token7] = ACTIONS(809), + [aux_sym_comparison_operator_token8] = ACTIONS(809), + [aux_sym_comparison_operator_token9] = ACTIONS(809), + [aux_sym_comparison_operator_token10] = ACTIONS(809), + [aux_sym_comparison_operator_token11] = ACTIONS(809), + [aux_sym_comparison_operator_token12] = ACTIONS(809), + [aux_sym_comparison_operator_token13] = ACTIONS(809), + [aux_sym_comparison_operator_token14] = ACTIONS(809), + [aux_sym_comparison_operator_token15] = ACTIONS(809), + [aux_sym_comparison_operator_token16] = ACTIONS(809), + [aux_sym_comparison_operator_token17] = ACTIONS(809), + [aux_sym_comparison_operator_token18] = ACTIONS(809), + [aux_sym_comparison_operator_token19] = ACTIONS(809), + [aux_sym_comparison_operator_token20] = ACTIONS(809), + [aux_sym_comparison_operator_token21] = ACTIONS(809), + [aux_sym_comparison_operator_token22] = ACTIONS(809), + [aux_sym_comparison_operator_token23] = ACTIONS(809), + [aux_sym_comparison_operator_token24] = ACTIONS(809), + [aux_sym_comparison_operator_token25] = ACTIONS(809), + [aux_sym_comparison_operator_token26] = ACTIONS(809), + [aux_sym_comparison_operator_token27] = ACTIONS(809), + [aux_sym_comparison_operator_token28] = ACTIONS(811), + [aux_sym_comparison_operator_token29] = ACTIONS(809), + [aux_sym_comparison_operator_token30] = ACTIONS(809), + [aux_sym_comparison_operator_token31] = ACTIONS(809), + [aux_sym_comparison_operator_token32] = ACTIONS(809), + [aux_sym_comparison_operator_token33] = ACTIONS(809), + [aux_sym_comparison_operator_token34] = ACTIONS(811), + [aux_sym_comparison_operator_token35] = ACTIONS(809), + [aux_sym_comparison_operator_token36] = ACTIONS(809), + [aux_sym_comparison_operator_token37] = ACTIONS(809), + [aux_sym_comparison_operator_token38] = ACTIONS(809), + [aux_sym_comparison_operator_token39] = ACTIONS(809), + [aux_sym_comparison_operator_token40] = ACTIONS(809), + [aux_sym_comparison_operator_token41] = ACTIONS(809), + [aux_sym_comparison_operator_token42] = ACTIONS(809), + [aux_sym_comparison_operator_token43] = ACTIONS(809), + [aux_sym_comparison_operator_token44] = ACTIONS(809), + [aux_sym_comparison_operator_token45] = ACTIONS(809), + [aux_sym_comparison_operator_token46] = ACTIONS(809), + [aux_sym_comparison_operator_token47] = ACTIONS(809), + [aux_sym_comparison_operator_token48] = ACTIONS(809), + [aux_sym_comparison_operator_token49] = ACTIONS(809), + [aux_sym_comparison_operator_token50] = ACTIONS(809), + [aux_sym_format_operator_token1] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(809), + [aux_sym_logical_expression_token1] = ACTIONS(809), + [aux_sym_logical_expression_token2] = ACTIONS(809), + [aux_sym_logical_expression_token3] = ACTIONS(809), + [aux_sym_bitwise_expression_token1] = ACTIONS(809), + [aux_sym_bitwise_expression_token2] = ACTIONS(809), + [aux_sym_bitwise_expression_token3] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(809), + [sym__statement_terminator] = ACTIONS(809), + }, + [468] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(801), + [aux_sym_comparison_operator_token2] = ACTIONS(801), + [aux_sym_comparison_operator_token3] = ACTIONS(801), + [aux_sym_comparison_operator_token4] = ACTIONS(801), + [aux_sym_comparison_operator_token5] = ACTIONS(801), + [aux_sym_comparison_operator_token6] = ACTIONS(801), + [aux_sym_comparison_operator_token7] = ACTIONS(801), + [aux_sym_comparison_operator_token8] = ACTIONS(801), + [aux_sym_comparison_operator_token9] = ACTIONS(801), + [aux_sym_comparison_operator_token10] = ACTIONS(801), + [aux_sym_comparison_operator_token11] = ACTIONS(801), + [aux_sym_comparison_operator_token12] = ACTIONS(801), + [aux_sym_comparison_operator_token13] = ACTIONS(801), + [aux_sym_comparison_operator_token14] = ACTIONS(801), + [aux_sym_comparison_operator_token15] = ACTIONS(801), + [aux_sym_comparison_operator_token16] = ACTIONS(801), + [aux_sym_comparison_operator_token17] = ACTIONS(801), + [aux_sym_comparison_operator_token18] = ACTIONS(801), + [aux_sym_comparison_operator_token19] = ACTIONS(801), + [aux_sym_comparison_operator_token20] = ACTIONS(801), + [aux_sym_comparison_operator_token21] = ACTIONS(801), + [aux_sym_comparison_operator_token22] = ACTIONS(801), + [aux_sym_comparison_operator_token23] = ACTIONS(801), + [aux_sym_comparison_operator_token24] = ACTIONS(801), + [aux_sym_comparison_operator_token25] = ACTIONS(801), + [aux_sym_comparison_operator_token26] = ACTIONS(801), + [aux_sym_comparison_operator_token27] = ACTIONS(801), + [aux_sym_comparison_operator_token28] = ACTIONS(803), + [aux_sym_comparison_operator_token29] = ACTIONS(801), + [aux_sym_comparison_operator_token30] = ACTIONS(801), + [aux_sym_comparison_operator_token31] = ACTIONS(801), + [aux_sym_comparison_operator_token32] = ACTIONS(801), + [aux_sym_comparison_operator_token33] = ACTIONS(801), + [aux_sym_comparison_operator_token34] = ACTIONS(803), + [aux_sym_comparison_operator_token35] = ACTIONS(801), + [aux_sym_comparison_operator_token36] = ACTIONS(801), + [aux_sym_comparison_operator_token37] = ACTIONS(801), + [aux_sym_comparison_operator_token38] = ACTIONS(801), + [aux_sym_comparison_operator_token39] = ACTIONS(801), + [aux_sym_comparison_operator_token40] = ACTIONS(801), + [aux_sym_comparison_operator_token41] = ACTIONS(801), + [aux_sym_comparison_operator_token42] = ACTIONS(801), + [aux_sym_comparison_operator_token43] = ACTIONS(801), + [aux_sym_comparison_operator_token44] = ACTIONS(801), + [aux_sym_comparison_operator_token45] = ACTIONS(801), + [aux_sym_comparison_operator_token46] = ACTIONS(801), + [aux_sym_comparison_operator_token47] = ACTIONS(801), + [aux_sym_comparison_operator_token48] = ACTIONS(801), + [aux_sym_comparison_operator_token49] = ACTIONS(801), + [aux_sym_comparison_operator_token50] = ACTIONS(801), + [aux_sym_format_operator_token1] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [aux_sym_logical_expression_token1] = ACTIONS(801), + [aux_sym_logical_expression_token2] = ACTIONS(801), + [aux_sym_logical_expression_token3] = ACTIONS(801), + [aux_sym_bitwise_expression_token1] = ACTIONS(801), + [aux_sym_bitwise_expression_token2] = ACTIONS(801), + [aux_sym_bitwise_expression_token3] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_BSLASH] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_RBRACK] = ACTIONS(801), + }, + [469] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1782), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [470] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(813), + [aux_sym_comparison_operator_token2] = ACTIONS(813), + [aux_sym_comparison_operator_token3] = ACTIONS(813), + [aux_sym_comparison_operator_token4] = ACTIONS(813), + [aux_sym_comparison_operator_token5] = ACTIONS(813), + [aux_sym_comparison_operator_token6] = ACTIONS(813), + [aux_sym_comparison_operator_token7] = ACTIONS(813), + [aux_sym_comparison_operator_token8] = ACTIONS(813), + [aux_sym_comparison_operator_token9] = ACTIONS(813), + [aux_sym_comparison_operator_token10] = ACTIONS(813), + [aux_sym_comparison_operator_token11] = ACTIONS(813), + [aux_sym_comparison_operator_token12] = ACTIONS(813), + [aux_sym_comparison_operator_token13] = ACTIONS(813), + [aux_sym_comparison_operator_token14] = ACTIONS(813), + [aux_sym_comparison_operator_token15] = ACTIONS(813), + [aux_sym_comparison_operator_token16] = ACTIONS(813), + [aux_sym_comparison_operator_token17] = ACTIONS(813), + [aux_sym_comparison_operator_token18] = ACTIONS(813), + [aux_sym_comparison_operator_token19] = ACTIONS(813), + [aux_sym_comparison_operator_token20] = ACTIONS(813), + [aux_sym_comparison_operator_token21] = ACTIONS(813), + [aux_sym_comparison_operator_token22] = ACTIONS(813), + [aux_sym_comparison_operator_token23] = ACTIONS(813), + [aux_sym_comparison_operator_token24] = ACTIONS(813), + [aux_sym_comparison_operator_token25] = ACTIONS(813), + [aux_sym_comparison_operator_token26] = ACTIONS(813), + [aux_sym_comparison_operator_token27] = ACTIONS(813), + [aux_sym_comparison_operator_token28] = ACTIONS(815), + [aux_sym_comparison_operator_token29] = ACTIONS(813), + [aux_sym_comparison_operator_token30] = ACTIONS(813), + [aux_sym_comparison_operator_token31] = ACTIONS(813), + [aux_sym_comparison_operator_token32] = ACTIONS(813), + [aux_sym_comparison_operator_token33] = ACTIONS(813), + [aux_sym_comparison_operator_token34] = ACTIONS(815), + [aux_sym_comparison_operator_token35] = ACTIONS(813), + [aux_sym_comparison_operator_token36] = ACTIONS(813), + [aux_sym_comparison_operator_token37] = ACTIONS(813), + [aux_sym_comparison_operator_token38] = ACTIONS(813), + [aux_sym_comparison_operator_token39] = ACTIONS(813), + [aux_sym_comparison_operator_token40] = ACTIONS(813), + [aux_sym_comparison_operator_token41] = ACTIONS(813), + [aux_sym_comparison_operator_token42] = ACTIONS(813), + [aux_sym_comparison_operator_token43] = ACTIONS(813), + [aux_sym_comparison_operator_token44] = ACTIONS(813), + [aux_sym_comparison_operator_token45] = ACTIONS(813), + [aux_sym_comparison_operator_token46] = ACTIONS(813), + [aux_sym_comparison_operator_token47] = ACTIONS(813), + [aux_sym_comparison_operator_token48] = ACTIONS(813), + [aux_sym_comparison_operator_token49] = ACTIONS(813), + [aux_sym_comparison_operator_token50] = ACTIONS(813), + [aux_sym_format_operator_token1] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [aux_sym_logical_expression_token1] = ACTIONS(813), + [aux_sym_logical_expression_token2] = ACTIONS(813), + [aux_sym_logical_expression_token3] = ACTIONS(813), + [aux_sym_bitwise_expression_token1] = ACTIONS(813), + [aux_sym_bitwise_expression_token2] = ACTIONS(813), + [aux_sym_bitwise_expression_token3] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [sym__statement_terminator] = ACTIONS(813), + }, + [471] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1612), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_DASH_DASH_PERCENT] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + [sym__statement_terminator] = ACTIONS(1618), + }, + [472] = { + [aux_sym_command_argument_sep_repeat1] = STATE(472), + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1622), + [sym_hexadecimal_integer_literal] = ACTIONS(1622), + [sym_real_literal] = ACTIONS(1622), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1622), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1622), + [sym_verbatim_string_characters] = ACTIONS(1622), + [sym_verbatim_here_string_characters] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_GT_GT] = ACTIONS(1622), + [anon_sym_2_GT] = ACTIONS(1622), + [anon_sym_2_GT_GT] = ACTIONS(1622), + [anon_sym_3_GT] = ACTIONS(1622), + [anon_sym_3_GT_GT] = ACTIONS(1622), + [anon_sym_4_GT] = ACTIONS(1622), + [anon_sym_4_GT_GT] = ACTIONS(1622), + [anon_sym_5_GT] = ACTIONS(1622), + [anon_sym_5_GT_GT] = ACTIONS(1622), + [anon_sym_6_GT] = ACTIONS(1622), + [anon_sym_6_GT_GT] = ACTIONS(1622), + [anon_sym_STAR_GT] = ACTIONS(1622), + [anon_sym_STAR_GT_GT] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1622), + [anon_sym_2_GT_AMP1] = ACTIONS(1622), + [anon_sym_3_GT_AMP1] = ACTIONS(1622), + [anon_sym_4_GT_AMP1] = ACTIONS(1622), + [anon_sym_5_GT_AMP1] = ACTIONS(1622), + [anon_sym_6_GT_AMP1] = ACTIONS(1622), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1622), + [anon_sym_1_GT_AMP2] = ACTIONS(1622), + [anon_sym_3_GT_AMP2] = ACTIONS(1622), + [anon_sym_4_GT_AMP2] = ACTIONS(1622), + [anon_sym_5_GT_AMP2] = ACTIONS(1622), + [anon_sym_6_GT_AMP2] = ACTIONS(1622), + [aux_sym_comparison_operator_token37] = ACTIONS(1622), + [aux_sym_comparison_operator_token50] = ACTIONS(1622), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1622), + [anon_sym_DOLLAR_CARET] = ACTIONS(1622), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1622), + [anon_sym_DOLLAR_] = ACTIONS(1622), + [aux_sym_variable_token1] = ACTIONS(1622), + [aux_sym_variable_token2] = ACTIONS(1622), + [sym_braced_variable] = ACTIONS(1622), + [sym_generic_token] = ACTIONS(1622), + [sym_command_parameter] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [sym_stop_parsing] = ACTIONS(1622), + [anon_sym_SPACE] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1622), + [anon_sym_PLUS_PLUS] = ACTIONS(1622), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LPAREN] = ACTIONS(1622), + [anon_sym_AT_LBRACE] = ACTIONS(1622), + }, + [473] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1755), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [474] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym_unary_expression] = STATE(497), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_argument_expression_list] = STATE(1804), + [sym_argument_expression] = STATE(1440), + [sym_logical_argument_expression] = STATE(1320), + [sym_bitwise_argument_expression] = STATE(1322), + [sym_comparison_argument_expression] = STATE(582), + [sym_additive_argument_expression] = STATE(570), + [sym_multiplicative_argument_expression] = STATE(520), + [sym_format_argument_expression] = STATE(498), + [sym_range_argument_expression] = STATE(499), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [475] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(2103), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [476] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1612), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + [sym__statement_terminator] = ACTIONS(1618), + }, + [477] = { + [sym__literal] = STATE(317), + [sym_integer_literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(317), + [sym__expression] = STATE(1907), + [sym_logical_expression] = STATE(1379), + [sym_bitwise_expression] = STATE(1282), + [sym_comparison_expression] = STATE(567), + [sym_additive_expression] = STATE(554), + [sym_multiplicative_expression] = STATE(496), + [sym_format_expression] = STATE(467), + [sym_range_expression] = STATE(470), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(436), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(317), + [sym__value] = STATE(317), + [sym_parenthesized_expression] = STATE(317), + [sym_sub_expression] = STATE(317), + [sym_array_expression] = STATE(317), + [sym_script_block_expression] = STATE(317), + [sym_hash_literal_expression] = STATE(317), + [sym_post_increment_expression] = STATE(317), + [sym_post_decrement_expression] = STATE(317), + [sym_member_access] = STATE(317), + [sym_element_access] = STATE(317), + [sym_invokation_expression] = STATE(317), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(82), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(83), + [sym_real_literal] = ACTIONS(581), + [aux_sym_expandable_string_literal_token1] = ACTIONS(87), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), + [sym_verbatim_string_characters] = ACTIONS(91), + [sym_verbatim_here_string_characters] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_comparison_operator_token37] = ACTIONS(583), + [aux_sym_comparison_operator_token50] = ACTIONS(583), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), + [anon_sym_DOLLAR_CARET] = ACTIONS(101), + [anon_sym_DOLLAR_QMARK] = ACTIONS(101), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(101), + [sym_braced_variable] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), + [anon_sym_AT_LPAREN] = ACTIONS(115), + [anon_sym_AT_LBRACE] = ACTIONS(117), + }, + [478] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(829), + [aux_sym_comparison_operator_token2] = ACTIONS(829), + [aux_sym_comparison_operator_token3] = ACTIONS(829), + [aux_sym_comparison_operator_token4] = ACTIONS(829), + [aux_sym_comparison_operator_token5] = ACTIONS(829), + [aux_sym_comparison_operator_token6] = ACTIONS(829), + [aux_sym_comparison_operator_token7] = ACTIONS(829), + [aux_sym_comparison_operator_token8] = ACTIONS(829), + [aux_sym_comparison_operator_token9] = ACTIONS(829), + [aux_sym_comparison_operator_token10] = ACTIONS(829), + [aux_sym_comparison_operator_token11] = ACTIONS(829), + [aux_sym_comparison_operator_token12] = ACTIONS(829), + [aux_sym_comparison_operator_token13] = ACTIONS(829), + [aux_sym_comparison_operator_token14] = ACTIONS(829), + [aux_sym_comparison_operator_token15] = ACTIONS(829), + [aux_sym_comparison_operator_token16] = ACTIONS(829), + [aux_sym_comparison_operator_token17] = ACTIONS(829), + [aux_sym_comparison_operator_token18] = ACTIONS(829), + [aux_sym_comparison_operator_token19] = ACTIONS(829), + [aux_sym_comparison_operator_token20] = ACTIONS(829), + [aux_sym_comparison_operator_token21] = ACTIONS(829), + [aux_sym_comparison_operator_token22] = ACTIONS(829), + [aux_sym_comparison_operator_token23] = ACTIONS(829), + [aux_sym_comparison_operator_token24] = ACTIONS(829), + [aux_sym_comparison_operator_token25] = ACTIONS(829), + [aux_sym_comparison_operator_token26] = ACTIONS(829), + [aux_sym_comparison_operator_token27] = ACTIONS(829), + [aux_sym_comparison_operator_token28] = ACTIONS(831), + [aux_sym_comparison_operator_token29] = ACTIONS(829), + [aux_sym_comparison_operator_token30] = ACTIONS(829), + [aux_sym_comparison_operator_token31] = ACTIONS(829), + [aux_sym_comparison_operator_token32] = ACTIONS(829), + [aux_sym_comparison_operator_token33] = ACTIONS(829), + [aux_sym_comparison_operator_token34] = ACTIONS(831), + [aux_sym_comparison_operator_token35] = ACTIONS(829), + [aux_sym_comparison_operator_token36] = ACTIONS(829), + [aux_sym_comparison_operator_token37] = ACTIONS(829), + [aux_sym_comparison_operator_token38] = ACTIONS(829), + [aux_sym_comparison_operator_token39] = ACTIONS(829), + [aux_sym_comparison_operator_token40] = ACTIONS(829), + [aux_sym_comparison_operator_token41] = ACTIONS(829), + [aux_sym_comparison_operator_token42] = ACTIONS(829), + [aux_sym_comparison_operator_token43] = ACTIONS(829), + [aux_sym_comparison_operator_token44] = ACTIONS(829), + [aux_sym_comparison_operator_token45] = ACTIONS(829), + [aux_sym_comparison_operator_token46] = ACTIONS(829), + [aux_sym_comparison_operator_token47] = ACTIONS(829), + [aux_sym_comparison_operator_token48] = ACTIONS(829), + [aux_sym_comparison_operator_token49] = ACTIONS(829), + [aux_sym_comparison_operator_token50] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_COMMA] = ACTIONS(829), + [anon_sym_PERCENT] = ACTIONS(1662), + [aux_sym_logical_expression_token1] = ACTIONS(829), + [aux_sym_logical_expression_token2] = ACTIONS(829), + [aux_sym_logical_expression_token3] = ACTIONS(829), + [aux_sym_bitwise_expression_token1] = ACTIONS(829), + [aux_sym_bitwise_expression_token2] = ACTIONS(829), + [aux_sym_bitwise_expression_token3] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + }, + [479] = { + [sym_comment] = ACTIONS(3), + [sym_decimal_integer_literal] = ACTIONS(1612), + [sym_hexadecimal_integer_literal] = ACTIONS(1612), + [sym_real_literal] = ACTIONS(1612), + [aux_sym_expandable_string_literal_token1] = ACTIONS(1612), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(1612), + [sym_verbatim_string_characters] = ACTIONS(1612), + [sym_verbatim_here_string_characters] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_GT_GT] = ACTIONS(1612), + [anon_sym_2_GT] = ACTIONS(1612), + [anon_sym_2_GT_GT] = ACTIONS(1612), + [anon_sym_3_GT] = ACTIONS(1612), + [anon_sym_3_GT_GT] = ACTIONS(1612), + [anon_sym_4_GT] = ACTIONS(1612), + [anon_sym_4_GT_GT] = ACTIONS(1612), + [anon_sym_5_GT] = ACTIONS(1612), + [anon_sym_5_GT_GT] = ACTIONS(1612), + [anon_sym_6_GT] = ACTIONS(1612), + [anon_sym_6_GT_GT] = ACTIONS(1612), + [anon_sym_STAR_GT] = ACTIONS(1612), + [anon_sym_STAR_GT_GT] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP1] = ACTIONS(1612), + [anon_sym_2_GT_AMP1] = ACTIONS(1612), + [anon_sym_3_GT_AMP1] = ACTIONS(1612), + [anon_sym_4_GT_AMP1] = ACTIONS(1612), + [anon_sym_5_GT_AMP1] = ACTIONS(1612), + [anon_sym_6_GT_AMP1] = ACTIONS(1612), + [anon_sym_STAR_GT_AMP2] = ACTIONS(1612), + [anon_sym_1_GT_AMP2] = ACTIONS(1612), + [anon_sym_3_GT_AMP2] = ACTIONS(1612), + [anon_sym_4_GT_AMP2] = ACTIONS(1612), + [anon_sym_5_GT_AMP2] = ACTIONS(1612), + [anon_sym_6_GT_AMP2] = ACTIONS(1612), + [aux_sym_comparison_operator_token37] = ACTIONS(1612), + [aux_sym_comparison_operator_token50] = ACTIONS(1612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1612), + [anon_sym_DOLLAR_CARET] = ACTIONS(1612), + [anon_sym_DOLLAR_QMARK] = ACTIONS(1612), + [anon_sym_DOLLAR_] = ACTIONS(1612), + [aux_sym_variable_token1] = ACTIONS(1612), + [aux_sym_variable_token2] = ACTIONS(1612), + [sym_braced_variable] = ACTIONS(1612), + [sym_generic_token] = ACTIONS(1612), + [sym_command_parameter] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [sym_stop_parsing] = ACTIONS(1612), + [anon_sym_SPACE] = ACTIONS(1612), + [anon_sym_COLON] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1612), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LPAREN] = ACTIONS(1612), + [anon_sym_AT_LBRACE] = ACTIONS(1612), + }, + [480] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1720), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [481] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1757), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [482] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1781), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [483] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1803), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [484] = { + [sym__literal] = STATE(317), + [sym_integer_literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(317), + [sym__expression] = STATE(1935), + [sym_logical_expression] = STATE(1379), + [sym_bitwise_expression] = STATE(1282), + [sym_comparison_expression] = STATE(567), + [sym_additive_expression] = STATE(554), + [sym_multiplicative_expression] = STATE(496), + [sym_format_expression] = STATE(467), + [sym_range_expression] = STATE(470), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(436), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(317), + [sym__value] = STATE(317), + [sym_parenthesized_expression] = STATE(317), + [sym_sub_expression] = STATE(317), + [sym_array_expression] = STATE(317), + [sym_script_block_expression] = STATE(317), + [sym_hash_literal_expression] = STATE(317), + [sym_post_increment_expression] = STATE(317), + [sym_post_decrement_expression] = STATE(317), + [sym_member_access] = STATE(317), + [sym_element_access] = STATE(317), + [sym_invokation_expression] = STATE(317), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(82), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(83), + [sym_real_literal] = ACTIONS(581), + [aux_sym_expandable_string_literal_token1] = ACTIONS(87), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), + [sym_verbatim_string_characters] = ACTIONS(91), + [sym_verbatim_here_string_characters] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_comparison_operator_token37] = ACTIONS(583), + [aux_sym_comparison_operator_token50] = ACTIONS(583), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), + [anon_sym_DOLLAR_CARET] = ACTIONS(101), + [anon_sym_DOLLAR_QMARK] = ACTIONS(101), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(101), + [sym_braced_variable] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), + [anon_sym_AT_LPAREN] = ACTIONS(115), + [anon_sym_AT_LBRACE] = ACTIONS(117), + }, + [485] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1824), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [486] = { + [sym__literal] = STATE(317), + [sym_integer_literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(317), + [sym__expression] = STATE(1768), + [sym_logical_expression] = STATE(1379), + [sym_bitwise_expression] = STATE(1282), + [sym_comparison_expression] = STATE(567), + [sym_additive_expression] = STATE(554), + [sym_multiplicative_expression] = STATE(496), + [sym_format_expression] = STATE(467), + [sym_range_expression] = STATE(470), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(436), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(317), + [sym__value] = STATE(317), + [sym_parenthesized_expression] = STATE(317), + [sym_sub_expression] = STATE(317), + [sym_array_expression] = STATE(317), + [sym_script_block_expression] = STATE(317), + [sym_hash_literal_expression] = STATE(317), + [sym_post_increment_expression] = STATE(317), + [sym_post_decrement_expression] = STATE(317), + [sym_member_access] = STATE(317), + [sym_element_access] = STATE(317), + [sym_invokation_expression] = STATE(317), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(82), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(83), + [sym_real_literal] = ACTIONS(581), + [aux_sym_expandable_string_literal_token1] = ACTIONS(87), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), + [sym_verbatim_string_characters] = ACTIONS(91), + [sym_verbatim_here_string_characters] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_comparison_operator_token37] = ACTIONS(583), + [aux_sym_comparison_operator_token50] = ACTIONS(583), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), + [anon_sym_DOLLAR_CARET] = ACTIONS(101), + [anon_sym_DOLLAR_QMARK] = ACTIONS(101), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(101), + [sym_braced_variable] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), + [anon_sym_AT_LPAREN] = ACTIONS(115), + [anon_sym_AT_LBRACE] = ACTIONS(117), + }, + [487] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1617), + [sym_logical_expression] = STATE(1356), + [sym_bitwise_expression] = STATE(1274), + [sym_comparison_expression] = STATE(556), + [sym_additive_expression] = STATE(541), + [sym_multiplicative_expression] = STATE(490), + [sym_format_expression] = STATE(447), + [sym_range_expression] = STATE(446), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(439), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [488] = { + [sym__literal] = STATE(317), + [sym_integer_literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_expandable_string_literal] = STATE(131), + [sym_expandable_here_string_literal] = STATE(131), + [sym_variable] = STATE(317), + [sym__expression] = STATE(1858), + [sym_logical_expression] = STATE(1379), + [sym_bitwise_expression] = STATE(1282), + [sym_comparison_expression] = STATE(567), + [sym_additive_expression] = STATE(554), + [sym_multiplicative_expression] = STATE(496), + [sym_format_expression] = STATE(467), + [sym_range_expression] = STATE(470), + [sym_array_literal_expression] = STATE(184), + [sym_unary_expression] = STATE(436), + [sym_expression_with_unary_operator] = STATE(172), + [sym_pre_increment_expression] = STATE(178), + [sym_pre_decrement_expression] = STATE(178), + [sym_cast_expression] = STATE(178), + [sym__primary_expression] = STATE(317), + [sym__value] = STATE(317), + [sym_parenthesized_expression] = STATE(317), + [sym_sub_expression] = STATE(317), + [sym_array_expression] = STATE(317), + [sym_script_block_expression] = STATE(317), + [sym_hash_literal_expression] = STATE(317), + [sym_post_increment_expression] = STATE(317), + [sym_post_decrement_expression] = STATE(317), + [sym_member_access] = STATE(317), + [sym_element_access] = STATE(317), + [sym_invokation_expression] = STATE(317), + [sym_invokation_foreach_expression] = STATE(138), + [sym_type_literal] = STATE(82), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(5), + [sym_hexadecimal_integer_literal] = ACTIONS(83), + [sym_real_literal] = ACTIONS(581), + [aux_sym_expandable_string_literal_token1] = ACTIONS(87), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(89), + [sym_verbatim_string_characters] = ACTIONS(91), + [sym_verbatim_here_string_characters] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(571), + [aux_sym_comparison_operator_token37] = ACTIONS(583), + [aux_sym_comparison_operator_token50] = ACTIONS(583), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), + [anon_sym_DOLLAR_CARET] = ACTIONS(101), + [anon_sym_DOLLAR_QMARK] = ACTIONS(101), + [anon_sym_DOLLAR_] = ACTIONS(21), + [aux_sym_variable_token1] = ACTIONS(21), + [aux_sym_variable_token2] = ACTIONS(101), + [sym_braced_variable] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(113), + [anon_sym_AT_LPAREN] = ACTIONS(115), + [anon_sym_AT_LBRACE] = ACTIONS(117), + }, + [489] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1721), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [490] = { + [sym_comment] = ACTIONS(81), + [aux_sym_comparison_operator_token1] = ACTIONS(817), + [aux_sym_comparison_operator_token2] = ACTIONS(817), + [aux_sym_comparison_operator_token3] = ACTIONS(817), + [aux_sym_comparison_operator_token4] = ACTIONS(817), + [aux_sym_comparison_operator_token5] = ACTIONS(817), + [aux_sym_comparison_operator_token6] = ACTIONS(817), + [aux_sym_comparison_operator_token7] = ACTIONS(817), + [aux_sym_comparison_operator_token8] = ACTIONS(817), + [aux_sym_comparison_operator_token9] = ACTIONS(817), + [aux_sym_comparison_operator_token10] = ACTIONS(817), + [aux_sym_comparison_operator_token11] = ACTIONS(817), + [aux_sym_comparison_operator_token12] = ACTIONS(817), + [aux_sym_comparison_operator_token13] = ACTIONS(817), + [aux_sym_comparison_operator_token14] = ACTIONS(817), + [aux_sym_comparison_operator_token15] = ACTIONS(817), + [aux_sym_comparison_operator_token16] = ACTIONS(817), + [aux_sym_comparison_operator_token17] = ACTIONS(817), + [aux_sym_comparison_operator_token18] = ACTIONS(817), + [aux_sym_comparison_operator_token19] = ACTIONS(817), + [aux_sym_comparison_operator_token20] = ACTIONS(817), + [aux_sym_comparison_operator_token21] = ACTIONS(817), + [aux_sym_comparison_operator_token22] = ACTIONS(817), + [aux_sym_comparison_operator_token23] = ACTIONS(817), + [aux_sym_comparison_operator_token24] = ACTIONS(817), + [aux_sym_comparison_operator_token25] = ACTIONS(817), + [aux_sym_comparison_operator_token26] = ACTIONS(817), + [aux_sym_comparison_operator_token27] = ACTIONS(817), + [aux_sym_comparison_operator_token28] = ACTIONS(819), + [aux_sym_comparison_operator_token29] = ACTIONS(817), + [aux_sym_comparison_operator_token30] = ACTIONS(817), + [aux_sym_comparison_operator_token31] = ACTIONS(817), + [aux_sym_comparison_operator_token32] = ACTIONS(817), + [aux_sym_comparison_operator_token33] = ACTIONS(817), + [aux_sym_comparison_operator_token34] = ACTIONS(819), + [aux_sym_comparison_operator_token35] = ACTIONS(817), + [aux_sym_comparison_operator_token36] = ACTIONS(817), + [aux_sym_comparison_operator_token37] = ACTIONS(817), + [aux_sym_comparison_operator_token38] = ACTIONS(817), + [aux_sym_comparison_operator_token39] = ACTIONS(817), + [aux_sym_comparison_operator_token40] = ACTIONS(817), + [aux_sym_comparison_operator_token41] = ACTIONS(817), + [aux_sym_comparison_operator_token42] = ACTIONS(817), + [aux_sym_comparison_operator_token43] = ACTIONS(817), + [aux_sym_comparison_operator_token44] = ACTIONS(817), + [aux_sym_comparison_operator_token45] = ACTIONS(817), + [aux_sym_comparison_operator_token46] = ACTIONS(817), + [aux_sym_comparison_operator_token47] = ACTIONS(817), + [aux_sym_comparison_operator_token48] = ACTIONS(817), + [aux_sym_comparison_operator_token49] = ACTIONS(817), + [aux_sym_comparison_operator_token50] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_COMMA] = ACTIONS(817), + [anon_sym_PERCENT] = ACTIONS(1662), + [aux_sym_logical_expression_token1] = ACTIONS(817), + [aux_sym_logical_expression_token2] = ACTIONS(817), + [aux_sym_logical_expression_token3] = ACTIONS(817), + [aux_sym_bitwise_expression_token1] = ACTIONS(817), + [aux_sym_bitwise_expression_token2] = ACTIONS(817), + [aux_sym_bitwise_expression_token3] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + }, + [491] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1528), + [sym_logical_expression] = STATE(1356), + [sym_bitwise_expression] = STATE(1274), + [sym_comparison_expression] = STATE(556), + [sym_additive_expression] = STATE(541), + [sym_multiplicative_expression] = STATE(490), + [sym_format_expression] = STATE(447), + [sym_range_expression] = STATE(446), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(439), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, + [492] = { + [sym__literal] = STATE(306), + [sym_integer_literal] = STATE(306), + [sym_string_literal] = STATE(306), + [sym_expandable_string_literal] = STATE(120), + [sym_expandable_here_string_literal] = STATE(120), + [sym_variable] = STATE(306), + [sym__expression] = STATE(1772), + [sym_logical_expression] = STATE(1384), + [sym_bitwise_expression] = STATE(1297), + [sym_comparison_expression] = STATE(568), + [sym_additive_expression] = STATE(555), + [sym_multiplicative_expression] = STATE(503), + [sym_format_expression] = STATE(459), + [sym_range_expression] = STATE(461), + [sym_array_literal_expression] = STATE(165), + [sym_unary_expression] = STATE(438), + [sym_expression_with_unary_operator] = STATE(170), + [sym_pre_increment_expression] = STATE(171), + [sym_pre_decrement_expression] = STATE(171), + [sym_cast_expression] = STATE(171), + [sym__primary_expression] = STATE(306), + [sym__value] = STATE(306), + [sym_parenthesized_expression] = STATE(306), + [sym_sub_expression] = STATE(306), + [sym_array_expression] = STATE(306), + [sym_script_block_expression] = STATE(306), + [sym_hash_literal_expression] = STATE(306), + [sym_post_increment_expression] = STATE(306), + [sym_post_decrement_expression] = STATE(306), + [sym_member_access] = STATE(306), + [sym_element_access] = STATE(306), + [sym_invokation_expression] = STATE(306), + [sym_invokation_foreach_expression] = STATE(104), + [sym_type_literal] = STATE(79), + [sym_comment] = ACTIONS(81), + [sym_decimal_integer_literal] = ACTIONS(119), + [sym_hexadecimal_integer_literal] = ACTIONS(121), + [sym_real_literal] = ACTIONS(547), + [aux_sym_expandable_string_literal_token1] = ACTIONS(125), + [aux_sym_expandable_here_string_literal_token1] = ACTIONS(127), + [sym_verbatim_string_characters] = ACTIONS(129), + [sym_verbatim_here_string_characters] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(549), + [aux_sym_comparison_operator_token37] = ACTIONS(551), + [aux_sym_comparison_operator_token50] = ACTIONS(551), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), + [anon_sym_DOLLAR_CARET] = ACTIONS(135), + [anon_sym_DOLLAR_QMARK] = ACTIONS(135), + [anon_sym_DOLLAR_] = ACTIONS(137), + [aux_sym_variable_token1] = ACTIONS(137), + [aux_sym_variable_token2] = ACTIONS(135), + [sym_braced_variable] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [aux_sym_expression_with_unary_operator_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [aux_sym_expression_with_unary_operator_token2] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(149), + [anon_sym_AT_LPAREN] = ACTIONS(151), + [anon_sym_AT_LBRACE] = ACTIONS(153), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(1704), 1, - ts_builtin_sym_end, - ACTIONS(1608), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, + ACTIONS(831), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1706), 1, - ts_builtin_sym_end, - ACTIONS(1610), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, + ACTIONS(1664), 4, anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1708), 1, - ts_builtin_sym_end, - ACTIONS(1534), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(829), 56, + sym__statement_terminator, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10481] = 3, - ACTIONS(3), 1, + [73] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(1710), 1, - ts_builtin_sym_end, - ACTIONS(1624), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, + ACTIONS(1670), 1, + anon_sym_DOT_DOT, + ACTIONS(1668), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - ts_builtin_sym_end, - ACTIONS(1660), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(1666), 59, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + aux_sym_format_operator_token1, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [10617] = 31, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + [146] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(298), 1, - sym_unary_expression, - STATE(320), 1, - sym_format_expression, - STATE(321), 1, - sym_range_expression, - STATE(371), 1, - sym_multiplicative_expression, - STATE(516), 1, - sym_additive_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, - anon_sym_PLUS, + ACTIONS(1674), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(1672), 60, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, + aux_sym_format_operator_token1, + anon_sym_RPAREN, anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [10741] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1714), 1, + anon_sym_PERCENT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, anon_sym_PLUS, - ACTIONS(1716), 1, - anon_sym_DASH, - ACTIONS(835), 2, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + anon_sym_DOT_DOT, + [217] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(819), 3, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(833), 56, + anon_sym_DASH, + ACTIONS(1664), 4, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(817), 56, + sym__statement_terminator, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -73470,454 +74127,425 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - [10813] = 30, + anon_sym_PLUS, + [290] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1718), 1, - sym_decimal_integer_literal, - ACTIONS(1721), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1724), 1, - sym_real_literal, - ACTIONS(1727), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1730), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1736), 1, - sym_simple_name, - ACTIONS(1739), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LPAREN, - ACTIONS(1754), 1, - anon_sym_LBRACE, - ACTIONS(1757), 1, - anon_sym_RBRACE, - ACTIONS(1762), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1765), 1, - anon_sym_DASH_DASH, - ACTIONS(1768), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1771), 1, - anon_sym_AT_LPAREN, - ACTIONS(1774), 1, - anon_sym_AT_LBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, - sym_type_literal, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1795), 1, - sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1733), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1748), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1759), 2, - anon_sym_PLUS, + ACTIONS(1678), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, anon_sym_DASH, - STATE(517), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1745), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1742), 6, + ACTIONS(1676), 60, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, + aux_sym_format_operator_token1, + anon_sym_RPAREN, anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [10935] = 3, - ACTIONS(3), 1, + anon_sym_PERCENT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + anon_sym_DOT_DOT, + [361] = 5, + ACTIONS(81), 1, sym_comment, - ACTIONS(1777), 1, - ts_builtin_sym_end, - ACTIONS(1562), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(799), 1, + aux_sym_format_operator_token1, + STATE(585), 1, + sym_format_operator, + ACTIONS(1682), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + anon_sym_DASH, + ACTIONS(1680), 58, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11003] = 31, - ACTIONS(5), 1, - sym_decimal_integer_literal, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + [436] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, - anon_sym_LPAREN, - ACTIONS(107), 1, - anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, - anon_sym_AT_LPAREN, - ACTIONS(117), 1, - anon_sym_AT_LBRACE, - STATE(3), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(181), 1, - sym_format_expression, - STATE(182), 1, - sym_range_expression, - STATE(185), 1, - sym_array_literal_expression, - STATE(189), 1, - sym_multiplicative_expression, - STATE(198), 1, - sym_additive_expression, - ACTIONS(19), 2, - anon_sym_PLUS, + ACTIONS(1670), 1, + anon_sym_DOT_DOT, + ACTIONS(1686), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1684), 59, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, + aux_sym_format_operator_token1, + anon_sym_RPAREN, anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [11127] = 3, - ACTIONS(3), 1, + anon_sym_PERCENT, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + [509] = 5, + ACTIONS(81), 1, sym_comment, - ACTIONS(1779), 1, - ts_builtin_sym_end, - ACTIONS(1654), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(799), 1, + aux_sym_format_operator_token1, + STATE(585), 1, + sym_format_operator, + ACTIONS(1690), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + anon_sym_DASH, + ACTIONS(1688), 58, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11195] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + [584] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(1781), 1, - ts_builtin_sym_end, - ACTIONS(1564), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, + ACTIONS(831), 3, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + anon_sym_DASH, + ACTIONS(1692), 4, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(829), 56, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11263] = 31, + anon_sym_RBRACK, + [657] = 34, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, sym_decimal_integer_literal, ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(151), 1, anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(4), 1, + ACTIONS(547), 1, + sym_real_literal, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, + anon_sym_PLUS_PLUS, + ACTIONS(557), 1, + anon_sym_DASH_DASH, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, - sym_unary_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(179), 1, - sym_range_expression, - STATE(180), 1, - sym_format_expression, - STATE(190), 1, - sym_multiplicative_expression, - STATE(195), 1, - sym_additive_expression, + STATE(497), 1, + sym_unary_expression, + STATE(498), 1, + sym_format_argument_expression, + STATE(499), 1, + sym_range_argument_expression, + STATE(520), 1, + sym_multiplicative_argument_expression, + STATE(570), 1, + sym_additive_argument_expression, + STATE(582), 1, + sym_comparison_argument_expression, + STATE(1320), 1, + sym_logical_argument_expression, + STATE(1322), 1, + sym_bitwise_argument_expression, + STATE(1519), 1, + sym_argument_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(143), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -73927,14 +74555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -73951,212 +74579,19 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [11387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - ts_builtin_sym_end, - ACTIONS(1570), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - ts_builtin_sym_end, - ACTIONS(1626), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - ts_builtin_sym_end, - ACTIONS(1628), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11591] = 5, + [790] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_PLUS, - ACTIONS(1716), 1, - anon_sym_DASH, - ACTIONS(841), 2, + ACTIONS(819), 3, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(839), 56, + anon_sym_DASH, + ACTIONS(1692), 4, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(817), 56, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -74205,480 +74640,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - [11663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - ts_builtin_sym_end, - ACTIONS(1572), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - ts_builtin_sym_end, - ACTIONS(1574), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11799] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + [863] = 33, + ACTIONS(81), 1, sym_comment, - ACTIONS(1793), 1, - ts_builtin_sym_end, - ACTIONS(1630), 59, + ACTIONS(119), 1, sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, + ACTIONS(139), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(141), 1, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, anon_sym_AT_LPAREN, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - [11867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - ts_builtin_sym_end, - ACTIONS(1568), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, + ACTIONS(547), 1, sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, + ACTIONS(549), 1, anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, + ACTIONS(557), 1, anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [11935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - ts_builtin_sym_end, - ACTIONS(1464), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, + STATE(79), 1, + sym_type_literal, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(438), 1, + sym_unary_expression, + STATE(459), 1, + sym_format_expression, + STATE(461), 1, + sym_range_expression, + STATE(503), 1, + sym_multiplicative_expression, + STATE(555), 1, + sym_additive_expression, + STATE(568), 1, + sym_comparison_expression, + STATE(1293), 1, + sym_bitwise_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - ts_builtin_sym_end, - ACTIONS(1632), 59, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + STATE(120), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(551), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12071] = 30, + STATE(306), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [993] = 33, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1536), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1538), 1, - sym_simple_name, - ACTIONS(1540), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - ACTIONS(1799), 1, - anon_sym_RBRACE, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, + STATE(79), 1, sym_type_literal, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1795), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(439), 1, sym_unary_expression, - STATE(1845), 1, - sym_key_expression, - ACTIONS(1101), 2, + STATE(446), 1, + sym_range_expression, + STATE(447), 1, + sym_format_expression, + STATE(490), 1, + sym_multiplicative_expression, + STATE(541), 1, + sym_additive_expression, + STATE(556), 1, + sym_comparison_expression, + STATE(1265), 1, + sym_bitwise_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1546), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(517), 2, - sym_hash_entry, - aux_sym_hash_literal_body_repeat1, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1542), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -74695,77 +74842,210 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [12193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 1, - ts_builtin_sym_end, - ACTIONS(1532), 59, + [1123] = 33, + ACTIONS(5), 1, sym_decimal_integer_literal, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(105), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_LBRACE, + ACTIONS(113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(115), 1, + anon_sym_AT_LPAREN, + ACTIONS(117), 1, + anon_sym_AT_LBRACE, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, + anon_sym_PLUS_PLUS, + ACTIONS(589), 1, + anon_sym_DASH_DASH, + STATE(82), 1, + sym_type_literal, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(184), 1, + sym_array_literal_expression, + STATE(436), 1, + sym_unary_expression, + STATE(467), 1, + sym_format_expression, + STATE(470), 1, + sym_range_expression, + STATE(496), 1, + sym_multiplicative_expression, + STATE(554), 1, + sym_additive_expression, + STATE(567), 1, + sym_comparison_expression, + STATE(1285), 1, + sym_bitwise_expression, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(585), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(178), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(583), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, + STATE(317), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [1253] = 33, + ACTIONS(5), 1, + sym_decimal_integer_literal, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, + sym_hexadecimal_integer_literal, + ACTIONS(85), 1, + sym_real_literal, + ACTIONS(87), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(89), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(93), 1, + anon_sym_LBRACK, + ACTIONS(105), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_LBRACE, + ACTIONS(109), 1, anon_sym_PLUS_PLUS, + ACTIONS(111), 1, anon_sym_DASH_DASH, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(115), 1, anon_sym_AT_LPAREN, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - [12261] = 3, + STATE(3), 1, + sym_type_literal, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(160), 1, + sym_unary_expression, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(184), 1, + sym_array_literal_expression, + STATE(186), 1, + sym_format_expression, + STATE(188), 1, + sym_range_expression, + STATE(189), 1, + sym_multiplicative_expression, + STATE(197), 1, + sym_additive_expression, + STATE(201), 1, + sym_comparison_expression, + STATE(819), 1, + sym_bitwise_expression, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(178), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(101), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(99), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_COMMA, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + STATE(156), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [1383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1803), 1, - ts_builtin_sym_end, - ACTIONS(1636), 59, + ACTIONS(1618), 1, + sym__statement_terminator, + ACTIONS(1694), 1, + anon_sym_SPACE, + STATE(513), 1, + aux_sym_command_argument_sep_repeat1, + ACTIONS(1612), 59, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -74773,8 +75053,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, @@ -74784,37 +75090,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, + sym_generic_token, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, @@ -74825,12 +75105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12329] = 3, + [1457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - ts_builtin_sym_end, - ACTIONS(1638), 59, + ACTIONS(1696), 1, + anon_sym_SPACE, + STATE(512), 1, + aux_sym_command_argument_sep_repeat1, + ACTIONS(1612), 60, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -74838,8 +75120,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, @@ -74849,37 +75157,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, + sym_generic_token, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, @@ -74890,63 +75173,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12397] = 3, - ACTIONS(3), 1, + [1529] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(1807), 1, - ts_builtin_sym_end, - ACTIONS(1644), 59, + ACTIONS(475), 14, sym_decimal_integer_literal, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(477), 48, + sym__statement_terminator, sym_hexadecimal_integer_literal, sym_real_literal, aux_sym_expandable_string_literal_token1, aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PIPE, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, @@ -74955,77 +75238,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12465] = 3, - ACTIONS(3), 1, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [1599] = 33, + ACTIONS(81), 1, sym_comment, - ACTIONS(1809), 1, - ts_builtin_sym_end, - ACTIONS(1646), 59, + ACTIONS(119), 1, sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + STATE(4), 1, + sym_type_literal, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(157), 1, + sym_unary_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(185), 1, + sym_format_expression, + STATE(187), 1, + sym_range_expression, + STATE(190), 1, + sym_multiplicative_expression, + STATE(196), 1, + sym_additive_expression, + STATE(200), 1, + sym_comparison_expression, + STATE(807), 1, + sym_bitwise_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(143), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(133), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12533] = 3, + STATE(155), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [1729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - ts_builtin_sym_end, - ACTIONS(1648), 59, + ACTIONS(1698), 1, + anon_sym_SPACE, + STATE(512), 1, + aux_sym_command_argument_sep_repeat1, + ACTIONS(1622), 60, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -75033,8 +75352,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, @@ -75044,37 +75389,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, + sym_generic_token, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, @@ -75085,12 +75405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12601] = 3, + [1801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1813), 1, - ts_builtin_sym_end, - ACTIONS(1592), 59, + ACTIONS(1627), 1, + sym__statement_terminator, + ACTIONS(1701), 1, + anon_sym_SPACE, + STATE(513), 1, + aux_sym_command_argument_sep_repeat1, + ACTIONS(1622), 59, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -75098,8 +75422,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, @@ -75109,37 +75459,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, + sym_generic_token, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, @@ -75150,63 +75474,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12669] = 3, - ACTIONS(3), 1, + [1875] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(1815), 1, - ts_builtin_sym_end, - ACTIONS(1455), 59, + ACTIONS(475), 14, sym_decimal_integer_literal, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(477), 48, sym_hexadecimal_integer_literal, sym_real_literal, aux_sym_expandable_string_literal_token1, aux_sym_expandable_here_string_literal_token1, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PIPE, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, @@ -75215,337 +75539,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [12737] = 3, - ACTIONS(3), 1, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [1945] = 32, + ACTIONS(81), 1, sym_comment, - ACTIONS(1515), 1, - ts_builtin_sym_end, - ACTIONS(1468), 59, + ACTIONS(119), 1, sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + ACTIONS(547), 1, + sym_real_literal, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, + anon_sym_PLUS_PLUS, + ACTIONS(557), 1, + anon_sym_DASH_DASH, + STATE(79), 1, + sym_type_literal, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(439), 1, + sym_unary_expression, + STATE(446), 1, + sym_range_expression, + STATE(447), 1, + sym_format_expression, + STATE(490), 1, + sym_multiplicative_expression, + STATE(541), 1, + sym_additive_expression, + STATE(552), 1, + sym_comparison_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(553), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(551), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12805] = 3, - ACTIONS(3), 1, + STATE(306), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2072] = 32, + ACTIONS(81), 1, sym_comment, - ACTIONS(1817), 1, - ts_builtin_sym_end, - ACTIONS(1620), 59, + ACTIONS(119), 1, sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + STATE(4), 1, + sym_type_literal, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(157), 1, + sym_unary_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(185), 1, + sym_format_expression, + STATE(187), 1, + sym_range_expression, + STATE(190), 1, + sym_multiplicative_expression, + STATE(196), 1, + sym_additive_expression, + STATE(202), 1, + sym_comparison_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(143), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(133), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12873] = 2, - ACTIONS(3), 1, + STATE(155), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2199] = 31, + ACTIONS(81), 1, sym_comment, - ACTIONS(1819), 59, + ACTIONS(1181), 1, sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(1201), 1, + anon_sym_LPAREN, + ACTIONS(1203), 1, + anon_sym_LBRACE, + ACTIONS(1211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1213), 1, + anon_sym_AT_LPAREN, + ACTIONS(1215), 1, + anon_sym_AT_LBRACE, + ACTIONS(1704), 1, + sym_real_literal, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1712), 1, + anon_sym_RBRACE, + ACTIONS(1716), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1718), 1, + anon_sym_DASH_DASH, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, + sym_invokation_foreach_expression, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, + sym_unary_expression, + STATE(2023), 1, + sym_hash_literal_body, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1710), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [12938] = 2, - ACTIONS(3), 1, + STATE(1290), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2324] = 31, + ACTIONS(81), 1, sym_comment, - ACTIONS(1422), 59, + ACTIONS(1181), 1, sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(1201), 1, + anon_sym_LPAREN, + ACTIONS(1203), 1, + anon_sym_LBRACE, + ACTIONS(1211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1213), 1, + anon_sym_AT_LPAREN, + ACTIONS(1215), 1, + anon_sym_AT_LBRACE, + ACTIONS(1704), 1, + sym_real_literal, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1718), 1, + anon_sym_DASH_DASH, + ACTIONS(1720), 1, + anon_sym_RBRACE, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, + sym_invokation_foreach_expression, + STATE(1726), 1, + sym_key_expression, + STATE(1749), 1, + sym_hash_literal_body, + STATE(1769), 1, + sym_unary_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1710), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [13003] = 30, - ACTIONS(5), 1, - sym_decimal_integer_literal, + STATE(1290), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2449] = 31, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + ACTIONS(1704), 1, + sym_real_literal, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1718), 1, + anon_sym_DASH_DASH, + ACTIONS(1722), 1, + anon_sym_RBRACE, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, sym_type_literal, - STATE(147), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(164), 1, + STATE(1708), 1, + sym_hash_literal_body, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(181), 1, - sym_format_expression, - STATE(182), 1, - sym_range_expression, - STATE(185), 1, - sym_array_literal_expression, - STATE(192), 1, - sym_multiplicative_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -75562,18 +76013,19 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [13124] = 5, + [2574] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_PLUS, - ACTIONS(1823), 1, - anon_sym_DASH, - ACTIONS(841), 2, + ACTIONS(1726), 3, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(839), 55, - sym__statement_terminator, + anon_sym_DASH, + ACTIONS(1728), 4, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(1724), 54, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -75622,23 +76074,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, + anon_sym_RPAREN, + anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - [13195] = 5, + anon_sym_PLUS, + [2645] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1825), 1, - anon_sym_PLUS, - ACTIONS(1827), 1, - anon_sym_DASH, - ACTIONS(841), 2, + ACTIONS(1732), 3, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(839), 55, + anon_sym_DASH, + ACTIONS(1728), 4, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_STAR, + ACTIONS(1730), 54, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -75687,273 +76141,368 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, + anon_sym_RPAREN, + anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_RBRACK, - [13266] = 2, - ACTIONS(3), 1, + anon_sym_PLUS, + [2716] = 32, + ACTIONS(81), 1, sym_comment, - ACTIONS(1433), 59, + ACTIONS(119), 1, sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + ACTIONS(547), 1, + sym_real_literal, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, + anon_sym_PLUS_PLUS, + ACTIONS(557), 1, + anon_sym_DASH_DASH, + STATE(79), 1, + sym_type_literal, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(497), 1, + sym_unary_expression, + STATE(498), 1, + sym_format_argument_expression, + STATE(499), 1, + sym_range_argument_expression, + STATE(520), 1, + sym_multiplicative_argument_expression, + STATE(570), 1, + sym_additive_argument_expression, + STATE(582), 1, + sym_comparison_argument_expression, + STATE(1333), 1, + sym_bitwise_argument_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(553), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(551), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [13331] = 2, - ACTIONS(3), 1, + STATE(306), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2843] = 31, + ACTIONS(81), 1, sym_comment, - ACTIONS(1406), 59, + ACTIONS(1181), 1, sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - sym_real_literal, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(1201), 1, + anon_sym_LPAREN, + ACTIONS(1203), 1, + anon_sym_LBRACE, + ACTIONS(1211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1213), 1, + anon_sym_AT_LPAREN, + ACTIONS(1215), 1, + anon_sym_AT_LBRACE, + ACTIONS(1704), 1, + sym_real_literal, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1718), 1, + anon_sym_DASH_DASH, + ACTIONS(1734), 1, + anon_sym_RBRACE, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, + sym_invokation_foreach_expression, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, + sym_unary_expression, + STATE(1775), 1, + sym_hash_literal_body, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - anon_sym_DOT, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(171), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1710), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_if_statement_token1, - aux_sym_switch_statement_token1, - aux_sym_foreach_statement_token1, - aux_sym_for_statement_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token1, - aux_sym_function_statement_token1, - aux_sym_function_statement_token2, - aux_sym_function_statement_token3, - aux_sym_flow_control_statement_token1, - aux_sym_flow_control_statement_token2, - aux_sym_flow_control_statement_token3, - aux_sym_flow_control_statement_token4, - aux_sym_flow_control_statement_token5, - sym_label, - aux_sym_trap_statement_token1, - aux_sym_try_statement_token1, - aux_sym_data_statement_token1, - aux_sym_inlinescript_statement_token1, - aux_sym_parallel_statement_token1, - aux_sym_sequence_statement_token1, - anon_sym_AMP, - aux_sym_command_name_token1, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - aux_sym_class_statement_token1, - aux_sym_enum_statement_token1, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(1290), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [2968] = 32, + ACTIONS(5), 1, + sym_decimal_integer_literal, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, + sym_hexadecimal_integer_literal, + ACTIONS(87), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(89), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(105), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_LBRACE, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(115), 1, anon_sym_AT_LPAREN, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - [13396] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1825), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, + anon_sym_PLUS_PLUS, + ACTIONS(589), 1, + anon_sym_DASH_DASH, + STATE(82), 1, + sym_type_literal, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(184), 1, + sym_array_literal_expression, + STATE(436), 1, + sym_unary_expression, + STATE(467), 1, + sym_format_expression, + STATE(470), 1, + sym_range_expression, + STATE(496), 1, + sym_multiplicative_expression, + STATE(554), 1, + sym_additive_expression, + STATE(565), 1, + sym_comparison_expression, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, - ACTIONS(1827), 1, anon_sym_DASH, - ACTIONS(835), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(833), 55, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, + STATE(131), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(178), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(101), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_RBRACK, - [13467] = 30, + anon_sym_COMMA, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + STATE(317), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [3095] = 32, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(109), 1, anon_sym_PLUS_PLUS, - ACTIONS(147), 1, + ACTIONS(111), 1, anon_sym_DASH_DASH, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(4), 1, + STATE(3), 1, sym_type_literal, - STATE(115), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, + STATE(160), 1, sym_unary_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(179), 1, - sym_range_expression, - STATE(180), 1, + STATE(184), 1, + sym_array_literal_expression, + STATE(186), 1, sym_format_expression, - STATE(191), 1, + STATE(188), 1, + sym_range_expression, + STATE(189), 1, sym_multiplicative_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, + STATE(197), 1, + sym_additive_expression, + STATE(199), 1, + sym_comparison_expression, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, @@ -75977,7 +76526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [13588] = 30, + [3222] = 32, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -75998,43 +76547,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(392), 1, + STATE(438), 1, sym_unary_expression, - STATE(394), 1, - sym_format_argument_expression, - STATE(395), 1, - sym_range_argument_expression, - STATE(462), 1, - sym_multiplicative_argument_expression, - STATE(575), 1, - sym_additive_argument_expression, + STATE(459), 1, + sym_format_expression, + STATE(461), 1, + sym_range_expression, + STATE(503), 1, + sym_multiplicative_expression, + STATE(555), 1, + sym_additive_expression, + STATE(559), 1, + sym_comparison_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -76044,14 +76597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76068,79 +76621,84 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [13709] = 28, + [3349] = 31, ACTIONS(81), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_DOT2, - ACTIONS(1045), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1829), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(1831), 1, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(1837), 1, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(554), 1, - sym_type_literal, - STATE(997), 1, - sym_unary_expression, - STATE(1005), 1, + ACTIONS(1736), 1, + anon_sym_RBRACE, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(1011), 1, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, + sym_unary_expression, + STATE(1797), 1, + sym_hash_literal_body, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(95), 3, - sym__statement_terminator, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - STATE(1006), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1301), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76157,72 +76715,77 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [13826] = 28, + [3474] = 31, ACTIONS(81), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_DOT2, - ACTIONS(1091), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(1847), 1, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(555), 1, - sym_type_literal, - STATE(949), 1, + ACTIONS(1738), 1, + anon_sym_RBRACE, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(963), 1, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(969), 1, + STATE(1726), 1, + sym_key_expression, + STATE(1731), 1, + sym_hash_literal_body, + STATE(1769), 1, sym_unary_expression, - ACTIONS(1101), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(95), 3, - anon_sym_EQ, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - STATE(950), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, @@ -76246,145 +76809,84 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [13943] = 5, + [3599] = 31, ACTIONS(81), 1, sym_comment, - STATE(515), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(875), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(879), 48, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - [14014] = 28, - ACTIONS(81), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_DOT2, - ACTIONS(1045), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(1857), 1, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(1859), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(175), 1, - sym_unary_expression, - STATE(178), 1, + ACTIONS(1740), 1, + anon_sym_RBRACE, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(557), 1, + STATE(550), 1, sym_type_literal, - STATE(1011), 1, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, + sym_unary_expression, + STATE(1819), 1, + sym_hash_literal_body, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1855), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(95), 3, - sym__statement_terminator, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1853), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1326), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76401,145 +76903,84 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14131] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1821), 1, - anon_sym_PLUS, - ACTIONS(1823), 1, - anon_sym_DASH, - ACTIONS(835), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(833), 55, - sym__statement_terminator, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - [14202] = 28, + [3724] = 31, ACTIONS(81), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_DOT2, - ACTIONS(1091), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1536), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(1540), 1, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(163), 1, + ACTIONS(1742), 1, + anon_sym_RBRACE, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(168), 1, - sym_unary_expression, - STATE(559), 1, + STATE(550), 1, sym_type_literal, - STATE(963), 1, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, + sym_unary_expression, + STATE(1850), 1, + sym_hash_literal_body, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1546), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(531), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(95), 3, - anon_sym_EQ, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1542), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76556,81 +76997,82 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14319] = 30, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [3849] = 30, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(1706), 1, + sym_simple_name, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(80), 1, + ACTIONS(1744), 1, + anon_sym_RBRACE, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, sym_type_literal, - STATE(147), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(304), 1, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, sym_unary_expression, - STATE(345), 1, - sym_format_expression, - STATE(346), 1, - sym_range_expression, - STATE(386), 1, - sym_multiplicative_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(532), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76647,81 +77089,82 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14440] = 30, + [3971] = 30, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1746), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1749), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(1752), 1, + sym_real_literal, + ACTIONS(1755), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1758), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(1764), 1, + sym_simple_name, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1779), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1782), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH_DASH, + ACTIONS(1796), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1799), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1802), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, sym_type_literal, - STATE(115), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(298), 1, + STATE(1726), 1, + sym_key_expression, + STATE(1769), 1, sym_unary_expression, - STATE(320), 1, - sym_format_expression, - STATE(321), 1, - sym_range_expression, - STATE(362), 1, - sym_multiplicative_expression, - ACTIONS(129), 2, + ACTIONS(1761), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(1776), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(532), 2, + sym_hash_entry, + aux_sym_hash_literal_body_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1773), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(1770), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76738,147 +77181,240 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14561] = 5, - ACTIONS(81), 1, + [4093] = 2, + ACTIONS(3), 1, sym_comment, - STATE(515), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(883), 8, + ACTIONS(1612), 60, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + sym_generic_token, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(879), 48, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + [4159] = 31, + ACTIONS(5), 1, + sym_decimal_integer_literal, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, + sym_hexadecimal_integer_literal, + ACTIONS(85), 1, + sym_real_literal, + ACTIONS(87), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(89), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(93), 1, + anon_sym_LBRACK, + ACTIONS(105), 1, + anon_sym_LPAREN, + ACTIONS(107), 1, + anon_sym_LBRACE, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, + ACTIONS(113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(115), 1, + anon_sym_AT_LPAREN, + ACTIONS(117), 1, + anon_sym_AT_LBRACE, + STATE(3), 1, + sym_type_literal, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(160), 1, + sym_unary_expression, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(184), 1, + sym_array_literal_expression, + STATE(186), 1, + sym_format_expression, + STATE(188), 1, + sym_range_expression, + STATE(189), 1, + sym_multiplicative_expression, + STATE(194), 1, + sym_additive_expression, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(178), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(101), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(99), 6, + aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, - [14632] = 30, + anon_sym_COMMA, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + STATE(156), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [4283] = 31, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(581), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(82), 1, sym_type_literal, - STATE(115), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(306), 1, + STATE(184), 1, + sym_array_literal_expression, + STATE(436), 1, sym_unary_expression, - STATE(348), 1, + STATE(467), 1, sym_format_expression, - STATE(349), 1, + STATE(470), 1, sym_range_expression, - STATE(383), 1, + STATE(496), 1, sym_multiplicative_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + STATE(544), 1, + sym_additive_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76895,62 +77431,66 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14753] = 29, + [4407] = 31, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, sym_decimal_integer_literal, ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, + sym_real_literal, ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(151), 1, anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, + STATE(4), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(392), 1, + STATE(157), 1, sym_unary_expression, - STATE(394), 1, - sym_format_argument_expression, - STATE(395), 1, - sym_range_argument_expression, - STATE(474), 1, - sym_multiplicative_argument_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(185), 1, + sym_format_expression, + STATE(187), 1, + sym_range_expression, + STATE(190), 1, + sym_multiplicative_expression, + STATE(198), 1, + sym_additive_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -76960,14 +77500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -76984,7 +77524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14871] = 29, + [4531] = 31, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -77005,41 +77545,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(158), 1, + STATE(165), 1, sym_array_literal_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(306), 1, + STATE(438), 1, sym_unary_expression, - STATE(332), 1, + STATE(459), 1, sym_format_expression, - STATE(349), 1, + STATE(461), 1, sym_range_expression, + STATE(503), 1, + sym_multiplicative_expression, + STATE(542), 1, + sym_additive_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -77049,14 +77593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77073,79 +77617,148 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [14989] = 29, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, + [4655] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1618), 1, + sym__statement_terminator, + ACTIONS(1612), 59, + sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, sym_real_literal, - ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, anon_sym_LBRACK, - ACTIONS(105), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + sym_generic_token, anon_sym_LPAREN, - ACTIONS(107), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(109), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, anon_sym_PLUS_PLUS, - ACTIONS(111), 1, anon_sym_DASH_DASH, - ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + [4723] = 31, + ACTIONS(81), 1, + sym_comment, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, + sym_hexadecimal_integer_literal, + ACTIONS(125), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + ACTIONS(547), 1, + sym_real_literal, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, + anon_sym_PLUS_PLUS, + ACTIONS(557), 1, + anon_sym_DASH_DASH, + STATE(79), 1, sym_type_literal, - STATE(147), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(182), 1, + STATE(439), 1, + sym_unary_expression, + STATE(446), 1, sym_range_expression, - STATE(185), 1, - sym_array_literal_expression, - STATE(186), 1, + STATE(447), 1, sym_format_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(490), 1, + sym_multiplicative_expression, + STATE(540), 1, + sym_additive_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(553), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77162,23 +77775,17 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [15107] = 5, + [4847] = 5, ACTIONS(81), 1, sym_comment, - STATE(506), 1, - sym_comparison_operator, - ACTIONS(881), 2, + ACTIONS(1805), 1, + anon_sym_PLUS, + ACTIONS(1807), 1, + anon_sym_DASH, + ACTIONS(835), 2, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(883), 7, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - anon_sym_RBRACK, - ACTIONS(879), 48, + ACTIONS(833), 56, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -77227,23 +77834,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - [15177] = 5, - ACTIONS(81), 1, - sym_comment, - STATE(506), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(875), 7, + anon_sym_RPAREN, + anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - anon_sym_RBRACK, - ACTIONS(879), 48, + [4919] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_PLUS, + ACTIONS(1807), 1, + anon_sym_DASH, + ACTIONS(841), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(839), 56, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -77292,23 +77901,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - [15247] = 5, - ACTIONS(81), 1, - sym_comment, - STATE(498), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(883), 7, - sym__statement_terminator, + anon_sym_RPAREN, + anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(879), 48, + [4991] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_DASH, + ACTIONS(835), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(833), 55, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -77357,72 +77968,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - [15317] = 5, - ACTIONS(81), 1, - sym_comment, - STATE(498), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(875), 7, - sym__statement_terminator, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(879), 48, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - [15387] = 29, + anon_sym_RBRACK, + [5062] = 30, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, @@ -77443,41 +77996,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(581), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(80), 1, + STATE(82), 1, sym_type_literal, - STATE(147), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(178), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(185), 1, + STATE(184), 1, sym_array_literal_expression, - STATE(304), 1, + STATE(436), 1, sym_unary_expression, - STATE(330), 1, + STATE(467), 1, sym_format_expression, - STATE(346), 1, + STATE(470), 1, sym_range_expression, + STATE(493), 1, + sym_multiplicative_expression, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -77487,14 +78042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77511,72 +78066,140 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [15505] = 29, + [5183] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1813), 1, + anon_sym_PLUS, + ACTIONS(1815), 1, + anon_sym_DASH, + ACTIONS(835), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(833), 55, + sym__statement_terminator, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + [5254] = 30, + ACTIONS(5), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(109), 1, anon_sym_PLUS_PLUS, - ACTIONS(147), 1, + ACTIONS(111), 1, anon_sym_DASH_DASH, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(4), 1, + STATE(3), 1, sym_type_literal, - STATE(115), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, + STATE(160), 1, sym_unary_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(179), 1, - sym_range_expression, - STATE(183), 1, + STATE(184), 1, + sym_array_literal_expression, + STATE(186), 1, sym_format_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, + STATE(188), 1, + sym_range_expression, + STATE(191), 1, + sym_multiplicative_expression, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, @@ -77600,62 +78223,64 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [15623] = 29, + [5375] = 30, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, sym_decimal_integer_literal, ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, + sym_real_literal, ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(151), 1, anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, + STATE(4), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(158), 1, + STATE(157), 1, + sym_unary_expression, + STATE(165), 1, sym_array_literal_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(298), 1, - sym_unary_expression, - STATE(312), 1, + STATE(185), 1, sym_format_expression, - STATE(321), 1, + STATE(187), 1, sym_range_expression, + STATE(192), 1, + sym_multiplicative_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -77665,14 +78290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77689,79 +78314,81 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [15741] = 29, + [5496] = 30, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1297), 1, - sym__statement_terminator, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1857), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1859), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - ACTIONS(1861), 1, - sym_label, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(557), 1, + STATE(79), 1, sym_type_literal, - STATE(1011), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1776), 1, - sym_label_expression, - STATE(2053), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(438), 1, sym_unary_expression, - ACTIONS(1055), 2, + STATE(459), 1, + sym_format_expression, + STATE(461), 1, + sym_range_expression, + STATE(501), 1, + sym_multiplicative_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1855), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1853), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1326), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77778,141 +78405,79 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [15859] = 5, + [5617] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_PLUS, - ACTIONS(1869), 1, - anon_sym_DASH, - ACTIONS(1865), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(1863), 53, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [15928] = 28, - ACTIONS(5), 1, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(81), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + ACTIONS(1817), 1, + sym_real_literal, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1827), 1, + anon_sym_DASH_DASH, + STATE(548), 1, sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(188), 1, - sym_range_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(984), 1, + sym_unary_expression, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(1163), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1823), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + ACTIONS(95), 3, + sym__statement_terminator, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(1273), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -77929,77 +78494,79 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16043] = 28, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [5734] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(1829), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(1835), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(1837), 1, anon_sym_DASH_DASH, - STATE(80), 1, + STATE(549), 1, sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(178), 1, + STATE(933), 1, sym_expression_with_unary_operator, - STATE(185), 1, - sym_array_literal_expression, - STATE(304), 1, + STATE(941), 1, sym_unary_expression, - STATE(331), 1, - sym_range_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1833), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + ACTIONS(95), 3, + anon_sym_EQ, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(1256), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78016,141 +78583,79 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16158] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1867), 1, - anon_sym_PLUS, - ACTIONS(1869), 1, - anon_sym_DASH, - ACTIONS(1873), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(1871), 53, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [16227] = 28, + [5851] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(167), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(550), 1, sym_type_literal, - STATE(115), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(306), 1, - sym_unary_expression, - STATE(333), 1, - sym_range_expression, - ACTIONS(129), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + ACTIONS(95), 3, + anon_sym_EQ, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78167,7 +78672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16342] = 28, + [5968] = 30, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -78188,39 +78693,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(158), 1, + STATE(165), 1, sym_array_literal_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(298), 1, + STATE(439), 1, sym_unary_expression, - STATE(314), 1, + STATE(446), 1, sym_range_expression, + STATE(447), 1, + sym_format_expression, + STATE(478), 1, + sym_multiplicative_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -78230,14 +78739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78254,7 +78763,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16457] = 28, + [6089] = 5, + ACTIONS(81), 1, + sym_comment, + STATE(539), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(845), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [6160] = 30, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -78275,39 +78850,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(390), 1, - sym_format_argument_expression, - STATE(392), 1, + STATE(497), 1, sym_unary_expression, - STATE(395), 1, + STATE(498), 1, + sym_format_argument_expression, + STATE(499), 1, sym_range_argument_expression, + STATE(520), 1, + sym_multiplicative_argument_expression, + STATE(574), 1, + sym_additive_argument_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -78317,14 +78896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78341,162 +78920,277 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16572] = 28, + [6281] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_PLUS, + ACTIONS(1815), 1, + anon_sym_DASH, + ACTIONS(841), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(839), 55, + sym__statement_terminator, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + [6352] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_DASH, + ACTIONS(841), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(839), 55, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + anon_sym_RBRACK, + [6423] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, - sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - STATE(4), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(158), 1, - sym_array_literal_expression, - STATE(162), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(184), 1, - sym_range_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(133), 6, + STATE(539), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(853), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [16687] = 27, + [6494] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, + ACTIONS(1819), 1, anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(1839), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(1845), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(1847), 1, anon_sym_DASH_DASH, - STATE(77), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(169), 1, - sym_array_literal_expression, - STATE(306), 1, + STATE(175), 1, sym_unary_expression, - ACTIONS(129), 2, + STATE(557), 1, + sym_type_literal, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(1843), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + ACTIONS(95), 3, + sym__statement_terminator, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(1841), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(1284), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78513,164 +79207,77 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [16799] = 27, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, + [6611] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - STATE(3), 1, - sym_type_literal, - STATE(147), 1, + ACTIONS(1849), 1, + sym_real_literal, + ACTIONS(1851), 1, + anon_sym_LBRACK, + ACTIONS(1857), 1, + sym_path_command_name_token, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(164), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(187), 1, - sym_array_literal_expression, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(138), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(99), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, + STATE(1200), 1, sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [16911] = 27, - ACTIONS(81), 1, - sym_comment, - ACTIONS(119), 1, + STATE(1237), 1, + aux_sym_path_command_name_repeat1, + STATE(1404), 1, + sym_data_command, + STATE(1549), 1, + sym_command_name_expr, + STATE(2109), 1, + sym_data_commands_list, + ACTIONS(1181), 2, sym_decimal_integer_literal, - ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, - ACTIONS(125), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, - ACTIONS(149), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, - anon_sym_AT_LPAREN, - ACTIONS(153), 1, - anon_sym_AT_LBRACE, - STATE(4), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(162), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(169), 1, - sym_array_literal_expression, - ACTIONS(129), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(143), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(113), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(135), 5, + STATE(1579), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1853), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + ACTIONS(1855), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(1272), 16, sym__literal, sym_integer_literal, sym_string_literal, - sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -78683,21 +79290,24 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17023] = 5, + sym_type_literal, + [6719] = 5, ACTIONS(81), 1, sym_comment, - STATE(553), 1, + STATE(537), 1, sym_comparison_operator, - ACTIONS(881), 2, + ACTIONS(851), 2, aux_sym_comparison_operator_token28, aux_sym_comparison_operator_token34, - ACTIONS(1875), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(845), 7, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - ACTIONS(879), 48, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + anon_sym_RBRACK, + ACTIONS(849), 48, aux_sym_comparison_operator_token1, aux_sym_comparison_operator_token2, aux_sym_comparison_operator_token3, @@ -78746,58 +79356,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_operator_token48, aux_sym_comparison_operator_token49, aux_sym_comparison_operator_token50, - [17091] = 27, + [6789] = 29, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, sym_decimal_integer_literal, ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, + sym_real_literal, ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(151), 1, anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, - anon_sym_PLUS_PLUS, - ACTIONS(499), 1, - anon_sym_DASH_DASH, - STATE(77), 1, + STATE(4), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(392), 1, + STATE(157), 1, sym_unary_expression, - STATE(393), 1, - sym_range_argument_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(182), 1, + sym_format_expression, + STATE(187), 1, + sym_range_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -78807,14 +79421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78831,7 +79445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17203] = 27, + [6907] = 29, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -78852,37 +79466,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(169), 1, + STATE(165), 1, sym_array_literal_expression, - STATE(298), 1, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(439), 1, sym_unary_expression, + STATE(446), 1, + sym_range_expression, + STATE(451), 1, + sym_format_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -78892,14 +79510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -78916,70 +79534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17315] = 5, - ACTIONS(81), 1, - sym_comment, - STATE(553), 1, - sym_comparison_operator, - ACTIONS(881), 2, - aux_sym_comparison_operator_token28, - aux_sym_comparison_operator_token34, - ACTIONS(1877), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - ACTIONS(879), 48, - aux_sym_comparison_operator_token1, - aux_sym_comparison_operator_token2, - aux_sym_comparison_operator_token3, - aux_sym_comparison_operator_token4, - aux_sym_comparison_operator_token5, - aux_sym_comparison_operator_token6, - aux_sym_comparison_operator_token7, - aux_sym_comparison_operator_token8, - aux_sym_comparison_operator_token9, - aux_sym_comparison_operator_token10, - aux_sym_comparison_operator_token11, - aux_sym_comparison_operator_token12, - aux_sym_comparison_operator_token13, - aux_sym_comparison_operator_token14, - aux_sym_comparison_operator_token15, - aux_sym_comparison_operator_token16, - aux_sym_comparison_operator_token17, - aux_sym_comparison_operator_token18, - aux_sym_comparison_operator_token19, - aux_sym_comparison_operator_token20, - aux_sym_comparison_operator_token21, - aux_sym_comparison_operator_token22, - aux_sym_comparison_operator_token23, - aux_sym_comparison_operator_token24, - aux_sym_comparison_operator_token25, - aux_sym_comparison_operator_token26, - aux_sym_comparison_operator_token27, - aux_sym_comparison_operator_token29, - aux_sym_comparison_operator_token30, - aux_sym_comparison_operator_token31, - aux_sym_comparison_operator_token32, - aux_sym_comparison_operator_token33, - aux_sym_comparison_operator_token35, - aux_sym_comparison_operator_token36, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token38, - aux_sym_comparison_operator_token39, - aux_sym_comparison_operator_token40, - aux_sym_comparison_operator_token41, - aux_sym_comparison_operator_token42, - aux_sym_comparison_operator_token43, - aux_sym_comparison_operator_token44, - aux_sym_comparison_operator_token45, - aux_sym_comparison_operator_token46, - aux_sym_comparison_operator_token47, - aux_sym_comparison_operator_token48, - aux_sym_comparison_operator_token49, - aux_sym_comparison_operator_token50, - [17383] = 27, + [7025] = 29, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, @@ -79000,37 +79555,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(581), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(80), 1, + STATE(82), 1, sym_type_literal, - STATE(147), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(178), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(187), 1, + STATE(184), 1, sym_array_literal_expression, - STATE(304), 1, + STATE(436), 1, sym_unary_expression, + STATE(466), 1, + sym_format_expression, + STATE(470), 1, + sym_range_expression, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -79040,14 +79599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79064,73 +79623,79 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17495] = 26, + [7143] = 29, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, - sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1049), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(1051), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1071), 1, + ACTIONS(109), 1, anon_sym_PLUS_PLUS, - ACTIONS(1073), 1, + ACTIONS(111), 1, anon_sym_DASH_DASH, - ACTIONS(1075), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(177), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(223), 1, + STATE(3), 1, sym_type_literal, - STATE(1011), 1, + STATE(138), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1069), 2, + STATE(160), 1, + sym_unary_expression, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(179), 1, + sym_format_expression, + STATE(184), 1, + sym_array_literal_expression, + STATE(188), 1, + sym_range_expression, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1059), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1051), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79147,73 +79712,79 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17604] = 26, + [7261] = 29, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, - sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1901), 1, - anon_sym_DASH_DASH, - ACTIONS(1903), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(217), 1, + ACTIONS(1217), 1, + sym__statement_terminator, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + sym_real_literal, + ACTIONS(1845), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1847), 1, + anon_sym_DASH_DASH, + ACTIONS(1859), 1, + sym_label, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(557), 1, sym_type_literal, - STATE(847), 1, + STATE(1005), 1, sym_invokation_foreach_expression, - STATE(1078), 1, - sym_expression_with_unary_operator, - STATE(1086), 1, + STATE(1984), 1, sym_unary_expression, - ACTIONS(997), 2, + STATE(2014), 1, + sym_label_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1029), 2, + ACTIONS(1843), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1891), 6, + ACTIONS(1841), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(1284), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79230,7 +79801,72 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17713] = 26, + [7379] = 5, + ACTIONS(81), 1, + sym_comment, + STATE(535), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(845), 7, + sym__statement_terminator, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [7449] = 29, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -79251,35 +79887,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(161), 1, - sym_unary_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, + STATE(497), 1, + sym_unary_expression, + STATE(498), 1, + sym_format_argument_expression, + STATE(499), 1, + sym_range_argument_expression, + STATE(521), 1, + sym_multiplicative_argument_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -79289,14 +79931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79313,7 +79955,137 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17822] = 26, + [7567] = 5, + ACTIONS(81), 1, + sym_comment, + STATE(535), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(853), 7, + sym__statement_terminator, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [7637] = 5, + ACTIONS(81), 1, + sym_comment, + STATE(537), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(853), 7, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + anon_sym_RBRACK, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [7707] = 29, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -79334,35 +80106,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(438), 1, sym_unary_expression, + STATE(461), 1, + sym_range_expression, + STATE(464), 1, + sym_format_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -79372,14 +80150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79396,73 +80174,141 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [17931] = 26, + [7825] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1865), 1, + anon_sym_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(1863), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(1861), 53, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [7894] = 28, + ACTIONS(5), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(165), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, sym_real_literal, - ACTIONS(171), 1, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(173), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(6), 1, + STATE(82), 1, sym_type_literal, - STATE(99), 1, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(101), 1, + STATE(184), 1, + sym_array_literal_expression, + STATE(436), 1, sym_unary_expression, - STATE(115), 1, - sym_invokation_foreach_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + STATE(454), 1, + sym_range_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(169), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(167), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(151), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79479,7 +80325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18040] = 26, + [8009] = 28, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -79490,8 +80336,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, @@ -79502,33 +80346,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(165), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(171), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(173), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(6), 1, + STATE(79), 1, sym_type_literal, - STATE(99), 1, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(103), 1, + STATE(439), 1, sym_unary_expression, - STATE(115), 1, - sym_invokation_foreach_expression, + STATE(448), 1, + sym_range_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(169), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -79538,14 +80388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(167), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(151), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79562,73 +80412,77 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18149] = 26, + [8124] = 28, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(85), 1, + sym_real_literal, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(165), 1, - sym_real_literal, - ACTIONS(171), 1, - anon_sym_PLUS_PLUS, - ACTIONS(173), 1, - anon_sym_DASH_DASH, - STATE(6), 1, + STATE(3), 1, sym_type_literal, - STATE(99), 1, - sym_expression_with_unary_operator, - STATE(115), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(121), 1, + STATE(160), 1, sym_unary_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(169), 2, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(180), 1, + sym_range_expression, + STATE(184), 1, + sym_array_literal_expression, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(167), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(151), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79645,7 +80499,71 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18258] = 26, + [8239] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1865), 1, + anon_sym_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(1871), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(1869), 53, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [8308] = 28, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -79666,35 +80584,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(166), 1, + STATE(497), 1, sym_unary_expression, + STATE(499), 1, + sym_range_argument_expression, + STATE(500), 1, + sym_format_argument_expression, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -79704,14 +80626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79728,73 +80650,77 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18367] = 26, + [8423] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, - sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1929), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1931), 1, - anon_sym_DASH_DASH, - ACTIONS(1933), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(212), 1, + ACTIONS(547), 1, + sym_real_literal, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, + anon_sym_PLUS_PLUS, + ACTIONS(557), 1, + anon_sym_DASH_DASH, + STATE(79), 1, sym_type_literal, - STATE(868), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1081), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(1091), 1, + STATE(438), 1, sym_unary_expression, - ACTIONS(959), 2, + STATE(468), 1, + sym_range_expression, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1013), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1921), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79811,77 +80737,75 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18476] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, + [8538] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(155), 1, + ACTIONS(1849), 1, sym_real_literal, - ACTIONS(161), 1, - anon_sym_PLUS_PLUS, - ACTIONS(163), 1, - anon_sym_DASH_DASH, - STATE(5), 1, - sym_type_literal, - STATE(124), 1, - sym_unary_expression, - STATE(132), 1, - sym_expression_with_unary_operator, - STATE(147), 1, + ACTIONS(1851), 1, + anon_sym_LBRACK, + ACTIONS(1857), 1, + sym_path_command_name_token, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(1200), 1, + sym_variable, + STATE(1237), 1, + aux_sym_path_command_name_repeat1, + STATE(1549), 1, + sym_command_name_expr, + STATE(1634), 1, + sym_data_command, + ACTIONS(1181), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(159), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, + STATE(1579), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1853), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(157), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(150), 16, + ACTIONS(1855), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(1272), 16, sym__literal, sym_integer_literal, sym_string_literal, - sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -79894,73 +80818,78 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18585] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + sym_type_literal, + [8643] = 28, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(123), 1, + sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(155), 1, - sym_real_literal, - ACTIONS(161), 1, - anon_sym_PLUS_PLUS, - ACTIONS(163), 1, - anon_sym_DASH_DASH, - STATE(5), 1, + STATE(4), 1, sym_type_literal, - STATE(125), 1, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(157), 1, sym_unary_expression, - STATE(132), 1, + STATE(165), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(147), 1, - sym_invokation_foreach_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(183), 1, + sym_range_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(159), 2, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(157), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(150), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -79977,7 +80906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18694] = 26, + [8758] = 27, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -80008,11 +80937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LBRACE, STATE(4), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(161), 1, + STATE(157), 1, sym_unary_expression, - STATE(163), 1, + STATE(169), 1, + sym_array_literal_expression, + STATE(170), 1, sym_expression_with_unary_operator, ACTIONS(129), 2, sym_verbatim_string_characters, @@ -80023,10 +80954,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -80043,7 +80974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80060,56 +80991,58 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18803] = 26, + [8870] = 27, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, ACTIONS(83), 1, sym_hexadecimal_integer_literal, + ACTIONS(85), 1, + sym_real_literal, ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(93), 1, + anon_sym_LBRACK, ACTIONS(105), 1, anon_sym_LPAREN, ACTIONS(107), 1, anon_sym_LBRACE, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(115), 1, anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, - sym_real_literal, - ACTIONS(553), 1, - anon_sym_PLUS_PLUS, - ACTIONS(555), 1, - anon_sym_DASH_DASH, - STATE(80), 1, + STATE(3), 1, sym_type_literal, - STATE(147), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(174), 1, + STATE(160), 1, sym_unary_expression, - STATE(178), 1, + STATE(172), 1, sym_expression_with_unary_operator, + STATE(181), 1, + sym_array_literal_expression, + ACTIONS(19), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -80119,14 +81052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80143,73 +81076,75 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [18912] = 26, + [8982] = 27, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, - sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1049), 1, - sym_real_literal, - ACTIONS(1051), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1071), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1073), 1, - anon_sym_DASH_DASH, - ACTIONS(1075), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(172), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(223), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, + anon_sym_PLUS_PLUS, + ACTIONS(589), 1, + anon_sym_DASH_DASH, + STATE(82), 1, sym_type_literal, - STATE(1011), 1, + STATE(138), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(181), 1, + sym_array_literal_expression, + STATE(436), 1, + sym_unary_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1069), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1059), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1051), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80226,77 +81161,136 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19021] = 26, + [9094] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, - sym_decimal_integer_literal, - ACTIONS(1047), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1049), 1, - sym_real_literal, - ACTIONS(1051), 1, + STATE(553), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(1873), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [9162] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(963), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(965), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(1071), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1073), 1, - anon_sym_DASH_DASH, - ACTIONS(1075), 1, + ACTIONS(983), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(985), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(987), 1, anon_sym_AT_LBRACE, - STATE(173), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(223), 1, - sym_type_literal, - STATE(1011), 1, + ACTIONS(1875), 1, + sym_real_literal, + ACTIONS(1877), 1, + anon_sym_LBRACK, + ACTIONS(1883), 1, + sym_path_command_name_token, + STATE(701), 1, + sym_variable, + STATE(727), 1, + sym_command_name_expr, + STATE(730), 1, + aux_sym_path_command_name_repeat1, + STATE(841), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + ACTIONS(959), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(967), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1069), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1008), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1061), 5, + STATE(1084), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1879), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1059), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1051), 16, + ACTIONS(1881), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(911), 16, sym__literal, sym_integer_literal, sym_string_literal, - sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -80309,73 +81303,76 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19130] = 26, + sym_type_literal, + [9264] = 27, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1127), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1133), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1135), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(170), 1, - sym_unary_expression, - STATE(226), 1, + STATE(79), 1, sym_type_literal, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(169), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(439), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1131), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1129), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1052), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80392,73 +81389,75 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19239] = 26, + [9376] = 27, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1127), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1133), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1135), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(161), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(226), 1, + STATE(79), 1, sym_type_literal, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(494), 1, + sym_range_argument_expression, + STATE(497), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1131), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1129), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1052), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80475,73 +81474,218 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19348] = 26, + [9488] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(893), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(903), 1, + anon_sym_LPAREN, + ACTIONS(905), 1, + anon_sym_LBRACE, + ACTIONS(911), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(913), 1, + anon_sym_AT_LPAREN, + ACTIONS(915), 1, + anon_sym_AT_LBRACE, + ACTIONS(1885), 1, + sym_real_literal, + ACTIONS(1887), 1, + anon_sym_LBRACK, + ACTIONS(1891), 1, + sym_path_command_name_token, + STATE(686), 1, + sym_variable, + STATE(714), 1, + aux_sym_path_command_name_repeat1, + STATE(718), 1, + sym_command_name_expr, + STATE(762), 1, + sym_invokation_foreach_expression, + ACTIONS(887), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(895), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(774), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(1041), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1889), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(63), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(853), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + sym_type_literal, + [9590] = 5, + ACTIONS(81), 1, + sym_comment, + STATE(553), 1, + sym_comparison_operator, + ACTIONS(851), 2, + aux_sym_comparison_operator_token28, + aux_sym_comparison_operator_token34, + ACTIONS(1893), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + ACTIONS(849), 48, + aux_sym_comparison_operator_token1, + aux_sym_comparison_operator_token2, + aux_sym_comparison_operator_token3, + aux_sym_comparison_operator_token4, + aux_sym_comparison_operator_token5, + aux_sym_comparison_operator_token6, + aux_sym_comparison_operator_token7, + aux_sym_comparison_operator_token8, + aux_sym_comparison_operator_token9, + aux_sym_comparison_operator_token10, + aux_sym_comparison_operator_token11, + aux_sym_comparison_operator_token12, + aux_sym_comparison_operator_token13, + aux_sym_comparison_operator_token14, + aux_sym_comparison_operator_token15, + aux_sym_comparison_operator_token16, + aux_sym_comparison_operator_token17, + aux_sym_comparison_operator_token18, + aux_sym_comparison_operator_token19, + aux_sym_comparison_operator_token20, + aux_sym_comparison_operator_token21, + aux_sym_comparison_operator_token22, + aux_sym_comparison_operator_token23, + aux_sym_comparison_operator_token24, + aux_sym_comparison_operator_token25, + aux_sym_comparison_operator_token26, + aux_sym_comparison_operator_token27, + aux_sym_comparison_operator_token29, + aux_sym_comparison_operator_token30, + aux_sym_comparison_operator_token31, + aux_sym_comparison_operator_token32, + aux_sym_comparison_operator_token33, + aux_sym_comparison_operator_token35, + aux_sym_comparison_operator_token36, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token38, + aux_sym_comparison_operator_token39, + aux_sym_comparison_operator_token40, + aux_sym_comparison_operator_token41, + aux_sym_comparison_operator_token42, + aux_sym_comparison_operator_token43, + aux_sym_comparison_operator_token44, + aux_sym_comparison_operator_token45, + aux_sym_comparison_operator_token46, + aux_sym_comparison_operator_token47, + aux_sym_comparison_operator_token48, + aux_sym_comparison_operator_token49, + aux_sym_comparison_operator_token50, + [9658] = 27, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1127), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1133), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1135), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(165), 1, - sym_unary_expression, - STATE(226), 1, + STATE(79), 1, sym_type_literal, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(169), 1, + sym_array_literal_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(438), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1131), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1129), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1052), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80558,77 +81702,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19457] = 26, - ACTIONS(81), 1, + [9770] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(861), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(863), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(875), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(881), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(883), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(885), 1, anon_sym_AT_LBRACE, - ACTIONS(1127), 1, + ACTIONS(1895), 1, sym_real_literal, - ACTIONS(1133), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1135), 1, - anon_sym_DASH_DASH, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(166), 1, - sym_unary_expression, - STATE(226), 1, - sym_type_literal, - STATE(963), 1, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + sym_path_command_name_token, + STATE(697), 1, + sym_variable, + STATE(712), 1, + sym_command_name_expr, + STATE(721), 1, + aux_sym_path_command_name_repeat1, + STATE(755), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + ACTIONS(857), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(865), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1131), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(935), 2, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1107), 5, + STATE(1054), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1899), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1129), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1052), 16, + ACTIONS(1131), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(879), 16, sym__literal, sym_integer_literal, sym_string_literal, - sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -80641,77 +81781,74 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19566] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, - ACTIONS(81), 1, + sym_type_literal, + [9872] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(933), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(935), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(947), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(955), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(957), 1, anon_sym_AT_LBRACE, - ACTIONS(501), 1, + ACTIONS(1903), 1, sym_real_literal, - ACTIONS(503), 1, + ACTIONS(1905), 1, anon_sym_LBRACK, - ACTIONS(509), 1, - anon_sym_PLUS_PLUS, - ACTIONS(511), 1, - anon_sym_DASH_DASH, - STATE(78), 1, - sym_type_literal, - STATE(124), 1, - sym_unary_expression, - STATE(132), 1, - sym_expression_with_unary_operator, - STATE(147), 1, + ACTIONS(1911), 1, + sym_path_command_name_token, + STATE(698), 1, + sym_variable, + STATE(728), 1, + aux_sym_path_command_name_repeat1, + STATE(733), 1, + sym_command_name_expr, + STATE(876), 1, sym_invokation_foreach_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(929), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(937), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(507), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(138), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(101), 5, + STATE(1099), 2, + sym_command_name, + sym_path_command_name, + ACTIONS(1907), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(505), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(292), 16, + ACTIONS(1909), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + STATE(903), 16, sym__literal, sym_integer_literal, sym_string_literal, - sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -80724,73 +81861,74 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19675] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + sym_type_literal, + [9974] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(959), 1, + sym_decimal_integer_literal, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1915), 1, + sym_real_literal, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1933), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1935), 1, + anon_sym_DASH_DASH, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(501), 1, - sym_real_literal, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(509), 1, - anon_sym_PLUS_PLUS, - ACTIONS(511), 1, - anon_sym_DASH_DASH, - STATE(78), 1, + STATE(211), 1, sym_type_literal, - STATE(125), 1, + STATE(826), 1, sym_unary_expression, - STATE(132), 1, - sym_expression_with_unary_operator, - STATE(147), 1, + STATE(841), 1, sym_invokation_foreach_expression, - ACTIONS(21), 2, + STATE(870), 1, + sym_expression_with_unary_operator, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(507), 2, + ACTIONS(999), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + ACTIONS(1921), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(823), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(505), 6, + ACTIONS(1925), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(292), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80807,73 +81945,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19784] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [10083] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(501), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(503), 1, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(509), 1, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(511), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(78), 1, - sym_type_literal, - STATE(126), 1, + STATE(164), 1, sym_unary_expression, - STATE(132), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(147), 1, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(507), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(505), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(292), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80890,73 +82028,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [19893] = 26, + [10192] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, + ACTIONS(1149), 1, sym_real_literal, - ACTIONS(125), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(1171), 1, anon_sym_PLUS_PLUS, - ACTIONS(147), 1, + ACTIONS(1173), 1, anon_sym_DASH_DASH, - ACTIONS(149), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(4), 1, - sym_type_literal, - STATE(115), 1, - sym_invokation_foreach_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(165), 1, + STATE(173), 1, sym_unary_expression, - ACTIONS(129), 2, + STATE(245), 1, + sym_type_literal, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(143), 2, + ACTIONS(1169), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(1159), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + STATE(1031), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -80973,73 +82111,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20002] = 26, + [10301] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(125), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(145), 1, + ACTIONS(1963), 1, anon_sym_PLUS_PLUS, - ACTIONS(147), 1, + ACTIONS(1965), 1, anon_sym_DASH_DASH, - ACTIONS(149), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, - STATE(4), 1, + STATE(205), 1, sym_type_literal, - STATE(115), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(166), 1, + STATE(1014), 1, sym_unary_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + STATE(1022), 1, + sym_expression_with_unary_operator, + ACTIONS(901), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(143), 2, + ACTIONS(917), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + ACTIONS(1951), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(1023), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(1955), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81056,73 +82194,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20111] = 26, + [10410] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(479), 1, - sym_real_literal, - ACTIONS(481), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(487), 1, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(489), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(76), 1, + STATE(82), 1, sym_type_literal, - STATE(99), 1, + STATE(138), 1, + sym_invokation_foreach_expression, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(101), 1, + STATE(173), 1, sym_unary_expression, - STATE(115), 1, - sym_invokation_foreach_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(485), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(483), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(291), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81139,56 +82277,56 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20220] = 26, + [10519] = 26, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, sym_decimal_integer_literal, ACTIONS(121), 1, sym_hexadecimal_integer_literal, + ACTIONS(123), 1, + sym_real_literal, ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, + ACTIONS(131), 1, + anon_sym_LBRACK, ACTIONS(139), 1, anon_sym_LPAREN, ACTIONS(141), 1, anon_sym_LBRACE, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(151), 1, anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(479), 1, - sym_real_literal, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(487), 1, - anon_sym_PLUS_PLUS, - ACTIONS(489), 1, - anon_sym_DASH_DASH, - STATE(76), 1, + STATE(4), 1, sym_type_literal, - STATE(99), 1, - sym_expression_with_unary_operator, - STATE(103), 1, - sym_unary_expression, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, + STATE(164), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(485), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -81198,14 +82336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(483), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(291), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81222,7 +82360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20329] = 26, + [10628] = 26, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -81243,35 +82381,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(479), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(481), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(487), 1, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(489), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(76), 1, + STATE(79), 1, sym_type_literal, - STATE(99), 1, - sym_expression_with_unary_operator, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(121), 1, + STATE(164), 1, sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(485), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -81281,14 +82419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(483), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(291), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81305,73 +82443,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20438] = 26, + [10737] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1081), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1087), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1089), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(224), 1, + STATE(79), 1, sym_type_literal, - STATE(1005), 1, - sym_expression_with_unary_operator, - STATE(1011), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1029), 1, + STATE(159), 1, sym_unary_expression, - ACTIONS(1055), 2, + STATE(170), 1, + sym_expression_with_unary_operator, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1085), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1083), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1017), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81388,73 +82526,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20547] = 26, + [10846] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1081), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(1087), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(1089), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(224), 1, + STATE(79), 1, sym_type_literal, - STATE(1005), 1, - sym_expression_with_unary_operator, - STATE(1011), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1032), 1, + STATE(168), 1, sym_unary_expression, - ACTIONS(1055), 2, + STATE(170), 1, + sym_expression_with_unary_operator, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1085), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1083), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1017), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81471,73 +82609,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20656] = 26, + [10955] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1945), 1, + sym_real_literal, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1963), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1965), 1, + anon_sym_DASH_DASH, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, - ACTIONS(1081), 1, - sym_real_literal, - ACTIONS(1087), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1089), 1, - anon_sym_DASH_DASH, - STATE(224), 1, + STATE(205), 1, sym_type_literal, - STATE(1005), 1, - sym_expression_with_unary_operator, - STATE(1011), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1033), 1, + STATE(1022), 1, + sym_expression_with_unary_operator, + STATE(1027), 1, sym_unary_expression, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(901), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1085), 2, + ACTIONS(917), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + ACTIONS(1951), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(1023), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1083), 6, + ACTIONS(1955), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1017), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81554,73 +82692,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20765] = 26, + [11064] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, + ACTIONS(1963), 1, anon_sym_PLUS_PLUS, - ACTIONS(1901), 1, + ACTIONS(1965), 1, anon_sym_DASH_DASH, - ACTIONS(1903), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, - STATE(217), 1, + STATE(205), 1, sym_type_literal, - STATE(847), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1077), 1, - sym_unary_expression, - STATE(1078), 1, + STATE(1022), 1, sym_expression_with_unary_operator, - ACTIONS(997), 2, + STATE(1028), 1, + sym_unary_expression, + ACTIONS(901), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1029), 2, + ACTIONS(917), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, + ACTIONS(1951), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(1023), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1891), 6, + ACTIONS(1955), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81637,73 +82775,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20874] = 26, + [11173] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1095), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(1097), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1117), 1, + ACTIONS(1963), 1, anon_sym_PLUS_PLUS, - ACTIONS(1119), 1, + ACTIONS(1965), 1, anon_sym_DASH_DASH, - ACTIONS(1121), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, - STATE(225), 1, + STATE(205), 1, sym_type_literal, - STATE(949), 1, - sym_expression_with_unary_operator, - STATE(963), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(976), 1, + STATE(1022), 1, + sym_expression_with_unary_operator, + STATE(1029), 1, sym_unary_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(901), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1115), 2, + ACTIONS(917), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + ACTIONS(1951), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(1023), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1105), 6, + ACTIONS(1955), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1018), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81720,73 +82858,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [20983] = 26, + [11282] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1095), 1, + ACTIONS(123), 1, sym_real_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1117), 1, + ACTIONS(145), 1, anon_sym_PLUS_PLUS, - ACTIONS(1119), 1, + ACTIONS(147), 1, anon_sym_DASH_DASH, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(225), 1, + STATE(4), 1, sym_type_literal, - STATE(949), 1, - sym_expression_with_unary_operator, - STATE(957), 1, - sym_unary_expression, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(159), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1115), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1105), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1018), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81803,73 +82941,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21092] = 26, + [11391] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1095), 1, + ACTIONS(123), 1, sym_real_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1117), 1, + ACTIONS(145), 1, anon_sym_PLUS_PLUS, - ACTIONS(1119), 1, + ACTIONS(147), 1, anon_sym_DASH_DASH, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(225), 1, + STATE(4), 1, sym_type_literal, - STATE(949), 1, - sym_expression_with_unary_operator, - STATE(958), 1, - sym_unary_expression, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(168), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1115), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1105), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1018), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81886,73 +83024,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21201] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [11500] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(3), 1, - sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(172), 1, + ACTIONS(1704), 1, + sym_real_literal, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1716), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1718), 1, + anon_sym_DASH_DASH, + STATE(159), 1, sym_unary_expression, - STATE(178), 1, + STATE(170), 1, sym_expression_with_unary_operator, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1714), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -81969,7 +83107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21310] = 26, + [11609] = 26, ACTIONS(81), 1, sym_comment, ACTIONS(119), 1, @@ -81990,35 +83128,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(497), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(79), 1, sym_type_literal, - STATE(115), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(170), 1, + STATE(166), 1, sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -82028,14 +83166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82052,73 +83190,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21419] = 26, + [11718] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, + ACTIONS(1975), 1, sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1929), 1, + ACTIONS(1993), 1, anon_sym_PLUS_PLUS, - ACTIONS(1931), 1, + ACTIONS(1995), 1, anon_sym_DASH_DASH, - ACTIONS(1933), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - STATE(212), 1, + STATE(206), 1, sym_type_literal, - STATE(868), 1, + STATE(755), 1, sym_invokation_foreach_expression, - STATE(1073), 1, + STATE(1013), 1, sym_unary_expression, - STATE(1081), 1, + STATE(1021), 1, sym_expression_with_unary_operator, - ACTIONS(959), 2, + ACTIONS(871), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1013), 2, + ACTIONS(923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(1981), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(1024), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1921), 6, + ACTIONS(1985), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82135,73 +83273,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21528] = 26, + [11827] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(123), 1, + sym_real_literal, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(145), 1, + anon_sym_PLUS_PLUS, + ACTIONS(147), 1, + anon_sym_DASH_DASH, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, - sym_real_literal, - ACTIONS(1857), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1859), 1, - anon_sym_DASH_DASH, - STATE(172), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(557), 1, + STATE(4), 1, sym_type_literal, - STATE(1011), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + STATE(166), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1855), 2, + ACTIONS(143), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1853), 6, + ACTIONS(133), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1326), 16, + STATE(155), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82218,73 +83356,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21637] = 26, + [11936] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1975), 1, + sym_real_literal, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1993), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1995), 1, + anon_sym_DASH_DASH, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, - sym_real_literal, - ACTIONS(1857), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1859), 1, - anon_sym_DASH_DASH, - STATE(177), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(557), 1, + STATE(206), 1, sym_type_literal, - STATE(1011), 1, + STATE(755), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + STATE(1021), 1, + sym_expression_with_unary_operator, + STATE(1032), 1, + sym_unary_expression, + ACTIONS(871), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1855), 2, + ACTIONS(923), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(1024), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1853), 6, + ACTIONS(1985), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1326), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82301,73 +83439,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21746] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [12045] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(857), 1, + sym_decimal_integer_literal, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1975), 1, + sym_real_literal, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1993), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1995), 1, + anon_sym_DASH_DASH, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - ACTIONS(155), 1, - sym_real_literal, - ACTIONS(161), 1, - anon_sym_PLUS_PLUS, - ACTIONS(163), 1, - anon_sym_DASH_DASH, - STATE(5), 1, + STATE(206), 1, sym_type_literal, - STATE(126), 1, - sym_unary_expression, - STATE(132), 1, - sym_expression_with_unary_operator, - STATE(147), 1, + STATE(755), 1, sym_invokation_foreach_expression, - ACTIONS(21), 2, + STATE(1021), 1, + sym_expression_with_unary_operator, + STATE(1033), 1, + sym_unary_expression, + ACTIONS(871), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(91), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(159), 2, + ACTIONS(923), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(1024), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(157), 6, + ACTIONS(1985), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(150), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82384,156 +83522,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [21855] = 26, + [12154] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, + ACTIONS(1817), 1, sym_real_literal, - ACTIONS(1857), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, anon_sym_PLUS_PLUS, - ACTIONS(1859), 1, + ACTIONS(1827), 1, anon_sym_DASH_DASH, - STATE(173), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - STATE(557), 1, + STATE(548), 1, sym_type_literal, - STATE(1011), 1, + STATE(972), 1, + sym_expression_with_unary_operator, + STATE(978), 1, + sym_unary_expression, + STATE(1005), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1855), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(176), 3, - sym_pre_increment_expression, - sym_pre_decrement_expression, - sym_cast_expression, - ACTIONS(1061), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(1853), 6, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_COMMA, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - STATE(1326), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - [21964] = 26, - ACTIONS(81), 1, - sym_comment, - ACTIONS(845), 1, - sym_decimal_integer_literal, - ACTIONS(1939), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, - sym_real_literal, - ACTIONS(1943), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1955), 1, - anon_sym_LPAREN, - ACTIONS(1957), 1, - anon_sym_LBRACE, - ACTIONS(1959), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1961), 1, - anon_sym_DASH_DASH, - ACTIONS(1963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, - anon_sym_AT_LPAREN, - ACTIONS(1967), 1, - anon_sym_AT_LBRACE, - STATE(199), 1, - sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(1053), 1, - sym_expression_with_unary_operator, - STATE(1069), 1, - sym_unary_expression, - ACTIONS(857), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(859), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1951), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(1273), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82550,73 +83605,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22073] = 26, + [12263] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1829), 1, + ACTIONS(1817), 1, sym_real_literal, - ACTIONS(1831), 1, + ACTIONS(1819), 1, anon_sym_LBRACK, - ACTIONS(1837), 1, + ACTIONS(1825), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, + ACTIONS(1827), 1, anon_sym_DASH_DASH, - STATE(554), 1, + STATE(548), 1, sym_type_literal, - STATE(1005), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(1011), 1, - sym_invokation_foreach_expression, - STATE(1029), 1, + STATE(979), 1, sym_unary_expression, - ACTIONS(1055), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1301), 16, + STATE(1273), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82633,73 +83688,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22182] = 26, + [12372] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1829), 1, + ACTIONS(1817), 1, sym_real_literal, - ACTIONS(1831), 1, + ACTIONS(1819), 1, anon_sym_LBRACK, - ACTIONS(1837), 1, + ACTIONS(1825), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, + ACTIONS(1827), 1, anon_sym_DASH_DASH, - STATE(554), 1, + STATE(548), 1, sym_type_literal, - STATE(1005), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(1011), 1, - sym_invokation_foreach_expression, - STATE(1032), 1, + STATE(980), 1, sym_unary_expression, - ACTIONS(1055), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1301), 16, + STATE(1273), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82716,73 +83771,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22291] = 26, + [12481] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1829), 1, + ACTIONS(1704), 1, sym_real_literal, - ACTIONS(1831), 1, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(1837), 1, + ACTIONS(1716), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, + ACTIONS(1718), 1, anon_sym_DASH_DASH, - STATE(554), 1, - sym_type_literal, - STATE(1005), 1, + STATE(168), 1, + sym_unary_expression, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(1011), 1, + STATE(550), 1, + sym_type_literal, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1033), 1, - sym_unary_expression, - ACTIONS(1055), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(1714), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(1710), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1301), 16, + STATE(1290), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82799,73 +83854,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22400] = 26, + [12590] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, + ACTIONS(1975), 1, sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1929), 1, + ACTIONS(1993), 1, anon_sym_PLUS_PLUS, - ACTIONS(1931), 1, + ACTIONS(1995), 1, anon_sym_DASH_DASH, - ACTIONS(1933), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - STATE(212), 1, + STATE(206), 1, sym_type_literal, - STATE(868), 1, + STATE(755), 1, sym_invokation_foreach_expression, - STATE(1081), 1, + STATE(1021), 1, sym_expression_with_unary_operator, - STATE(1090), 1, + STATE(1025), 1, sym_unary_expression, - ACTIONS(959), 2, + ACTIONS(871), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1013), 2, + ACTIONS(923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(1981), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(1024), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1921), 6, + ACTIONS(1985), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82882,73 +83937,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22509] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [12699] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1829), 1, + sym_real_literal, + ACTIONS(1835), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1837), 1, + anon_sym_DASH_DASH, + STATE(549), 1, sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(174), 1, - sym_unary_expression, - STATE(178), 1, + STATE(933), 1, sym_expression_with_unary_operator, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(937), 1, + sym_unary_expression, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1833), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(1256), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -82965,73 +84020,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22618] = 26, + [12808] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, - sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1991), 1, - anon_sym_DASH_DASH, - ACTIONS(1993), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(204), 1, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1829), 1, + sym_real_literal, + ACTIONS(1835), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1837), 1, + anon_sym_DASH_DASH, + STATE(549), 1, sym_type_literal, - STATE(759), 1, - sym_invokation_foreach_expression, - STATE(1046), 1, - sym_unary_expression, - STATE(1050), 1, + STATE(933), 1, sym_expression_with_unary_operator, - ACTIONS(909), 2, + STATE(938), 1, + sym_unary_expression, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(927), 2, + ACTIONS(1833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1981), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(1256), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83048,73 +84103,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22727] = 26, + [12917] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(1841), 1, + ACTIONS(1829), 1, sym_real_literal, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(1837), 1, anon_sym_DASH_DASH, - STATE(555), 1, + STATE(549), 1, sym_type_literal, - STATE(949), 1, + STATE(933), 1, sym_expression_with_unary_operator, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(976), 1, + STATE(939), 1, sym_unary_expression, - ACTIONS(1101), 2, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(1833), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1290), 16, + STATE(1256), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83131,73 +84186,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22836] = 26, + [13026] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1991), 1, - anon_sym_DASH_DASH, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, + ACTIONS(2005), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2007), 1, + anon_sym_DASH_DASH, STATE(204), 1, sym_type_literal, - STATE(759), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1050), 1, - sym_expression_with_unary_operator, - STATE(1059), 1, + STATE(802), 1, sym_unary_expression, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(927), 2, + STATE(809), 1, + sym_expression_with_unary_operator, + ACTIONS(899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(901), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1951), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(801), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1981), 6, + ACTIONS(2003), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83214,73 +84269,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [22945] = 26, + [13135] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1991), 1, - anon_sym_DASH_DASH, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, + ACTIONS(2005), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2007), 1, + anon_sym_DASH_DASH, STATE(204), 1, sym_type_literal, - STATE(759), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1050), 1, - sym_expression_with_unary_operator, - STATE(1061), 1, + STATE(804), 1, sym_unary_expression, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(927), 2, + STATE(809), 1, + sym_expression_with_unary_operator, + ACTIONS(899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(901), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1951), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(801), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1981), 6, + ACTIONS(2003), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83297,73 +84352,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23054] = 26, + [13244] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, + ACTIONS(1945), 1, sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1991), 1, - anon_sym_DASH_DASH, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, + ACTIONS(2005), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2007), 1, + anon_sym_DASH_DASH, STATE(204), 1, sym_type_literal, - STATE(759), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1050), 1, - sym_expression_with_unary_operator, - STATE(1062), 1, + STATE(805), 1, sym_unary_expression, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(927), 2, + STATE(809), 1, + sym_expression_with_unary_operator, + ACTIONS(899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(901), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1951), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(801), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1981), 6, + ACTIONS(2003), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(759), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83380,73 +84435,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23163] = 26, + [13353] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(1975), 1, + sym_real_literal, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - sym_real_literal, - ACTIONS(497), 1, + ACTIONS(2011), 1, anon_sym_PLUS_PLUS, - ACTIONS(499), 1, + ACTIONS(2013), 1, anon_sym_DASH_DASH, - STATE(77), 1, + STATE(203), 1, sym_type_literal, - STATE(115), 1, + STATE(755), 1, sym_invokation_foreach_expression, - STATE(163), 1, + STATE(779), 1, sym_expression_with_unary_operator, - STATE(396), 1, + STATE(811), 1, sym_unary_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(495), 2, + ACTIONS(869), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + ACTIONS(871), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(810), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(493), 6, + ACTIONS(2009), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(293), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83463,73 +84518,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23272] = 26, + [13462] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1975), 1, + sym_real_literal, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1841), 1, - sym_real_literal, - ACTIONS(1847), 1, + ACTIONS(2011), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(2013), 1, anon_sym_DASH_DASH, - STATE(555), 1, + STATE(203), 1, sym_type_literal, - STATE(949), 1, + STATE(755), 1, + sym_invokation_foreach_expression, + STATE(779), 1, sym_expression_with_unary_operator, - STATE(957), 1, + STATE(813), 1, sym_unary_expression, - STATE(963), 1, - sym_invokation_foreach_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(869), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + ACTIONS(871), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(810), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(2009), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1290), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83546,73 +84601,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23381] = 26, + [13571] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1975), 1, + sym_real_literal, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1983), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1841), 1, - sym_real_literal, - ACTIONS(1847), 1, + ACTIONS(2011), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(2013), 1, anon_sym_DASH_DASH, - STATE(555), 1, + STATE(203), 1, sym_type_literal, - STATE(949), 1, + STATE(755), 1, + sym_invokation_foreach_expression, + STATE(779), 1, sym_expression_with_unary_operator, - STATE(958), 1, + STATE(814), 1, sym_unary_expression, - STATE(963), 1, - sym_invokation_foreach_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(869), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + ACTIONS(871), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(810), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(2009), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1290), 16, + STATE(754), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83629,73 +84684,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23490] = 26, + [13680] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(2017), 1, + sym_real_literal, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(2035), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2037), 1, + anon_sym_DASH_DASH, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(1999), 1, - sym_real_literal, - ACTIONS(2003), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2005), 1, - anon_sym_DASH_DASH, - STATE(203), 1, + STATE(210), 1, sym_type_literal, - STATE(759), 1, - sym_invokation_foreach_expression, - STATE(1046), 1, + STATE(844), 1, sym_unary_expression, - STATE(1050), 1, + STATE(869), 1, sym_expression_with_unary_operator, - ACTIONS(907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(909), 2, + STATE(876), 1, + sym_invokation_foreach_expression, + ACTIONS(943), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1977), 2, + ACTIONS(993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(839), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2001), 6, + ACTIONS(2027), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(919), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83712,73 +84767,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23599] = 26, + [13789] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(2017), 1, + sym_real_literal, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(2035), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2037), 1, + anon_sym_DASH_DASH, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(2007), 1, - sym_real_literal, - ACTIONS(2011), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2013), 1, - anon_sym_DASH_DASH, - STATE(211), 1, + STATE(210), 1, sym_type_literal, - STATE(847), 1, - sym_invokation_foreach_expression, - STATE(1077), 1, + STATE(860), 1, sym_unary_expression, - STATE(1078), 1, + STATE(869), 1, sym_expression_with_unary_operator, - ACTIONS(995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(997), 2, + STATE(876), 1, + sym_invokation_foreach_expression, + ACTIONS(943), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1887), 2, + ACTIONS(993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(839), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2009), 6, + ACTIONS(2027), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(928), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83795,73 +84850,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23708] = 26, + [13898] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1913), 1, + ACTIONS(2017), 1, + sym_real_literal, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(2035), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2037), 1, + anon_sym_DASH_DASH, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(2015), 1, - sym_real_literal, - ACTIONS(2019), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2021), 1, - anon_sym_DASH_DASH, STATE(210), 1, sym_type_literal, - STATE(868), 1, - sym_invokation_foreach_expression, - STATE(1073), 1, + STATE(862), 1, sym_unary_expression, - STATE(1081), 1, + STATE(869), 1, sym_expression_with_unary_operator, - ACTIONS(959), 2, + STATE(876), 1, + sym_invokation_foreach_expression, + ACTIONS(943), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(977), 2, + ACTIONS(993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(839), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2017), 6, + ACTIONS(2027), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(929), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83878,73 +84933,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23817] = 26, + [14007] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, - sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(2025), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2027), 1, - anon_sym_DASH_DASH, - STATE(206), 1, + STATE(3), 1, sym_type_literal, - STATE(766), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(819), 1, - sym_unary_expression, - STATE(836), 1, + STATE(172), 1, sym_expression_with_unary_operator, - ACTIONS(859), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(939), 2, + STATE(177), 1, + sym_unary_expression, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(816), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2023), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -83961,73 +85016,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [23926] = 26, + [14116] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, + ACTIONS(1915), 1, sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1933), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1935), 1, + anon_sym_DASH_DASH, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2025), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2027), 1, - anon_sym_DASH_DASH, - STATE(206), 1, + STATE(211), 1, sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, STATE(824), 1, sym_unary_expression, - STATE(836), 1, + STATE(841), 1, + sym_invokation_foreach_expression, + STATE(870), 1, sym_expression_with_unary_operator, - ACTIONS(859), 2, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(939), 2, + ACTIONS(999), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(816), 3, + STATE(823), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2023), 6, + ACTIONS(1925), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84044,73 +85099,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24035] = 26, + [14225] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, + ACTIONS(1915), 1, sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1933), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1935), 1, + anon_sym_DASH_DASH, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2025), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2027), 1, - anon_sym_DASH_DASH, - STATE(206), 1, + STATE(211), 1, sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(827), 1, + STATE(825), 1, sym_unary_expression, - STATE(836), 1, + STATE(841), 1, + sym_invokation_foreach_expression, + STATE(870), 1, sym_expression_with_unary_operator, - ACTIONS(859), 2, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(939), 2, + ACTIONS(999), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(816), 3, + STATE(823), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2023), 6, + ACTIONS(1925), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84127,73 +85182,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24144] = 26, + [14334] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(123), 1, - sym_real_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_PLUS_PLUS, - ACTIONS(147), 1, - anon_sym_DASH_DASH, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(4), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, + anon_sym_PLUS_PLUS, + ACTIONS(589), 1, + anon_sym_DASH_DASH, + STATE(82), 1, sym_type_literal, - STATE(115), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(170), 1, + STATE(177), 1, sym_unary_expression, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(143), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(585), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(133), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(156), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84210,73 +85265,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24253] = 26, + [14443] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, - sym_decimal_integer_literal, - ACTIONS(1939), 1, - sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, - sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(83), 1, + sym_hexadecimal_integer_literal, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1961), 1, - anon_sym_DASH_DASH, - ACTIONS(1963), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(199), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, + anon_sym_PLUS_PLUS, + ACTIONS(589), 1, + anon_sym_DASH_DASH, + STATE(82), 1, sym_type_literal, - STATE(766), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(1053), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(1056), 1, + STATE(176), 1, sym_unary_expression, - ACTIONS(857), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(859), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1947), 2, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + ACTIONS(585), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1951), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84293,73 +85348,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24362] = 26, + [14552] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, - sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, - sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(2031), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(581), 1, + sym_real_literal, + ACTIONS(587), 1, anon_sym_PLUS_PLUS, - ACTIONS(2033), 1, + ACTIONS(589), 1, anon_sym_DASH_DASH, - STATE(205), 1, + STATE(82), 1, sym_type_literal, - STATE(759), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(771), 1, - sym_unary_expression, - STATE(774), 1, + STATE(172), 1, sym_expression_with_unary_operator, - ACTIONS(909), 2, + STATE(174), 1, + sym_unary_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(933), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + ACTIONS(585), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(838), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2029), 6, + ACTIONS(583), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(317), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84376,73 +85431,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24471] = 26, + [14661] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, - sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(2031), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2033), 1, - anon_sym_DASH_DASH, - STATE(205), 1, + STATE(3), 1, sym_type_literal, - STATE(759), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(774), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(808), 1, + STATE(176), 1, sym_unary_expression, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(933), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(838), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2029), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84459,73 +85514,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24580] = 26, + [14770] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, - sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1971), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(1973), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(109), 1, + anon_sym_PLUS_PLUS, + ACTIONS(111), 1, + anon_sym_DASH_DASH, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(2031), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2033), 1, - anon_sym_DASH_DASH, - STATE(205), 1, + STATE(3), 1, sym_type_literal, - STATE(759), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(774), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(814), 1, + STATE(174), 1, sym_unary_expression, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(933), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(838), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2029), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(775), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84542,73 +85597,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24689] = 26, + [14879] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, - sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2037), 1, + ACTIONS(165), 1, + sym_real_literal, + ACTIONS(171), 1, anon_sym_PLUS_PLUS, - ACTIONS(2039), 1, + ACTIONS(173), 1, anon_sym_DASH_DASH, - STATE(218), 1, + STATE(6), 1, sym_type_literal, - STATE(847), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(896), 1, + STATE(109), 1, sym_expression_with_unary_operator, - STATE(898), 1, + STATE(112), 1, sym_unary_expression, - ACTIONS(997), 2, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1035), 2, + ACTIONS(169), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(897), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2035), 6, + ACTIONS(167), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(153), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84625,73 +85680,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24798] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [14988] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, - sym_real_literal, - ACTIONS(87), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(109), 1, - anon_sym_PLUS_PLUS, - ACTIONS(111), 1, - anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + ACTIONS(165), 1, + sym_real_literal, + ACTIONS(171), 1, + anon_sym_PLUS_PLUS, + ACTIONS(173), 1, + anon_sym_DASH_DASH, + STATE(6), 1, sym_type_literal, - STATE(147), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(177), 1, - sym_unary_expression, - STATE(178), 1, + STATE(109), 1, sym_expression_with_unary_operator, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(113), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(169), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(167), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(153), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84708,73 +85763,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [24907] = 26, + [15097] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, + ACTIONS(2017), 1, sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(2037), 1, + ACTIONS(2047), 1, anon_sym_PLUS_PLUS, - ACTIONS(2039), 1, + ACTIONS(2049), 1, anon_sym_DASH_DASH, - STATE(218), 1, + STATE(207), 1, sym_type_literal, - STATE(847), 1, + STATE(876), 1, sym_invokation_foreach_expression, - STATE(896), 1, + STATE(1044), 1, sym_expression_with_unary_operator, - STATE(899), 1, + STATE(1068), 1, sym_unary_expression, - ACTIONS(997), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1035), 2, + ACTIONS(941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, + ACTIONS(943), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(897), 3, + STATE(1067), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2035), 6, + ACTIONS(2045), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84791,73 +85846,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25016] = 26, + [15206] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, + ACTIONS(2017), 1, sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(2037), 1, + ACTIONS(2047), 1, anon_sym_PLUS_PLUS, - ACTIONS(2039), 1, + ACTIONS(2049), 1, anon_sym_DASH_DASH, - STATE(218), 1, + STATE(207), 1, sym_type_literal, - STATE(847), 1, + STATE(876), 1, sym_invokation_foreach_expression, - STATE(896), 1, + STATE(1044), 1, sym_expression_with_unary_operator, - STATE(900), 1, + STATE(1069), 1, sym_unary_expression, - ACTIONS(997), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1035), 2, + ACTIONS(941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, + ACTIONS(943), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(897), 3, + STATE(1067), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2035), 6, + ACTIONS(2045), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84874,73 +85929,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25125] = 26, + [15315] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(2017), 1, + sym_real_literal, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(2025), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(2047), 1, anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, + ACTIONS(2049), 1, anon_sym_DASH_DASH, - STATE(161), 1, - sym_unary_expression, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(559), 1, + STATE(207), 1, sym_type_literal, - STATE(963), 1, + STATE(876), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1546), 2, + STATE(1044), 1, + sym_expression_with_unary_operator, + STATE(1070), 1, + sym_unary_expression, + ACTIONS(941), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + ACTIONS(943), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(2023), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(1067), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1542), 6, + ACTIONS(2045), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -84957,73 +86012,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25234] = 26, + [15424] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, + ACTIONS(1149), 1, sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1171), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1173), 1, + anon_sym_DASH_DASH, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2043), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2045), 1, - anon_sym_DASH_DASH, - STATE(209), 1, - sym_type_literal, - STATE(868), 1, - sym_invokation_foreach_expression, - STATE(902), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(904), 1, + STATE(177), 1, sym_unary_expression, - ACTIONS(957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1917), 2, + STATE(245), 1, + sym_type_literal, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + ACTIONS(1163), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1169), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(903), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2041), 6, + ACTIONS(1159), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(1031), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85040,73 +86095,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25343] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [15533] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1145), 1, + sym_decimal_integer_literal, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(85), 1, + ACTIONS(1149), 1, sym_real_literal, - ACTIONS(87), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(109), 1, + ACTIONS(1171), 1, anon_sym_PLUS_PLUS, - ACTIONS(111), 1, + ACTIONS(1173), 1, anon_sym_DASH_DASH, - ACTIONS(113), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(3), 1, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(176), 1, + sym_unary_expression, + STATE(245), 1, sym_type_literal, - STATE(147), 1, + STATE(1005), 1, sym_invokation_foreach_expression, - STATE(173), 1, - sym_unary_expression, - STATE(178), 1, - sym_expression_with_unary_operator, - ACTIONS(19), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(138), 2, + ACTIONS(1163), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1169), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(99), 6, + ACTIONS(1159), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(155), 16, + STATE(1031), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85123,73 +86178,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25452] = 26, + [15642] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1149), 1, + sym_real_literal, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1157), 1, + anon_sym_LBRACK, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1171), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1173), 1, + anon_sym_DASH_DASH, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1536), 1, - sym_real_literal, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, - anon_sym_DASH_DASH, - STATE(163), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(165), 1, + STATE(174), 1, sym_unary_expression, - STATE(559), 1, + STATE(245), 1, sym_type_literal, - STATE(963), 1, + STATE(1005), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1546), 2, + ACTIONS(1169), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1542), 6, + ACTIONS(1159), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, + STATE(1031), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85206,73 +86261,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25561] = 26, + [15751] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, + ACTIONS(1185), 1, sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1207), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1209), 1, + anon_sym_DASH_DASH, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(2043), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2045), 1, - anon_sym_DASH_DASH, - STATE(209), 1, + STATE(166), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(246), 1, sym_type_literal, - STATE(868), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(902), 1, - sym_expression_with_unary_operator, - STATE(905), 1, - sym_unary_expression, - ACTIONS(957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1917), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1205), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(903), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2041), 6, + ACTIONS(1195), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(1034), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85289,73 +86344,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25670] = 26, + [15860] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, + ACTIONS(1185), 1, sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1207), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1209), 1, + anon_sym_DASH_DASH, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(2043), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2045), 1, - anon_sym_DASH_DASH, - STATE(209), 1, + STATE(164), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(246), 1, sym_type_literal, - STATE(868), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(902), 1, - sym_expression_with_unary_operator, - STATE(906), 1, - sym_unary_expression, - ACTIONS(957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1917), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1205), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(903), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2041), 6, + ACTIONS(1195), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(1034), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85372,73 +86427,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25779] = 26, + [15969] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, + ACTIONS(1185), 1, sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, + ACTIONS(1207), 1, anon_sym_PLUS_PLUS, - ACTIONS(1961), 1, + ACTIONS(1209), 1, anon_sym_DASH_DASH, - ACTIONS(1963), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(199), 1, + STATE(159), 1, + sym_unary_expression, + STATE(170), 1, + sym_expression_with_unary_operator, + STATE(246), 1, sym_type_literal, - STATE(766), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1053), 1, - sym_expression_with_unary_operator, - STATE(1057), 1, - sym_unary_expression, - ACTIONS(857), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(859), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1947), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1205), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1951), 6, + ACTIONS(1195), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(1034), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85455,73 +86510,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25888] = 26, + [16078] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1049), 1, + ACTIONS(1185), 1, sym_real_literal, - ACTIONS(1051), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1207), 1, anon_sym_PLUS_PLUS, - ACTIONS(1073), 1, + ACTIONS(1209), 1, anon_sym_DASH_DASH, - ACTIONS(1075), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - STATE(174), 1, + STATE(168), 1, sym_unary_expression, - STATE(178), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(223), 1, + STATE(246), 1, sym_type_literal, - STATE(1011), 1, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(1055), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1069), 2, + ACTIONS(1205), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1008), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1059), 6, + ACTIONS(1195), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1051), 16, + STATE(1034), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85538,7 +86593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [25997] = 26, + [16187] = 26, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, @@ -85559,35 +86614,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(569), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(577), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(579), 1, anon_sym_DASH_DASH, - STATE(80), 1, + STATE(81), 1, sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(172), 1, + STATE(126), 1, sym_unary_expression, - STATE(178), 1, + STATE(132), 1, sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -85597,14 +86652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(573), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(308), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85621,7 +86676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26106] = 26, + [16296] = 26, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, @@ -85642,35 +86697,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(569), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(577), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(579), 1, anon_sym_DASH_DASH, - STATE(80), 1, + STATE(81), 1, sym_type_literal, - STATE(147), 1, - sym_invokation_foreach_expression, - STATE(177), 1, + STATE(127), 1, sym_unary_expression, - STATE(178), 1, + STATE(132), 1, sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(575), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -85680,14 +86735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(573), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(308), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85704,73 +86759,156 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26215] = 26, + [16405] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, - sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(1536), 1, + ACTIONS(569), 1, sym_real_literal, - ACTIONS(1540), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(577), 1, anon_sym_PLUS_PLUS, - ACTIONS(1550), 1, + ACTIONS(579), 1, anon_sym_DASH_DASH, - STATE(163), 1, - sym_expression_with_unary_operator, - STATE(166), 1, + STATE(81), 1, + sym_type_literal, + STATE(128), 1, sym_unary_expression, - STATE(559), 1, + STATE(132), 1, + sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(575), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + STATE(125), 3, + sym_pre_increment_expression, + sym_pre_decrement_expression, + sym_cast_expression, + ACTIONS(101), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(573), 6, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_COMMA, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + STATE(308), 16, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [16514] = 26, + ACTIONS(81), 1, + sym_comment, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, + sym_hexadecimal_integer_literal, + ACTIONS(125), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(127), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(151), 1, + anon_sym_AT_LPAREN, + ACTIONS(153), 1, + anon_sym_AT_LBRACE, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + sym_real_literal, + ACTIONS(565), 1, + anon_sym_PLUS_PLUS, + ACTIONS(567), 1, + anon_sym_DASH_DASH, + STATE(80), 1, sym_type_literal, - STATE(963), 1, + STATE(104), 1, sym_invokation_foreach_expression, - ACTIONS(1101), 2, + STATE(109), 1, + sym_expression_with_unary_operator, + STATE(111), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1546), 2, + ACTIONS(563), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(157), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1542), 6, + ACTIONS(561), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1331), 16, + STATE(303), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85787,73 +86925,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26324] = 26, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [16623] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(547), 1, + ACTIONS(559), 1, sym_real_literal, - ACTIONS(553), 1, + ACTIONS(565), 1, anon_sym_PLUS_PLUS, - ACTIONS(555), 1, + ACTIONS(567), 1, anon_sym_DASH_DASH, STATE(80), 1, sym_type_literal, - STATE(147), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(173), 1, - sym_unary_expression, - STATE(178), 1, + STATE(109), 1, sym_expression_with_unary_operator, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + STATE(112), 1, + sym_unary_expression, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(551), 2, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(563), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(138), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(176), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(549), 6, + ACTIONS(561), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(294), 16, + STATE(303), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85870,73 +87008,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26433] = 26, + [16732] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2047), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, sym_real_literal, - ACTIONS(2051), 1, + ACTIONS(565), 1, anon_sym_PLUS_PLUS, - ACTIONS(2053), 1, + ACTIONS(567), 1, anon_sym_DASH_DASH, - STATE(202), 1, + STATE(80), 1, sym_type_literal, - STATE(766), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1053), 1, + STATE(109), 1, sym_expression_with_unary_operator, - STATE(1069), 1, + STATE(113), 1, sym_unary_expression, - ACTIONS(859), 2, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(889), 2, + ACTIONS(563), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2049), 6, + ACTIONS(561), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(918), 16, + STATE(303), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -85953,73 +87091,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26542] = 26, + [16841] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2047), 1, + ACTIONS(1219), 1, sym_real_literal, - ACTIONS(2051), 1, + ACTIONS(1225), 1, anon_sym_PLUS_PLUS, - ACTIONS(2053), 1, + ACTIONS(1227), 1, anon_sym_DASH_DASH, - STATE(202), 1, + STATE(248), 1, sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(1053), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(1056), 1, + STATE(978), 1, sym_unary_expression, - ACTIONS(859), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(889), 2, + ACTIONS(1223), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2049), 6, + ACTIONS(1221), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(918), 16, + STATE(1000), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86036,73 +87174,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26651] = 26, + [16950] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2047), 1, + ACTIONS(1219), 1, sym_real_literal, - ACTIONS(2051), 1, + ACTIONS(1225), 1, anon_sym_PLUS_PLUS, - ACTIONS(2053), 1, + ACTIONS(1227), 1, anon_sym_DASH_DASH, - STATE(202), 1, + STATE(248), 1, sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(1053), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(1057), 1, + STATE(979), 1, sym_unary_expression, - ACTIONS(859), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(889), 2, + ACTIONS(1223), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2049), 6, + ACTIONS(1221), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(918), 16, + STATE(1000), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86119,73 +87257,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26760] = 26, + [17059] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2047), 1, + ACTIONS(1219), 1, sym_real_literal, - ACTIONS(2051), 1, + ACTIONS(1225), 1, anon_sym_PLUS_PLUS, - ACTIONS(2053), 1, + ACTIONS(1227), 1, anon_sym_DASH_DASH, - STATE(202), 1, + STATE(248), 1, sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(1053), 1, + STATE(972), 1, sym_expression_with_unary_operator, - STATE(1058), 1, + STATE(980), 1, sym_unary_expression, - ACTIONS(859), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(889), 2, + ACTIONS(1223), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2049), 6, + ACTIONS(1221), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(918), 16, + STATE(1000), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86202,73 +87340,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26869] = 26, + [17168] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(2017), 1, + sym_real_literal, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(2025), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(1999), 1, - sym_real_literal, - ACTIONS(2003), 1, + ACTIONS(2047), 1, anon_sym_PLUS_PLUS, - ACTIONS(2005), 1, + ACTIONS(2049), 1, anon_sym_DASH_DASH, - STATE(203), 1, + STATE(207), 1, sym_type_literal, - STATE(759), 1, + STATE(876), 1, sym_invokation_foreach_expression, - STATE(1050), 1, + STATE(1044), 1, sym_expression_with_unary_operator, - STATE(1059), 1, + STATE(1046), 1, sym_unary_expression, - ACTIONS(907), 2, + ACTIONS(941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(909), 2, + ACTIONS(943), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1977), 2, + ACTIONS(2023), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(1067), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2001), 6, + ACTIONS(2045), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(919), 16, + STATE(875), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86285,73 +87423,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [26978] = 26, + [17277] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1229), 1, sym_real_literal, - ACTIONS(2003), 1, + ACTIONS(1235), 1, anon_sym_PLUS_PLUS, - ACTIONS(2005), 1, + ACTIONS(1237), 1, anon_sym_DASH_DASH, - STATE(203), 1, + STATE(249), 1, sym_type_literal, - STATE(759), 1, - sym_invokation_foreach_expression, - STATE(1050), 1, + STATE(933), 1, sym_expression_with_unary_operator, - STATE(1061), 1, + STATE(937), 1, sym_unary_expression, - ACTIONS(907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1977), 2, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1233), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2001), 6, + ACTIONS(1231), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(919), 16, + STATE(1001), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86368,73 +87506,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27087] = 26, + [17386] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1229), 1, sym_real_literal, - ACTIONS(2003), 1, + ACTIONS(1235), 1, anon_sym_PLUS_PLUS, - ACTIONS(2005), 1, + ACTIONS(1237), 1, anon_sym_DASH_DASH, - STATE(203), 1, + STATE(249), 1, sym_type_literal, - STATE(759), 1, - sym_invokation_foreach_expression, - STATE(1050), 1, + STATE(933), 1, sym_expression_with_unary_operator, - STATE(1062), 1, + STATE(938), 1, sym_unary_expression, - ACTIONS(907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(909), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1977), 2, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1233), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1055), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2001), 6, + ACTIONS(1231), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(919), 16, + STATE(1001), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86451,73 +87589,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27196] = 26, + [17495] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(2007), 1, + ACTIONS(1229), 1, sym_real_literal, - ACTIONS(2011), 1, + ACTIONS(1235), 1, anon_sym_PLUS_PLUS, - ACTIONS(2013), 1, + ACTIONS(1237), 1, anon_sym_DASH_DASH, - STATE(211), 1, + STATE(249), 1, sym_type_literal, - STATE(847), 1, - sym_invokation_foreach_expression, - STATE(1078), 1, + STATE(933), 1, sym_expression_with_unary_operator, - STATE(1084), 1, + STATE(939), 1, sym_unary_expression, - ACTIONS(995), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(997), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1887), 2, + STATE(944), 1, + sym_invokation_foreach_expression, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1233), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2009), 6, + ACTIONS(1231), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(928), 16, + STATE(1001), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86534,73 +87672,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27305] = 26, + [17604] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(1915), 1, + sym_real_literal, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2007), 1, - sym_real_literal, - ACTIONS(2011), 1, + ACTIONS(2053), 1, anon_sym_PLUS_PLUS, - ACTIONS(2013), 1, + ACTIONS(2055), 1, anon_sym_DASH_DASH, - STATE(211), 1, + STATE(208), 1, sym_type_literal, - STATE(847), 1, + STATE(841), 1, sym_invokation_foreach_expression, - STATE(1078), 1, - sym_expression_with_unary_operator, - STATE(1085), 1, + STATE(1037), 1, sym_unary_expression, - ACTIONS(995), 2, + STATE(1064), 1, + sym_expression_with_unary_operator, + ACTIONS(971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(997), 2, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1887), 2, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(1072), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2009), 6, + ACTIONS(2051), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(928), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86617,73 +87755,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27414] = 26, + [17713] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(1915), 1, + sym_real_literal, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2007), 1, - sym_real_literal, - ACTIONS(2011), 1, + ACTIONS(2053), 1, anon_sym_PLUS_PLUS, - ACTIONS(2013), 1, + ACTIONS(2055), 1, anon_sym_DASH_DASH, - STATE(211), 1, + STATE(208), 1, sym_type_literal, - STATE(847), 1, + STATE(841), 1, sym_invokation_foreach_expression, - STATE(1078), 1, - sym_expression_with_unary_operator, - STATE(1086), 1, + STATE(1040), 1, sym_unary_expression, - ACTIONS(995), 2, + STATE(1064), 1, + sym_expression_with_unary_operator, + ACTIONS(971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(997), 2, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1887), 2, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(1072), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2009), 6, + ACTIONS(2051), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(928), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86700,73 +87838,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27523] = 26, + [17822] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, - sym_hexadecimal_integer_literal, ACTIONS(1913), 1, - aux_sym_expandable_string_literal_token1, + sym_hexadecimal_integer_literal, ACTIONS(1915), 1, - aux_sym_expandable_here_string_literal_token1, + sym_real_literal, + ACTIONS(1917), 1, + aux_sym_expandable_string_literal_token1, ACTIONS(1919), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2015), 1, - sym_real_literal, - ACTIONS(2019), 1, + ACTIONS(2053), 1, anon_sym_PLUS_PLUS, - ACTIONS(2021), 1, + ACTIONS(2055), 1, anon_sym_DASH_DASH, - STATE(210), 1, + STATE(208), 1, sym_type_literal, - STATE(868), 1, + STATE(841), 1, sym_invokation_foreach_expression, - STATE(1081), 1, + STATE(1064), 1, sym_expression_with_unary_operator, - STATE(1089), 1, + STATE(1075), 1, sym_unary_expression, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(977), 2, + ACTIONS(971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(973), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(1072), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2017), 6, + ACTIONS(2051), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(929), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86783,73 +87921,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27632] = 26, + [17931] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, - sym_hexadecimal_integer_literal, ACTIONS(1913), 1, - aux_sym_expandable_string_literal_token1, + sym_hexadecimal_integer_literal, ACTIONS(1915), 1, - aux_sym_expandable_here_string_literal_token1, + sym_real_literal, + ACTIONS(1917), 1, + aux_sym_expandable_string_literal_token1, ACTIONS(1919), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(2015), 1, - sym_real_literal, - ACTIONS(2019), 1, + ACTIONS(2053), 1, anon_sym_PLUS_PLUS, - ACTIONS(2021), 1, + ACTIONS(2055), 1, anon_sym_DASH_DASH, - STATE(210), 1, + STATE(208), 1, sym_type_literal, - STATE(868), 1, + STATE(841), 1, sym_invokation_foreach_expression, - STATE(1081), 1, - sym_expression_with_unary_operator, - STATE(1090), 1, + STATE(1055), 1, sym_unary_expression, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(977), 2, + STATE(1064), 1, + sym_expression_with_unary_operator, + ACTIONS(971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, + ACTIONS(973), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1921), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(1072), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2017), 6, + ACTIONS(2051), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(929), 16, + STATE(840), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86866,73 +88004,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27741] = 26, + [18040] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1913), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2015), 1, + ACTIONS(547), 1, sym_real_literal, - ACTIONS(2019), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(555), 1, anon_sym_PLUS_PLUS, - ACTIONS(2021), 1, + ACTIONS(557), 1, anon_sym_DASH_DASH, - STATE(210), 1, + STATE(79), 1, sym_type_literal, - STATE(868), 1, + STATE(104), 1, sym_invokation_foreach_expression, - STATE(1081), 1, + STATE(170), 1, sym_expression_with_unary_operator, - STATE(1091), 1, + STATE(495), 1, sym_unary_expression, - ACTIONS(959), 2, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(977), 2, + ACTIONS(553), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(171), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2017), 6, + ACTIONS(551), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(929), 16, + STATE(306), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -86949,73 +88087,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27850] = 26, + [18149] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, - sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, + ACTIONS(85), 1, sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, + ACTIONS(109), 1, anon_sym_PLUS_PLUS, - ACTIONS(1901), 1, + ACTIONS(111), 1, anon_sym_DASH_DASH, - ACTIONS(1903), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(217), 1, + STATE(3), 1, sym_type_literal, - STATE(847), 1, + STATE(138), 1, sym_invokation_foreach_expression, - STATE(1078), 1, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(1084), 1, + STATE(173), 1, sym_unary_expression, - ACTIONS(997), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1029), 2, + ACTIONS(19), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, + ACTIONS(21), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1891), 6, + ACTIONS(99), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(156), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -87032,73 +88170,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [27959] = 26, + [18258] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, - sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1881), 1, - sym_real_literal, - ACTIONS(1883), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1899), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1901), 1, - anon_sym_DASH_DASH, - ACTIONS(1903), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - STATE(217), 1, + ACTIONS(155), 1, + sym_real_literal, + ACTIONS(161), 1, + anon_sym_PLUS_PLUS, + ACTIONS(163), 1, + anon_sym_DASH_DASH, + STATE(5), 1, sym_type_literal, - STATE(847), 1, - sym_invokation_foreach_expression, - STATE(1078), 1, - sym_expression_with_unary_operator, - STATE(1085), 1, + STATE(126), 1, sym_unary_expression, - ACTIONS(997), 2, + STATE(132), 1, + sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1029), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1887), 2, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(845), 2, + ACTIONS(159), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1082), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1891), 6, + ACTIONS(157), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(846), 16, + STATE(150), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -87115,73 +88253,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [28068] = 26, + [18367] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1941), 1, - sym_real_literal, - ACTIONS(1943), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1961), 1, - anon_sym_DASH_DASH, - ACTIONS(1963), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(199), 1, - sym_type_literal, - STATE(766), 1, - sym_invokation_foreach_expression, - STATE(1053), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + sym_real_literal, + ACTIONS(1845), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1847), 1, + anon_sym_DASH_DASH, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(1058), 1, + STATE(177), 1, sym_unary_expression, - ACTIONS(857), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(859), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1947), 2, + STATE(557), 1, + sym_type_literal, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + ACTIONS(1163), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1843), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1054), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1951), 6, + ACTIONS(1841), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(758), 16, + STATE(1284), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -87198,73 +88336,73 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [28177] = 26, + [18476] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1911), 1, - sym_real_literal, - ACTIONS(1913), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, - anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1929), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1931), 1, - anon_sym_DASH_DASH, - ACTIONS(1933), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - STATE(212), 1, - sym_type_literal, - STATE(868), 1, - sym_invokation_foreach_expression, - STATE(1081), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + sym_real_literal, + ACTIONS(1845), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1847), 1, + anon_sym_DASH_DASH, + STATE(172), 1, sym_expression_with_unary_operator, - STATE(1089), 1, + STATE(176), 1, sym_unary_expression, - ACTIONS(959), 2, + STATE(557), 1, + sym_type_literal, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1013), 2, + ACTIONS(1843), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1917), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1088), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1921), 6, + ACTIONS(1841), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(867), 16, + STATE(1284), 16, sym__literal, sym_integer_literal, sym_string_literal, @@ -87281,159 +88419,173 @@ static const uint16_t ts_small_parse_table[] = { sym_member_access, sym_element_access, sym_invokation_expression, - [28286] = 25, + [18585] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, - anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2025), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + sym_real_literal, + ACTIONS(1845), 1, anon_sym_PLUS_PLUS, - ACTIONS(2027), 1, + ACTIONS(1847), 1, anon_sym_DASH_DASH, - STATE(206), 1, + STATE(172), 1, + sym_expression_with_unary_operator, + STATE(174), 1, + sym_unary_expression, + STATE(557), 1, sym_type_literal, - STATE(747), 1, - sym_member_name, - STATE(812), 1, - sym_string_literal, - ACTIONS(859), 2, + STATE(1005), 1, + sym_invokation_foreach_expression, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(939), 2, + ACTIONS(1843), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1947), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(2055), 2, - sym_real_literal, - sym_simple_name, - STATE(796), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(816), 3, + STATE(178), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2023), 6, + ACTIONS(1841), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(807), 10, + STATE(1284), 16, sym__literal, sym_integer_literal, + sym_string_literal, sym_variable, - sym_expression_with_unary_operator, + sym__primary_expression, sym__value, sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28387] = 25, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [18694] = 26, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(845), 1, - sym_decimal_integer_literal, - ACTIONS(1939), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1943), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1945), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1949), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1955), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1957), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1965), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1967), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(2025), 1, + ACTIONS(155), 1, + sym_real_literal, + ACTIONS(161), 1, anon_sym_PLUS_PLUS, - ACTIONS(2027), 1, + ACTIONS(163), 1, anon_sym_DASH_DASH, - STATE(206), 1, + STATE(5), 1, sym_type_literal, - STATE(755), 1, - sym_member_name, - STATE(812), 1, - sym_string_literal, - ACTIONS(859), 2, + STATE(127), 1, + sym_unary_expression, + STATE(132), 1, + sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1947), 2, + ACTIONS(91), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(2055), 2, - sym_real_literal, - sym_simple_name, - STATE(796), 2, + ACTIONS(159), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(816), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1953), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2023), 6, + ACTIONS(157), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(807), 10, + STATE(150), 16, sym__literal, sym_integer_literal, + sym_string_literal, sym_variable, - sym_expression_with_unary_operator, + sym__primary_expression, sym__value, sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28488] = 25, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [18803] = 26, ACTIONS(5), 1, sym_decimal_integer_literal, ACTIONS(81), 1, @@ -87456,16 +88608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT_LPAREN, ACTIONS(117), 1, anon_sym_AT_LBRACE, + ACTIONS(155), 1, + sym_real_literal, ACTIONS(161), 1, anon_sym_PLUS_PLUS, ACTIONS(163), 1, anon_sym_DASH_DASH, STATE(5), 1, sym_type_literal, - STATE(108), 1, - sym_member_name, - STATE(130), 1, - sym_string_literal, + STATE(128), 1, + sym_unary_expression, + STATE(132), 1, + sym_expression_with_unary_operator, + STATE(138), 1, + sym_invokation_foreach_expression, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, @@ -87475,13 +88631,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2057), 2, - sym_real_literal, - sym_simple_name, - STATE(138), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, @@ -87498,159 +88651,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(129), 10, + STATE(150), 16, sym__literal, sym_integer_literal, + sym_string_literal, sym_variable, - sym_expression_with_unary_operator, + sym__primary_expression, sym__value, sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28589] = 25, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [18912] = 26, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2031), 1, + ACTIONS(165), 1, + sym_real_literal, + ACTIONS(171), 1, anon_sym_PLUS_PLUS, - ACTIONS(2033), 1, + ACTIONS(173), 1, anon_sym_DASH_DASH, - STATE(205), 1, + STATE(6), 1, sym_type_literal, - STATE(750), 1, - sym_member_name, - STATE(810), 1, - sym_string_literal, - ACTIONS(909), 2, + STATE(104), 1, + sym_invokation_foreach_expression, + STATE(109), 1, + sym_expression_with_unary_operator, + STATE(111), 1, + sym_unary_expression, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(933), 2, + ACTIONS(169), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(2059), 2, - sym_real_literal, - sym_simple_name, - STATE(832), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(838), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2029), 6, + ACTIONS(167), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(809), 10, + STATE(153), 16, sym__literal, sym_integer_literal, + sym_string_literal, sym_variable, - sym_expression_with_unary_operator, + sym__primary_expression, sym__value, sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28690] = 25, - ACTIONS(5), 1, - sym_decimal_integer_literal, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + [19021] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(119), 1, + sym_decimal_integer_literal, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, - anon_sym_LBRACK, - ACTIONS(509), 1, + ACTIONS(171), 1, anon_sym_PLUS_PLUS, - ACTIONS(511), 1, + ACTIONS(173), 1, anon_sym_DASH_DASH, - STATE(78), 1, + STATE(6), 1, sym_type_literal, - STATE(91), 1, + STATE(83), 1, sym_member_name, - STATE(130), 1, + STATE(101), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(507), 2, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(169), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2057), 2, sym_real_literal, sym_simple_name, - STATE(138), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(505), 6, + ACTIONS(167), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(129), 10, + STATE(100), 10, sym__literal, sym_integer_literal, sym_variable, @@ -87661,72 +88827,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28791] = 25, + [19122] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(929), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(2015), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(2019), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(2021), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(2025), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(2033), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(2035), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2037), 1, + anon_sym_DASH_DASH, + ACTIONS(2039), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(2041), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(2043), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, - anon_sym_LBRACK, - ACTIONS(487), 1, - anon_sym_PLUS_PLUS, - ACTIONS(489), 1, - anon_sym_DASH_DASH, - STATE(76), 1, + STATE(210), 1, sym_type_literal, - STATE(87), 1, + STATE(787), 1, sym_member_name, - STATE(110), 1, + STATE(830), 1, sym_string_literal, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(943), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(485), 2, + ACTIONS(993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2061), 2, + ACTIONS(2023), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(2059), 2, sym_real_literal, sym_simple_name, - STATE(113), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(839), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(2029), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(483), 6, + ACTIONS(2027), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(109), 10, + STATE(829), 10, sym__literal, sym_integer_literal, sym_variable, @@ -87737,72 +88903,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28892] = 25, + [19223] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2037), 1, + ACTIONS(171), 1, anon_sym_PLUS_PLUS, - ACTIONS(2039), 1, + ACTIONS(173), 1, anon_sym_DASH_DASH, - STATE(218), 1, + STATE(6), 1, sym_type_literal, - STATE(794), 1, + STATE(85), 1, sym_member_name, - STATE(860), 1, + STATE(101), 1, sym_string_literal, - ACTIONS(997), 2, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1035), 2, + ACTIONS(169), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(2063), 2, + ACTIONS(2057), 2, sym_real_literal, sym_simple_name, - STATE(845), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(897), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2035), 6, + ACTIONS(167), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(859), 10, + STATE(100), 10, sym__literal, sym_integer_literal, sym_variable, @@ -87813,72 +88979,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [28993] = 25, + [19324] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1193), 1, + anon_sym_LBRACK, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1847), 1, + ACTIONS(1235), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(1237), 1, anon_sym_DASH_DASH, - STATE(555), 1, + STATE(249), 1, sym_type_literal, - STATE(924), 1, + STATE(907), 1, sym_member_name, - STATE(945), 1, + STATE(926), 1, sym_string_literal, - ACTIONS(1101), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(1233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2065), 2, + ACTIONS(2061), 2, sym_real_literal, sym_simple_name, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(1231), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(944), 10, + STATE(925), 10, sym__literal, sym_integer_literal, sym_variable, @@ -87889,72 +89055,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29094] = 25, + [19425] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1969), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1973), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1975), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1979), 1, + ACTIONS(1157), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1987), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1995), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1997), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(2031), 1, + ACTIONS(1225), 1, anon_sym_PLUS_PLUS, - ACTIONS(2033), 1, + ACTIONS(1227), 1, anon_sym_DASH_DASH, - STATE(205), 1, + STATE(248), 1, sym_type_literal, - STATE(745), 1, + STATE(968), 1, sym_member_name, - STATE(810), 1, + STATE(975), 1, sym_string_literal, - ACTIONS(909), 2, + ACTIONS(1155), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(933), 2, + ACTIONS(1223), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1977), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(2059), 2, + ACTIONS(2063), 2, sym_real_literal, sym_simple_name, - STATE(832), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(838), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1983), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2029), 6, + ACTIONS(1221), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(809), 10, + STATE(998), 10, sym__literal, sym_integer_literal, sym_variable, @@ -87965,72 +89131,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29195] = 25, + [19526] = 25, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, - sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, + ACTIONS(93), 1, anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(1087), 1, + ACTIONS(161), 1, anon_sym_PLUS_PLUS, - ACTIONS(1089), 1, + ACTIONS(163), 1, anon_sym_DASH_DASH, - STATE(224), 1, + STATE(5), 1, sym_type_literal, - STATE(991), 1, + STATE(115), 1, sym_member_name, - STATE(1036), 1, + STATE(143), 1, sym_string_literal, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1085), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2065), 2, sym_real_literal, sym_simple_name, - STATE(1008), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1083), 6, + ACTIONS(157), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1035), 10, + STATE(142), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88041,72 +89207,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29296] = 25, + [19627] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(887), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1943), 1, sym_hexadecimal_integer_literal, - ACTIONS(1913), 1, + ACTIONS(1947), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1949), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1953), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1959), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1961), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1967), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1969), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1971), 1, anon_sym_AT_LBRACE, - ACTIONS(2043), 1, + ACTIONS(2005), 1, anon_sym_PLUS_PLUS, - ACTIONS(2045), 1, + ACTIONS(2007), 1, anon_sym_DASH_DASH, - STATE(209), 1, + STATE(204), 1, sym_type_literal, - STATE(805), 1, + STATE(737), 1, sym_member_name, - STATE(921), 1, + STATE(744), 1, sym_string_literal, - ACTIONS(957), 2, + ACTIONS(899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(959), 2, + ACTIONS(901), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1917), 2, + ACTIONS(1951), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(2069), 2, + ACTIONS(2067), 2, sym_real_literal, sym_simple_name, - STATE(866), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(903), 3, + STATE(801), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1957), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2041), 6, + ACTIONS(2003), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(879), 10, + STATE(783), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88117,72 +89283,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29397] = 25, + [19728] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1057), 1, - anon_sym_LBRACK, - ACTIONS(1065), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, anon_sym_PLUS_PLUS, - ACTIONS(1089), 1, + ACTIONS(1827), 1, anon_sym_DASH_DASH, - STATE(224), 1, + STATE(548), 1, sym_type_literal, - STATE(978), 1, + STATE(968), 1, sym_member_name, - STATE(1036), 1, + STATE(975), 1, sym_string_literal, - ACTIONS(1055), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1085), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2063), 2, sym_real_literal, sym_simple_name, - STATE(1008), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1083), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1035), 10, + STATE(998), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88193,72 +89359,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29498] = 25, + [19829] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(945), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(1909), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(1913), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1915), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1919), 1, + ACTIONS(1193), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(1933), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1935), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(1937), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(2043), 1, + ACTIONS(1235), 1, anon_sym_PLUS_PLUS, - ACTIONS(2045), 1, + ACTIONS(1237), 1, anon_sym_DASH_DASH, - STATE(209), 1, + STATE(249), 1, sym_type_literal, - STATE(772), 1, + STATE(913), 1, sym_member_name, - STATE(921), 1, + STATE(926), 1, sym_string_literal, - ACTIONS(957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(959), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1917), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(2069), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2061), 2, sym_real_literal, sym_simple_name, - STATE(866), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(903), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1923), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2041), 6, + ACTIONS(1231), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(879), 10, + STATE(925), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88269,72 +89435,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29599] = 25, + [19930] = 25, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, - sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(171), 1, + ACTIONS(571), 1, + anon_sym_LBRACK, + ACTIONS(577), 1, anon_sym_PLUS_PLUS, - ACTIONS(173), 1, + ACTIONS(579), 1, anon_sym_DASH_DASH, - STATE(6), 1, + STATE(81), 1, sym_type_literal, - STATE(87), 1, + STATE(117), 1, sym_member_name, - STATE(110), 1, + STATE(143), 1, sym_string_literal, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(169), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2061), 2, + ACTIONS(2065), 2, sym_real_literal, sym_simple_name, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(167), 6, + ACTIONS(573), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(109), 10, + STATE(142), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88345,72 +89511,126 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29700] = 25, + [20031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(605), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(607), 47, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_path_command_name_token, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [20088] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(857), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1973), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1977), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1979), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, + ACTIONS(1983), 1, anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(1989), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - ACTIONS(1117), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1119), 1, - anon_sym_DASH_DASH, - ACTIONS(1121), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1999), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(2001), 1, anon_sym_AT_LBRACE, - STATE(225), 1, + ACTIONS(2011), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2013), 1, + anon_sym_DASH_DASH, + STATE(203), 1, sym_type_literal, - STATE(924), 1, + STATE(739), 1, sym_member_name, - STATE(945), 1, + STATE(773), 1, sym_string_literal, - ACTIONS(1101), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1109), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(1115), 2, + ACTIONS(869), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2065), 2, + ACTIONS(871), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1981), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(2069), 2, sym_real_literal, sym_simple_name, - STATE(935), 2, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(810), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1987), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1105), 6, + ACTIONS(2009), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(944), 10, + STATE(772), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88421,72 +89641,129 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29801] = 25, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [20189] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2076), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(97), 5, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2074), 8, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + sym_path_command_name_token, + ACTIONS(2071), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [20252] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1181), 1, + sym_decimal_integer_literal, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(105), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(503), 1, + ACTIONS(1708), 1, anon_sym_LBRACK, - ACTIONS(509), 1, + ACTIONS(1835), 1, anon_sym_PLUS_PLUS, - ACTIONS(511), 1, + ACTIONS(1837), 1, anon_sym_DASH_DASH, - STATE(78), 1, + STATE(549), 1, sym_type_literal, - STATE(108), 1, + STATE(913), 1, sym_member_name, - STATE(130), 1, + STATE(926), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(507), 2, + ACTIONS(1199), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1833), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2057), 2, + ACTIONS(2061), 2, sym_real_literal, sym_simple_name, - STATE(138), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(505), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(129), 10, + STATE(925), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88497,72 +89774,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [29902] = 25, + [20353] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(1145), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1111), 1, + ACTIONS(1157), 1, + anon_sym_LBRACK, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(1121), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(1540), 1, - anon_sym_LBRACK, - ACTIONS(1847), 1, + ACTIONS(1225), 1, anon_sym_PLUS_PLUS, - ACTIONS(1849), 1, + ACTIONS(1227), 1, anon_sym_DASH_DASH, - STATE(555), 1, + STATE(248), 1, sym_type_literal, - STATE(923), 1, + STATE(964), 1, sym_member_name, - STATE(945), 1, + STATE(975), 1, sym_string_literal, - ACTIONS(1101), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(1163), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1845), 2, + ACTIONS(1223), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2065), 2, + ACTIONS(2063), 2, sym_real_literal, sym_simple_name, - STATE(935), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1843), 6, + ACTIONS(1221), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(944), 10, + STATE(998), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88573,72 +89850,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30003] = 25, + [20454] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1091), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1093), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1097), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1099), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1103), 1, - anon_sym_LBRACK, - ACTIONS(1111), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1117), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1119), 1, - anon_sym_DASH_DASH, - ACTIONS(1121), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1123), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1125), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - STATE(225), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(565), 1, + anon_sym_PLUS_PLUS, + ACTIONS(567), 1, + anon_sym_DASH_DASH, + STATE(80), 1, sym_type_literal, - STATE(923), 1, + STATE(85), 1, sym_member_name, - STATE(945), 1, + STATE(101), 1, sym_string_literal, - ACTIONS(1101), 2, + ACTIONS(129), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(1109), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1115), 2, + ACTIONS(563), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2065), 2, + ACTIONS(2057), 2, sym_real_literal, sym_simple_name, - STATE(935), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(950), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1107), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1105), 6, + ACTIONS(561), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(944), 10, + STATE(100), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88649,72 +89926,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30104] = 25, + [20555] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, + ACTIONS(959), 1, sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(1913), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(1917), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(1919), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(1933), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1935), 1, + anon_sym_DASH_DASH, + ACTIONS(1937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1939), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(1941), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - STATE(554), 1, + STATE(211), 1, sym_type_literal, - STATE(978), 1, + STATE(808), 1, sym_member_name, - STATE(1036), 1, + STATE(857), 1, sym_string_literal, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(973), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(999), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(1921), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(2079), 2, sym_real_literal, sym_simple_name, - STATE(1008), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(823), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(1927), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(1925), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1035), 10, + STATE(856), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88725,72 +90002,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30205] = 25, + [20656] = 25, + ACTIONS(5), 1, + sym_decimal_integer_literal, ACTIONS(81), 1, sym_comment, - ACTIONS(1045), 1, - sym_decimal_integer_literal, - ACTIONS(1047), 1, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(1051), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1053), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1065), 1, + ACTIONS(93), 1, + anon_sym_LBRACK, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(1067), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(1075), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1077), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(1079), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1837), 1, + ACTIONS(161), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, + ACTIONS(163), 1, anon_sym_DASH_DASH, - STATE(554), 1, + STATE(5), 1, sym_type_literal, - STATE(991), 1, + STATE(117), 1, sym_member_name, - STATE(1036), 1, + STATE(143), 1, sym_string_literal, - ACTIONS(1055), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(1063), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1835), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(159), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2067), 2, + ACTIONS(2065), 2, sym_real_literal, sym_simple_name, - STATE(1008), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1006), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1061), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(1833), 6, + ACTIONS(157), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(1035), 10, + STATE(142), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88801,72 +90078,126 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30306] = 25, - ACTIONS(81), 1, + [20757] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(605), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(607), 46, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_path_command_name_token, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [20814] = 25, + ACTIONS(5), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(87), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(89), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(139), 1, + ACTIONS(105), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(115), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(117), 1, anon_sym_AT_LBRACE, - ACTIONS(481), 1, + ACTIONS(571), 1, anon_sym_LBRACK, - ACTIONS(487), 1, + ACTIONS(577), 1, anon_sym_PLUS_PLUS, - ACTIONS(489), 1, + ACTIONS(579), 1, anon_sym_DASH_DASH, - STATE(76), 1, + STATE(81), 1, sym_type_literal, - STATE(86), 1, + STATE(115), 1, sym_member_name, - STATE(110), 1, + STATE(143), 1, sym_string_literal, - ACTIONS(129), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(485), 2, + ACTIONS(91), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2061), 2, + ACTIONS(2065), 2, sym_real_literal, sym_simple_name, - STATE(113), 2, + STATE(131), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(125), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(483), 6, + ACTIONS(573), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(109), 10, + STATE(142), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88877,72 +90208,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30407] = 25, + [20915] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1181), 1, sym_decimal_integer_literal, - ACTIONS(121), 1, + ACTIONS(1183), 1, sym_hexadecimal_integer_literal, - ACTIONS(125), 1, + ACTIONS(1187), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(127), 1, + ACTIONS(1189), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(139), 1, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(141), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - ACTIONS(149), 1, + ACTIONS(1211), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(151), 1, + ACTIONS(1213), 1, anon_sym_AT_LPAREN, - ACTIONS(153), 1, + ACTIONS(1215), 1, anon_sym_AT_LBRACE, - ACTIONS(171), 1, + ACTIONS(1708), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_PLUS_PLUS, - ACTIONS(173), 1, + ACTIONS(1837), 1, anon_sym_DASH_DASH, - STATE(6), 1, + STATE(549), 1, sym_type_literal, - STATE(86), 1, + STATE(907), 1, sym_member_name, - STATE(110), 1, + STATE(926), 1, sym_string_literal, - ACTIONS(129), 2, + ACTIONS(1191), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(137), 2, + ACTIONS(1199), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(169), 2, + ACTIONS(1833), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2061), 2, sym_real_literal, sym_simple_name, - STATE(113), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(100), 3, + STATE(960), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(135), 5, + ACTIONS(1197), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(167), 6, + ACTIONS(1831), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(109), 10, + STATE(925), 10, sym__literal, sym_integer_literal, sym_variable, @@ -88953,72 +90284,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30508] = 25, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [21016] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(1145), 1, + sym_decimal_integer_literal, + ACTIONS(1147), 1, sym_hexadecimal_integer_literal, - ACTIONS(87), 1, + ACTIONS(1151), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(89), 1, + ACTIONS(1153), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(93), 1, - anon_sym_LBRACK, - ACTIONS(105), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - ACTIONS(113), 1, + ACTIONS(1175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(115), 1, + ACTIONS(1177), 1, anon_sym_AT_LPAREN, - ACTIONS(117), 1, + ACTIONS(1179), 1, anon_sym_AT_LBRACE, - ACTIONS(161), 1, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, anon_sym_PLUS_PLUS, - ACTIONS(163), 1, + ACTIONS(1827), 1, anon_sym_DASH_DASH, - STATE(5), 1, + STATE(548), 1, sym_type_literal, - STATE(91), 1, + STATE(964), 1, sym_member_name, - STATE(130), 1, + STATE(975), 1, sym_string_literal, - ACTIONS(21), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(91), 2, + ACTIONS(1155), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - ACTIONS(159), 2, + ACTIONS(1163), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2057), 2, + ACTIONS(2063), 2, sym_real_literal, sym_simple_name, - STATE(138), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(123), 3, + STATE(973), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(101), 5, + ACTIONS(1161), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(157), 6, + ACTIONS(1821), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(129), 10, + STATE(998), 10, sym__literal, sym_integer_literal, sym_variable, @@ -89029,72 +90360,72 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30609] = 25, + [21117] = 25, ACTIONS(81), 1, sym_comment, - ACTIONS(983), 1, + ACTIONS(119), 1, sym_decimal_integer_literal, - ACTIONS(1879), 1, + ACTIONS(121), 1, sym_hexadecimal_integer_literal, - ACTIONS(1883), 1, + ACTIONS(125), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1885), 1, + ACTIONS(127), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(139), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, + ACTIONS(149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1905), 1, + ACTIONS(151), 1, anon_sym_AT_LPAREN, - ACTIONS(1907), 1, + ACTIONS(153), 1, anon_sym_AT_LBRACE, - ACTIONS(2037), 1, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(565), 1, anon_sym_PLUS_PLUS, - ACTIONS(2039), 1, + ACTIONS(567), 1, anon_sym_DASH_DASH, - STATE(218), 1, + STATE(80), 1, sym_type_literal, - STATE(833), 1, + STATE(83), 1, sym_member_name, - STATE(860), 1, + STATE(101), 1, sym_string_literal, - ACTIONS(997), 2, + ACTIONS(129), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(1035), 2, + ACTIONS(563), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - ACTIONS(2063), 2, + ACTIONS(2057), 2, sym_real_literal, sym_simple_name, - STATE(845), 2, + STATE(120), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(897), 3, + STATE(110), 3, sym_pre_increment_expression, sym_pre_decrement_expression, sym_cast_expression, - ACTIONS(1893), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2035), 6, + ACTIONS(561), 6, aux_sym_comparison_operator_token37, aux_sym_comparison_operator_token50, anon_sym_COMMA, aux_sym_expression_with_unary_operator_token1, anon_sym_BANG, aux_sym_expression_with_unary_operator_token2, - STATE(859), 10, + STATE(100), 10, sym__literal, sym_integer_literal, sym_variable, @@ -89105,71 +90436,19 @@ static const uint16_t ts_small_parse_table[] = { sym_array_expression, sym_script_block_expression, sym_hash_literal_expression, - [30710] = 3, + [21218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_SPACE, - ACTIONS(597), 47, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_path_command_name_token, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, + ACTIONS(95), 1, aux_sym_invokation_foreach_expression_token1, - [30766] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(2076), 1, anon_sym_SPACE, - ACTIONS(97), 6, + ACTIONS(97), 5, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, ACTIONS(2074), 8, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -89179,7 +90458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, sym_path_command_name_token, - ACTIONS(2071), 33, + ACTIONS(2071), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -89208,24 +90487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [30826] = 5, + [21281] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, ACTIONS(2076), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(97), 6, + ACTIONS(97), 5, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, ACTIONS(2074), 8, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -89264,143 +90545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [30886] = 3, + [21343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 2, + ACTIONS(605), 3, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(597), 46, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_command_parameter, - anon_sym_PIPE, - sym_path_command_name_token, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [30942] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, - anon_sym_AT_LPAREN, - ACTIONS(1161), 1, - anon_sym_AT_LBRACE, - ACTIONS(2079), 1, - sym_real_literal, - ACTIONS(2081), 1, - anon_sym_LBRACK, - ACTIONS(2085), 1, - aux_sym_command_name_token1, - ACTIONS(2087), 1, - sym_path_command_name_token, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1237), 1, - sym_variable, - STATE(1270), 1, - aux_sym_path_command_name_repeat1, - STATE(1501), 1, - sym_data_command, - STATE(1629), 1, - sym_command_name_expr, - STATE(1861), 1, - sym_data_commands_list, - ACTIONS(1091), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(1680), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2083), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(1305), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [31040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_SPACE, - ACTIONS(597), 46, + ACTIONS(607), 45, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -89437,7 +90593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_path_command_name_token, sym_stop_parsing, @@ -89446,68 +90602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [31095] = 5, + [21399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(605), 2, anon_sym_SPACE, - ACTIONS(97), 6, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - ACTIONS(2074), 8, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_path_command_name_token, - ACTIONS(2071), 32, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [31154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(597), 45, + ACTIONS(607), 46, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -89544,325 +90645,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, sym_command_parameter, - anon_sym_PIPE, - sym_path_command_name_token, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [31209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(97), 6, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2074), 8, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_path_command_name_token, - ACTIONS(2071), 31, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [31268] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, - anon_sym_AT_LPAREN, - ACTIONS(1161), 1, - anon_sym_AT_LBRACE, - ACTIONS(2079), 1, - sym_real_literal, - ACTIONS(2081), 1, - anon_sym_LBRACK, - ACTIONS(2085), 1, - aux_sym_command_name_token1, - ACTIONS(2087), 1, - sym_path_command_name_token, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1237), 1, - sym_variable, - STATE(1270), 1, - aux_sym_path_command_name_repeat1, - STATE(1629), 1, - sym_command_name_expr, - STATE(1663), 1, - sym_data_command, - ACTIONS(1091), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(1680), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2083), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(1305), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [31363] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(987), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(989), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(999), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, - anon_sym_LBRACE, - ACTIONS(1007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1009), 1, - anon_sym_AT_LPAREN, - ACTIONS(1011), 1, - anon_sym_AT_LBRACE, - ACTIONS(2089), 1, - sym_real_literal, - ACTIONS(2091), 1, - anon_sym_LBRACK, - ACTIONS(2093), 1, - anon_sym_SPACE, - ACTIONS(2095), 1, - anon_sym_COLON, - STATE(221), 1, - sym_command_argument_sep, - STATE(325), 1, - aux_sym_command_argument_sep_repeat1, - STATE(847), 1, - sym_invokation_foreach_expression, - STATE(1126), 1, - sym__command_argument, - STATE(1137), 1, - sym_redirected_file_name, - ACTIONS(983), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(991), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(845), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - ACTIONS(997), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(967), 17, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [31455] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(951), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(961), 1, - anon_sym_LPAREN, - ACTIONS(963), 1, - anon_sym_LBRACE, - ACTIONS(969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(971), 1, - anon_sym_AT_LPAREN, - ACTIONS(973), 1, - anon_sym_AT_LBRACE, - ACTIONS(2097), 1, - sym_real_literal, - ACTIONS(2099), 1, - anon_sym_LBRACK, - ACTIONS(2103), 1, - aux_sym_command_name_token1, - ACTIONS(2105), 1, - sym_path_command_name_token, - STATE(720), 1, - sym_variable, - STATE(749), 1, - aux_sym_path_command_name_repeat1, - STATE(785), 1, - sym_command_name_expr, - STATE(868), 1, - sym_invokation_foreach_expression, - ACTIONS(945), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(953), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(866), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(1128), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2101), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(954), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [31547] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1139), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, - anon_sym_AT_LPAREN, - ACTIONS(1161), 1, - anon_sym_AT_LBRACE, - ACTIONS(2081), 1, - anon_sym_LBRACK, - ACTIONS(2107), 1, - sym_real_literal, - ACTIONS(2109), 1, - sym__command_token, - ACTIONS(2111), 1, - anon_sym_RBRACE, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1592), 1, - sym_switch_clause_condition, - STATE(1743), 1, - sym_switch_clauses, - ACTIONS(1091), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(740), 2, - sym_switch_clause, - aux_sym_switch_clauses_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - ACTIONS(1109), 7, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_path_command_name_token, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [21455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2076), 1, + anon_sym_SPACE, + ACTIONS(97), 5, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2074), 8, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -89870,68 +90676,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [31637] = 21, + sym_path_command_name_token, + ACTIONS(2071), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [21517] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1157), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2081), 1, sym_real_literal, - ACTIONS(2109), 1, + ACTIONS(2083), 1, sym__command_token, - ACTIONS(2113), 1, + ACTIONS(2085), 1, anon_sym_RBRACE, - STATE(963), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1592), 1, + STATE(1633), 1, sym_switch_clause_condition, - STATE(2033), 1, + STATE(1784), 1, sym_switch_clauses, - ACTIONS(1091), 2, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(740), 2, + STATE(715), 2, sym_switch_clause, aux_sym_switch_clauses_repeat1, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1109), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -89939,7 +90762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, + STATE(1292), 17, sym__literal, sym_integer_literal, sym_string_literal, @@ -89957,51 +90780,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [31727] = 22, + [21607] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(849), 1, + ACTIONS(891), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(851), 1, + ACTIONS(893), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_LPAREN, - ACTIONS(863), 1, + ACTIONS(905), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(911), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(871), 1, + ACTIONS(913), 1, anon_sym_AT_LPAREN, - ACTIONS(873), 1, + ACTIONS(915), 1, anon_sym_AT_LBRACE, - ACTIONS(2115), 1, - sym_real_literal, - ACTIONS(2117), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2087), 1, + sym_real_literal, + ACTIONS(2089), 1, anon_sym_SPACE, - ACTIONS(2121), 1, + ACTIONS(2091), 1, anon_sym_COLON, - STATE(216), 1, + STATE(212), 1, sym_command_argument_sep, - STATE(313), 1, + STATE(445), 1, aux_sym_command_argument_sep_repeat1, - STATE(766), 1, + STATE(762), 1, sym_invokation_foreach_expression, - STATE(1107), 1, + STATE(888), 1, + sym_parenthesized_expression, + STATE(1062), 1, sym__command_argument, - STATE(1119), 1, + STATE(1063), 1, sym_redirected_file_name, - ACTIONS(845), 2, + ACTIONS(887), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(853), 2, + ACTIONS(895), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(774), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(859), 7, + ACTIONS(901), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90009,14 +90834,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(926), 17, + STATE(887), 16, sym__literal, sym_integer_literal, sym_string_literal, sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90027,51 +90851,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [31819] = 22, + [21701] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(933), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1167), 1, + ACTIONS(935), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1175), 1, + ACTIONS(945), 1, anon_sym_LPAREN, - ACTIONS(1177), 1, + ACTIONS(947), 1, anon_sym_LBRACE, - ACTIONS(1183), 1, + ACTIONS(953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1185), 1, + ACTIONS(955), 1, anon_sym_AT_LPAREN, - ACTIONS(1187), 1, + ACTIONS(957), 1, anon_sym_AT_LBRACE, - ACTIONS(2123), 1, - sym_real_literal, - ACTIONS(2125), 1, + ACTIONS(1905), 1, anon_sym_LBRACK, - ACTIONS(2127), 1, + ACTIONS(2093), 1, + sym_real_literal, + ACTIONS(2095), 1, anon_sym_SPACE, - ACTIONS(2129), 1, + ACTIONS(2097), 1, anon_sym_COLON, - STATE(228), 1, + STATE(219), 1, sym_command_argument_sep, - STATE(412), 1, + STATE(460), 1, aux_sym_command_argument_sep_repeat1, - STATE(1011), 1, + STATE(876), 1, sym_invokation_foreach_expression, - STATE(1155), 1, + STATE(910), 1, + sym_parenthesized_expression, + STATE(1093), 1, sym__command_argument, - STATE(1156), 1, + STATE(1094), 1, sym_redirected_file_name, - ACTIONS(1045), 2, + ACTIONS(929), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1169), 2, + ACTIONS(937), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(1008), 2, + STATE(868), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1063), 7, + ACTIONS(943), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90079,14 +90905,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1075), 17, + STATE(909), 16, sym__literal, sym_integer_literal, sym_string_literal, sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90097,52 +90922,50 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [31911] = 22, + [21795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(899), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(901), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(911), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(913), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(919), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(921), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(923), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(1283), 1, - aux_sym_command_name_token1, - ACTIONS(2131), 1, - sym_real_literal, - ACTIONS(2133), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, - sym_path_command_name_token, - STATE(715), 1, - sym_variable, - STATE(744), 1, - aux_sym_path_command_name_repeat1, - STATE(746), 1, - sym_command_name_expr, - STATE(759), 1, + ACTIONS(2081), 1, + sym_real_literal, + ACTIONS(2083), 1, + sym__command_token, + ACTIONS(2099), 1, + anon_sym_RBRACE, + STATE(944), 1, sym_invokation_foreach_expression, - ACTIONS(895), 2, + STATE(1633), 1, + sym_switch_clause_condition, + STATE(2106), 1, + sym_switch_clauses, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(903), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(715), 2, + sym_switch_clause, + aux_sym_switch_clauses_repeat1, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1105), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2135), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90150,10 +90973,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(925), 16, + STATE(1292), 17, sym__literal, sym_integer_literal, sym_string_literal, + sym_variable, sym__primary_expression, sym__value, sym_parenthesized_expression, @@ -90167,50 +90991,50 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32003] = 21, + [21885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1157), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2081), 1, sym_real_literal, - ACTIONS(2109), 1, + ACTIONS(2083), 1, sym__command_token, - ACTIONS(2139), 1, + ACTIONS(2101), 1, anon_sym_RBRACE, - STATE(963), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1592), 1, + STATE(1633), 1, sym_switch_clause_condition, - STATE(1973), 1, + STATE(1911), 1, sym_switch_clauses, - ACTIONS(1091), 2, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(740), 2, + STATE(715), 2, sym_switch_clause, aux_sym_switch_clauses_repeat1, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1109), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90218,7 +91042,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, + STATE(1292), 17, sym__literal, sym_integer_literal, sym_string_literal, @@ -90236,51 +91060,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32093] = 22, + [21975] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(951), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(961), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(963), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(969), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(971), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(973), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(2099), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2141), 1, + ACTIONS(2103), 1, sym_real_literal, - ACTIONS(2143), 1, + ACTIONS(2105), 1, anon_sym_SPACE, - ACTIONS(2145), 1, + ACTIONS(2107), 1, anon_sym_COLON, - STATE(222), 1, + STATE(260), 1, sym_command_argument_sep, - STATE(327), 1, + STATE(509), 1, aux_sym_command_argument_sep_repeat1, - STATE(868), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1132), 1, + STATE(1039), 1, + sym_parenthesized_expression, + STATE(1116), 1, sym_redirected_file_name, - STATE(1136), 1, + STATE(1117), 1, sym__command_argument, - ACTIONS(945), 2, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(953), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(866), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(959), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90288,14 +91114,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(946), 17, + STATE(1038), 16, sym__literal, sym_integer_literal, sym_string_literal, sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90306,52 +91131,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32185] = 22, + [22069] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(63), 1, - aux_sym_command_name_token1, - ACTIONS(849), 1, + ACTIONS(963), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(851), 1, + ACTIONS(965), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(861), 1, + ACTIONS(975), 1, anon_sym_LPAREN, - ACTIONS(863), 1, + ACTIONS(977), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(983), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(871), 1, + ACTIONS(985), 1, anon_sym_AT_LPAREN, - ACTIONS(873), 1, + ACTIONS(987), 1, anon_sym_AT_LBRACE, - ACTIONS(2117), 1, + ACTIONS(1877), 1, anon_sym_LBRACK, - ACTIONS(2147), 1, + ACTIONS(2109), 1, sym_real_literal, - ACTIONS(2151), 1, - sym_path_command_name_token, - STATE(716), 1, - sym_variable, - STATE(743), 1, - aux_sym_path_command_name_repeat1, - STATE(748), 1, - sym_command_name_expr, - STATE(766), 1, + ACTIONS(2111), 1, + anon_sym_SPACE, + ACTIONS(2113), 1, + anon_sym_COLON, + STATE(223), 1, + sym_command_argument_sep, + STATE(465), 1, + aux_sym_command_argument_sep_repeat1, + STATE(841), 1, sym_invokation_foreach_expression, - ACTIONS(845), 2, + STATE(898), 1, + sym_parenthesized_expression, + STATE(1095), 1, + sym__command_argument, + STATE(1096), 1, + sym_redirected_file_name, + ACTIONS(959), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(853), 2, + ACTIONS(967), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(796), 2, + STATE(836), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - STATE(1106), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2149), 7, + ACTIONS(973), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90359,13 +91185,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(930), 16, + STATE(908), 16, sym__literal, sym_integer_literal, sym_string_literal, + sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90376,51 +91202,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32277] = 22, + [22163] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(899), 1, + ACTIONS(1241), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(901), 1, + ACTIONS(1243), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(911), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(913), 1, + ACTIONS(1253), 1, anon_sym_LBRACE, - ACTIONS(919), 1, + ACTIONS(1259), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(921), 1, + ACTIONS(1261), 1, anon_sym_AT_LPAREN, - ACTIONS(923), 1, + ACTIONS(1263), 1, anon_sym_AT_LBRACE, - ACTIONS(2133), 1, - anon_sym_LBRACK, - ACTIONS(2153), 1, + ACTIONS(2115), 1, sym_real_literal, - ACTIONS(2155), 1, + ACTIONS(2117), 1, + anon_sym_LBRACK, + ACTIONS(2119), 1, anon_sym_SPACE, - ACTIONS(2157), 1, + ACTIONS(2121), 1, anon_sym_COLON, - STATE(215), 1, + STATE(257), 1, sym_command_argument_sep, - STATE(311), 1, + STATE(508), 1, aux_sym_command_argument_sep_repeat1, - STATE(759), 1, + STATE(1005), 1, sym_invokation_foreach_expression, - STATE(1112), 1, + STATE(1050), 1, + sym_parenthesized_expression, + STATE(1113), 1, sym__command_argument, - STATE(1114), 1, + STATE(1118), 1, sym_redirected_file_name, - ACTIONS(895), 2, + ACTIONS(1145), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(903), 2, + ACTIONS(1245), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(832), 2, + STATE(1003), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(909), 7, + ACTIONS(1163), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90428,14 +91256,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(931), 17, + STATE(1049), 16, sym__literal, sym_integer_literal, sym_string_literal, sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90446,51 +91273,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32369] = 22, + [22257] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, + ACTIONS(861), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, + ACTIONS(863), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, + ACTIONS(873), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(875), 1, anon_sym_LBRACE, - ACTIONS(1157), 1, + ACTIONS(881), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(883), 1, anon_sym_AT_LPAREN, - ACTIONS(1161), 1, + ACTIONS(885), 1, anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(2123), 1, sym_real_literal, - ACTIONS(2161), 1, + ACTIONS(2125), 1, anon_sym_SPACE, - ACTIONS(2163), 1, + ACTIONS(2127), 1, anon_sym_COLON, - STATE(227), 1, + STATE(209), 1, sym_command_argument_sep, - STATE(411), 1, + STATE(442), 1, aux_sym_command_argument_sep_repeat1, - STATE(963), 1, + STATE(755), 1, sym_invokation_foreach_expression, - STATE(1150), 1, + STATE(873), 1, + sym_parenthesized_expression, + STATE(1059), 1, sym__command_argument, - STATE(1151), 1, + STATE(1060), 1, sym_redirected_file_name, - ACTIONS(1091), 2, + ACTIONS(857), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, + ACTIONS(865), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(935), 2, + STATE(751), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1109), 7, + ACTIONS(871), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90498,14 +91327,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1071), 17, + STATE(845), 16, sym__literal, sym_integer_literal, sym_string_literal, sym_variable, sym__primary_expression, sym__value, - sym_parenthesized_expression, sym_sub_expression, sym_array_expression, sym_script_block_expression, @@ -90516,50 +91344,50 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32461] = 21, + [22351] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1157), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2081), 1, sym_real_literal, - ACTIONS(2109), 1, + ACTIONS(2083), 1, sym__command_token, - ACTIONS(2165), 1, + ACTIONS(2129), 1, anon_sym_RBRACE, - STATE(963), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1592), 1, + STATE(1633), 1, sym_switch_clause_condition, - STATE(2131), 1, + STATE(1727), 1, sym_switch_clauses, - ACTIONS(1091), 2, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(740), 2, + STATE(715), 2, sym_switch_clause, aux_sym_switch_clauses_repeat1, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1109), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90567,7 +91395,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, + STATE(1292), 17, sym__literal, sym_integer_literal, sym_string_literal, @@ -90585,118 +91413,79 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32551] = 22, + [22441] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(989), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(999), 1, + ACTIONS(2125), 1, + anon_sym_SPACE, + ACTIONS(2127), 1, + anon_sym_COLON, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(1001), 1, - anon_sym_LBRACE, - ACTIONS(1007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1009), 1, - anon_sym_AT_LPAREN, - ACTIONS(1011), 1, - anon_sym_AT_LBRACE, - ACTIONS(2091), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - sym_real_literal, - ACTIONS(2171), 1, - aux_sym_command_name_token1, - ACTIONS(2173), 1, - sym_path_command_name_token, - STATE(722), 1, - sym_variable, - STATE(751), 1, - aux_sym_path_command_name_repeat1, - STATE(760), 1, - sym_command_name_expr, - STATE(847), 1, - sym_invokation_foreach_expression, - ACTIONS(983), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(991), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(845), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - STATE(1127), 2, - sym_command_name, - sym_path_command_name, - ACTIONS(2169), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(933), 16, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym__primary_expression, - sym__value, + STATE(209), 1, + sym_command_argument_sep, + STATE(442), 1, + aux_sym_command_argument_sep_repeat1, + STATE(710), 1, + sym_file_redirection_operator, + STATE(1074), 1, + sym_merging_redirection_operator, + STATE(1402), 1, + sym_command_elements, + ACTIONS(2135), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1016), 2, + sym__command_argument, sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [32643] = 20, + ACTIONS(2139), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + STATE(726), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2133), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [22518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - sym_real_literal, - ACTIONS(2181), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(2184), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(2190), 1, - anon_sym_LBRACK, - ACTIONS(2196), 1, - sym__command_token, - ACTIONS(2199), 1, - anon_sym_LPAREN, - ACTIONS(2202), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - anon_sym_RBRACE, - ACTIONS(2207), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2210), 1, - anon_sym_AT_LPAREN, - ACTIONS(2213), 1, - anon_sym_AT_LBRACE, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1592), 1, - sym_switch_clause_condition, - ACTIONS(2175), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(2187), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(738), 2, - sym_switch_clause, - aux_sym_switch_clauses_repeat1, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - ACTIONS(2193), 7, + ACTIONS(2146), 1, + sym_path_command_name_token, + ACTIONS(2149), 1, + anon_sym_SPACE, + STATE(713), 2, + sym_variable, + aux_sym_path_command_name_repeat1, + ACTIONS(2143), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90704,49 +91493,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [32730] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(251), 11, + ACTIONS(2141), 34, anon_sym_GT, + anon_sym_GT_GT, anon_sym_2_GT, + anon_sym_2_GT_GT, anon_sym_3_GT, + anon_sym_3_GT_GT, anon_sym_4_GT, + anon_sym_4_GT_GT, anon_sym_5_GT, + anon_sym_5_GT_GT, anon_sym_6_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [22577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 1, + sym_path_command_name_token, + ACTIONS(2157), 2, + sym__statement_terminator, + anon_sym_SPACE, + STATE(719), 2, + sym_variable, + aux_sym_path_command_name_repeat1, + ACTIONS(2153), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, anon_sym_DOLLAR_, aux_sym_variable_token1, - anon_sym_DOT2, - ACTIONS(253), 34, - sym_simple_name, - anon_sym_LBRACK, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(2151), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -90759,61 +91575,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, + sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [32783] = 20, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [22636] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, + ACTIONS(1267), 1, aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, + ACTIONS(1269), 1, aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, + ACTIONS(1277), 1, anon_sym_LPAREN, - ACTIONS(1151), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1157), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1287), 1, anon_sym_AT_LPAREN, - ACTIONS(1161), 1, + ACTIONS(1289), 1, anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + ACTIONS(1851), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(2081), 1, sym_real_literal, - ACTIONS(2109), 1, + ACTIONS(2083), 1, sym__command_token, - ACTIONS(2216), 1, + ACTIONS(2159), 1, anon_sym_RBRACE, - STATE(963), 1, + STATE(944), 1, sym_invokation_foreach_expression, - STATE(1592), 1, + STATE(1633), 1, sym_switch_clause_condition, - ACTIONS(1091), 2, + ACTIONS(1181), 2, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, + ACTIONS(1271), 2, sym_verbatim_string_characters, sym_verbatim_here_string_characters, - STATE(738), 2, + STATE(722), 2, sym_switch_clause, aux_sym_switch_clauses_repeat1, - STATE(935), 2, + STATE(936), 2, sym_expandable_string_literal, sym_expandable_here_string_literal, - ACTIONS(1109), 7, + ACTIONS(1199), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90821,7 +91630,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - STATE(1324), 17, + STATE(1292), 17, sym__literal, sym_integer_literal, sym_string_literal, @@ -90839,25 +91648,53 @@ static const uint16_t ts_small_parse_table[] = { sym_element_access, sym_invokation_expression, sym_type_literal, - [32870] = 6, + [22723] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, - sym_path_command_name_token, - ACTIONS(2226), 1, + ACTIONS(2125), 1, anon_sym_SPACE, - STATE(741), 2, - sym_variable, - aux_sym_path_command_name_repeat1, - ACTIONS(2220), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(2218), 33, + ACTIONS(2127), 1, + anon_sym_COLON, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(209), 1, + sym_command_argument_sep, + STATE(442), 1, + aux_sym_command_argument_sep_repeat1, + STATE(710), 1, + sym_file_redirection_operator, + STATE(1074), 1, + sym_merging_redirection_operator, + STATE(1413), 1, + sym_command_elements, + ACTIONS(2135), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1016), 2, + sym__command_argument, + sym_parenthesized_expression, + ACTIONS(2161), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + STATE(726), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2133), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -90873,6 +91710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, + [22800] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(475), 11, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_DOT2, + ACTIONS(477), 34, + sym_simple_name, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -90885,24 +91747,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - sym_stop_parsing, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [22853] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + anon_sym_SPACE, + ACTIONS(2091), 1, anon_sym_COLON, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + sym__statement_terminator, + STATE(212), 1, + sym_command_argument_sep, + STATE(445), 1, + aux_sym_command_argument_sep_repeat1, + STATE(703), 1, + sym_file_redirection_operator, + STATE(1048), 1, + sym_merging_redirection_operator, + STATE(1422), 1, + sym_command_elements, + ACTIONS(2139), 2, + anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [32928] = 6, + ACTIONS(2165), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1012), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(723), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2163), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [22932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, + ACTIONS(2174), 1, sym_path_command_name_token, - ACTIONS(2226), 2, + ACTIONS(2149), 2, sym__statement_terminator, anon_sym_SPACE, - STATE(742), 2, + STATE(719), 2, sym_variable, aux_sym_path_command_name_repeat1, - ACTIONS(2228), 7, + ACTIONS(2171), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -90910,7 +91842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2218), 32, + ACTIONS(2141), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -90939,30 +91871,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [32986] = 6, + [22991] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, - sym_path_command_name_token, - ACTIONS(2240), 2, - sym__statement_terminator, + ACTIONS(2089), 1, anon_sym_SPACE, - STATE(742), 2, - sym_variable, - aux_sym_path_command_name_repeat1, - ACTIONS(2236), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(2234), 32, + ACTIONS(2091), 1, + anon_sym_COLON, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + sym__statement_terminator, + STATE(212), 1, + sym_command_argument_sep, + STATE(445), 1, + aux_sym_command_argument_sep_repeat1, + STATE(703), 1, + sym_file_redirection_operator, + STATE(1048), 1, + sym_merging_redirection_operator, + STATE(1418), 1, + sym_command_elements, + ACTIONS(2161), 2, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + ACTIONS(2165), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1012), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(723), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2163), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -90978,34 +91939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [33044] = 6, + [23070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2157), 1, anon_sym_SPACE, - ACTIONS(2244), 1, + ACTIONS(2181), 1, sym_path_command_name_token, - STATE(741), 2, + STATE(713), 2, sym_variable, aux_sym_path_command_name_repeat1, - ACTIONS(2242), 7, + ACTIONS(2179), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -91013,7 +91957,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2234), 33, + ACTIONS(2151), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91042,23 +91986,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [33102] = 5, + [23129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(2186), 1, + sym_real_literal, + ACTIONS(2189), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(2192), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(2198), 1, + anon_sym_LBRACK, + ACTIONS(2204), 1, + sym__command_token, + ACTIONS(2207), 1, anon_sym_LPAREN, - STATE(830), 1, - sym_argument_list, - ACTIONS(603), 2, + ACTIONS(2210), 1, + anon_sym_LBRACE, + ACTIONS(2213), 1, + anon_sym_RBRACE, + ACTIONS(2215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2218), 1, + anon_sym_AT_LPAREN, + ACTIONS(2221), 1, + anon_sym_AT_LBRACE, + STATE(944), 1, + sym_invokation_foreach_expression, + STATE(1633), 1, + sym_switch_clause_condition, + ACTIONS(2183), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(2195), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(722), 2, + sym_switch_clause, + aux_sym_switch_clauses_repeat1, + STATE(936), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + ACTIONS(2201), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + STATE(1292), 17, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + sym_type_literal, + [23216] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 39, - anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_COLON, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2228), 1, + sym__statement_terminator, + STATE(212), 1, + sym_command_argument_sep, + STATE(445), 1, + aux_sym_command_argument_sep_repeat1, + STATE(703), 1, + sym_file_redirection_operator, + STATE(1048), 1, + sym_merging_redirection_operator, + ACTIONS(2224), 2, + sym_command_parameter, + sym_stop_parsing, + ACTIONS(2226), 2, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + STATE(1012), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(732), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2163), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91074,60 +92120,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [33157] = 14, + [23292] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN, + ACTIONS(2244), 1, anon_sym_SPACE, - ACTIONS(2157), 1, + ACTIONS(2247), 1, anon_sym_COLON, - STATE(214), 1, + STATE(209), 1, sym_command_argument_sep, - STATE(311), 1, + STATE(442), 1, aux_sym_command_argument_sep_repeat1, - STATE(734), 1, + STATE(710), 1, sym_file_redirection_operator, - STATE(1048), 1, - sym__command_argument, - STATE(1104), 1, + STATE(1074), 1, sym_merging_redirection_operator, - STATE(1465), 1, - sym_command_elements, - ACTIONS(2252), 2, + ACTIONS(2236), 2, sym_command_parameter, sym_stop_parsing, - ACTIONS(2254), 3, + STATE(1016), 2, + sym__command_argument, + sym_parenthesized_expression, + ACTIONS(2242), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - STATE(800), 3, + STATE(724), 3, sym__command_element, sym_redirection, aux_sym_command_elements_repeat1, - ACTIONS(2250), 12, + ACTIONS(2233), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91140,7 +92164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + ACTIONS(2230), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91156,17 +92180,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [33230] = 4, + [23366] = 6, ACTIONS(3), 1, sym_comment, - STATE(821), 1, - sym_argument_list, - ACTIONS(603), 3, + ACTIONS(2253), 1, + sym_path_command_name_token, + ACTIONS(2149), 2, sym__statement_terminator, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 39, - anon_sym_LBRACK, + STATE(725), 2, + sym_variable, + aux_sym_path_command_name_repeat1, + ACTIONS(2250), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(2141), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91196,47 +92229,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [33283] = 15, + [23424] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2125), 1, anon_sym_SPACE, - ACTIONS(2121), 1, + ACTIONS(2127), 1, anon_sym_COLON, - ACTIONS(2260), 1, - sym__statement_terminator, - STATE(213), 1, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(209), 1, sym_command_argument_sep, - STATE(313), 1, + STATE(442), 1, aux_sym_command_argument_sep_repeat1, - STATE(728), 1, + STATE(710), 1, sym_file_redirection_operator, - STATE(1067), 1, + STATE(1074), 1, + sym_merging_redirection_operator, + ACTIONS(2256), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1016), 2, sym__command_argument, - STATE(1111), 1, + sym_parenthesized_expression, + ACTIONS(2226), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + STATE(724), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2133), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [23498] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2111), 1, + anon_sym_SPACE, + ACTIONS(2113), 1, + anon_sym_COLON, + ACTIONS(2262), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym_command_argument_sep, + STATE(465), 1, + aux_sym_command_argument_sep_repeat1, + STATE(708), 1, + sym_file_redirection_operator, + STATE(1085), 1, sym_merging_redirection_operator, - STATE(1442), 1, + STATE(1402), 1, sym_command_elements, - ACTIONS(2254), 2, + ACTIONS(2139), 2, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - ACTIONS(2258), 2, + ACTIONS(2260), 2, sym_command_parameter, sym_stop_parsing, - STATE(779), 3, + STATE(1035), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(738), 3, sym__command_element, sym_redirection, aux_sym_command_elements_repeat1, - ACTIONS(2256), 12, + ACTIONS(2258), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91249,7 +92337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91265,17 +92353,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [33358] = 6, + [23574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_SPACE, - ACTIONS(2264), 1, + ACTIONS(2266), 1, sym_path_command_name_token, - STATE(753), 2, + ACTIONS(2157), 2, + sym__statement_terminator, + anon_sym_SPACE, + STATE(725), 2, sym_variable, aux_sym_path_command_name_repeat1, - ACTIONS(2262), 7, + ACTIONS(2264), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -91283,7 +92372,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2234), 32, + ACTIONS(2151), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91312,20 +92401,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [33415] = 4, + [23632] = 6, ACTIONS(3), 1, sym_comment, - STATE(830), 1, - sym_argument_list, - ACTIONS(603), 2, + ACTIONS(2149), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 40, - anon_sym_LBRACK, + ACTIONS(2271), 1, + sym_path_command_name_token, + STATE(729), 2, + sym_variable, + aux_sym_path_command_name_repeat1, + ACTIONS(2268), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + ACTIONS(2141), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91356,27 +92454,20 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [33468] = 6, + [23690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 1, - sym_path_command_name_token, - ACTIONS(2240), 2, - sym__statement_terminator, + ACTIONS(2157), 1, anon_sym_SPACE, - STATE(754), 2, + ACTIONS(2276), 1, + sym_path_command_name_token, + STATE(729), 2, sym_variable, aux_sym_path_command_name_repeat1, - ACTIONS(2266), 7, + ACTIONS(2274), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -91384,7 +92475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - ACTIONS(2234), 31, + ACTIONS(2151), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91413,40 +92504,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [33525] = 14, + [23748] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, + ACTIONS(2095), 1, anon_sym_SPACE, - ACTIONS(2157), 1, + ACTIONS(2097), 1, anon_sym_COLON, - STATE(214), 1, + ACTIONS(2161), 1, + anon_sym_PIPE, + ACTIONS(2177), 1, + sym__statement_terminator, + ACTIONS(2282), 1, + anon_sym_LPAREN, + STATE(219), 1, sym_command_argument_sep, - STATE(311), 1, + STATE(460), 1, aux_sym_command_argument_sep_repeat1, - STATE(734), 1, + STATE(704), 1, sym_file_redirection_operator, - STATE(1048), 1, - sym__command_argument, - STATE(1104), 1, + STATE(1078), 1, sym_merging_redirection_operator, - STATE(1441), 1, + STATE(1418), 1, sym_command_elements, - ACTIONS(2252), 2, + ACTIONS(2280), 2, sym_command_parameter, sym_stop_parsing, - ACTIONS(2270), 3, - anon_sym_RPAREN, + STATE(1036), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(735), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2278), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [23826] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2290), 1, + anon_sym_LPAREN, + ACTIONS(2293), 1, + anon_sym_SPACE, + ACTIONS(2296), 1, + anon_sym_COLON, + ACTIONS(2299), 1, + sym__statement_terminator, + STATE(212), 1, + sym_command_argument_sep, + STATE(445), 1, + aux_sym_command_argument_sep_repeat1, + STATE(703), 1, + sym_file_redirection_operator, + STATE(1048), 1, + sym_merging_redirection_operator, + ACTIONS(2242), 2, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - STATE(800), 3, + ACTIONS(2287), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1012), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(732), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2284), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2230), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [23902] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_SPACE, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2139), 1, + anon_sym_PIPE, + ACTIONS(2169), 1, + sym__statement_terminator, + ACTIONS(2282), 1, + anon_sym_LPAREN, + STATE(219), 1, + sym_command_argument_sep, + STATE(460), 1, + aux_sym_command_argument_sep_repeat1, + STATE(704), 1, + sym_file_redirection_operator, + STATE(1078), 1, + sym_merging_redirection_operator, + STATE(1422), 1, + sym_command_elements, + ACTIONS(2280), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1036), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(735), 3, sym__command_element, sym_redirection, aux_sym_command_elements_repeat1, - ACTIONS(2250), 12, + ACTIONS(2278), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91459,7 +92678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91475,25 +92694,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [33598] = 6, + [23980] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2111), 1, anon_sym_SPACE, - ACTIONS(2275), 1, - sym_path_command_name_token, - STATE(753), 2, - sym_variable, - aux_sym_path_command_name_repeat1, - ACTIONS(2272), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(2218), 32, + ACTIONS(2113), 1, + anon_sym_COLON, + ACTIONS(2262), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym_command_argument_sep, + STATE(465), 1, + aux_sym_command_argument_sep_repeat1, + STATE(708), 1, + sym_file_redirection_operator, + STATE(1085), 1, + sym_merging_redirection_operator, + STATE(1413), 1, + sym_command_elements, + ACTIONS(2161), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(2260), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1035), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(738), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2258), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91509,6 +92755,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, + [24056] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_SPACE, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2226), 1, + anon_sym_PIPE, + ACTIONS(2228), 1, + sym__statement_terminator, + ACTIONS(2282), 1, + anon_sym_LPAREN, + STATE(219), 1, + sym_command_argument_sep, + STATE(460), 1, + aux_sym_command_argument_sep_repeat1, + STATE(704), 1, + sym_file_redirection_operator, + STATE(1078), 1, + sym_merging_redirection_operator, + ACTIONS(2301), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1036), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(741), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2278), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91521,31 +92799,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [33655] = 6, + ACTIONS(2131), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + [24131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - sym_path_command_name_token, - ACTIONS(2226), 2, - sym__statement_terminator, + ACTIONS(605), 1, anon_sym_SPACE, - STATE(754), 2, - sym_variable, - aux_sym_path_command_name_repeat1, - ACTIONS(2278), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - ACTIONS(2218), 31, + ACTIONS(607), 42, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91573,22 +92848,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, - [33712] = 5, + anon_sym_DASH_DASH_PERCENT, + [24182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 1, - anon_sym_LPAREN, - STATE(821), 1, + STATE(749), 1, sym_argument_list, - ACTIONS(603), 3, + ACTIONS(591), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 38, + ACTIONS(593), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -91618,6 +92902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -91627,38 +92912,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [33767] = 15, + [24235] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2111), 1, anon_sym_SPACE, - ACTIONS(2121), 1, + ACTIONS(2113), 1, anon_sym_COLON, - ACTIONS(2286), 1, - sym__statement_terminator, - STATE(213), 1, + ACTIONS(2262), 1, + anon_sym_LPAREN, + STATE(223), 1, sym_command_argument_sep, - STATE(313), 1, + STATE(465), 1, aux_sym_command_argument_sep_repeat1, - STATE(728), 1, + STATE(708), 1, sym_file_redirection_operator, - STATE(1067), 1, - sym__command_argument, - STATE(1111), 1, + STATE(1085), 1, sym_merging_redirection_operator, - STATE(1457), 1, - sym_command_elements, - ACTIONS(2258), 2, + ACTIONS(2226), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(2303), 2, sym_command_parameter, sym_stop_parsing, - ACTIONS(2270), 2, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - STATE(779), 3, + STATE(1035), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(740), 3, sym__command_element, sym_redirection, aux_sym_command_elements_repeat1, - ACTIONS(2256), 12, + ACTIONS(2258), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91671,7 +92955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + ACTIONS(2131), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91687,14 +92971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [33842] = 3, + [24308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 3, - sym__statement_terminator, + STATE(743), 1, + sym_argument_list, + ACTIONS(591), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(633), 39, + ACTIONS(593), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -91725,6 +93010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -91734,39 +93020,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [33892] = 8, + [24361] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2292), 1, - anon_sym_DASH_DASH, - ACTIONS(2296), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(651), 2, - sym__statement_terminator, + ACTIONS(2311), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, anon_sym_SPACE, - ACTIONS(2294), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, + ACTIONS(2317), 1, + anon_sym_COLON, + STATE(223), 1, + sym_command_argument_sep, + STATE(465), 1, + aux_sym_command_argument_sep_repeat1, + STATE(708), 1, + sym_file_redirection_operator, + STATE(1085), 1, + sym_merging_redirection_operator, + ACTIONS(2242), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(2308), 2, + sym_command_parameter, + sym_stop_parsing, + STATE(1035), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(740), 3, + sym__command_element, + sym_redirection, + aux_sym_command_elements_repeat1, + ACTIONS(2305), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91779,21 +93063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [33952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(707), 40, - anon_sym_LBRACK, + ACTIONS(2230), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91809,61 +93079,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [34002] = 15, + [24434] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_SPACE, - ACTIONS(2095), 1, - anon_sym_COLON, - ACTIONS(2254), 1, + ACTIONS(2242), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2299), 1, sym__statement_terminator, - STATE(220), 1, + ACTIONS(2326), 1, + anon_sym_LPAREN, + ACTIONS(2329), 1, + anon_sym_SPACE, + ACTIONS(2332), 1, + anon_sym_COLON, + STATE(219), 1, sym_command_argument_sep, - STATE(325), 1, + STATE(460), 1, aux_sym_command_argument_sep_repeat1, - STATE(724), 1, + STATE(704), 1, sym_file_redirection_operator, - STATE(1083), 1, - sym__command_argument, - STATE(1135), 1, + STATE(1078), 1, sym_merging_redirection_operator, - STATE(1442), 1, - sym_command_elements, - ACTIONS(2300), 2, + ACTIONS(2323), 2, sym_command_parameter, sym_stop_parsing, - STATE(920), 3, + STATE(1036), 2, + sym__command_argument, + sym_parenthesized_expression, + STATE(741), 3, sym__command_element, sym_redirection, aux_sym_command_elements_repeat1, - ACTIONS(2298), 12, + ACTIONS(2320), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -91876,7 +93123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + ACTIONS(2230), 15, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91892,14 +93139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [34076] = 3, + [24509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 2, + ACTIONS(605), 2, + sym__statement_terminator, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(723), 40, - anon_sym_LBRACK, + ACTIONS(607), 41, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -91927,25 +93173,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, + sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [34126] = 3, + [24560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 2, + ACTIONS(679), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(637), 40, + ACTIONS(681), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -91986,13 +93234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34176] = 3, + [24610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 2, + ACTIONS(661), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(611), 40, + ACTIONS(664), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92023,7 +93272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -92033,13 +93281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34226] = 3, + [24660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 2, + ACTIONS(605), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(649), 40, + ACTIONS(607), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92080,14 +93328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34276] = 3, + [24710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 3, + ACTIONS(667), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(597), 39, + ACTIONS(669), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92127,14 +93375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34326] = 3, + [24760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(705), 3, + ACTIONS(671), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(707), 39, + ACTIONS(673), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92174,14 +93422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34376] = 3, + [24810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 3, + ACTIONS(729), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(723), 39, + ACTIONS(731), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92221,13 +93469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34426] = 3, + [24860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 2, + ACTIONS(679), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(641), 40, + ACTIONS(681), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92258,7 +93507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -92268,13 +93516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34476] = 3, + [24910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 2, + ACTIONS(721), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(645), 40, + ACTIONS(723), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92315,72 +93563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34526] = 15, + [24960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_SPACE, - ACTIONS(2095), 1, - anon_sym_COLON, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2286), 1, - sym__statement_terminator, - STATE(220), 1, - sym_command_argument_sep, - STATE(325), 1, - aux_sym_command_argument_sep_repeat1, - STATE(724), 1, - sym_file_redirection_operator, - STATE(1083), 1, - sym__command_argument, - STATE(1135), 1, - sym_merging_redirection_operator, - STATE(1457), 1, - sym_command_elements, - ACTIONS(2300), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(920), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2298), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [34600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(659), 2, + ACTIONS(725), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(661), 40, + ACTIONS(727), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92421,17 +93610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34650] = 5, + [25010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_argument_list, - ACTIONS(603), 2, + ACTIONS(653), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 38, + ACTIONS(655), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92461,36 +93647,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34704] = 3, - ACTIONS(3), 1, + [25060] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_SPACE, - ACTIONS(597), 41, + ACTIONS(2339), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2337), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + ACTIONS(2335), 31, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -92503,28 +93700,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_command_parameter, anon_sym_RPAREN, anon_sym_PIPE, - sym_path_command_name_token, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [34754] = 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [25112] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 2, + ACTIONS(695), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 40, + ACTIONS(2341), 1, anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2345), 1, + anon_sym_DASH_DASH, + ACTIONS(2349), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2347), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(697), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -92560,27 +93757,14 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [34804] = 8, + [25172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(675), 2, anon_sym_SPACE, - ACTIONS(2304), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2308), 1, - anon_sym_DASH_DASH, - ACTIONS(2312), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(2310), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 35, + ACTIONS(677), 40, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -92616,71 +93800,17 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [34864] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_SPACE, - ACTIONS(2328), 1, - anon_sym_COLON, - ACTIONS(2331), 1, - sym__statement_terminator, - STATE(213), 1, - sym_command_argument_sep, - STATE(313), 1, - aux_sym_command_argument_sep_repeat1, - STATE(728), 1, - sym_file_redirection_operator, - STATE(1067), 1, - sym__command_argument, - STATE(1111), 1, - sym_merging_redirection_operator, - ACTIONS(2320), 2, - sym_command_parameter, - sym_stop_parsing, - ACTIONS(2323), 2, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - STATE(776), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2317), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2314), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [34936] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [25222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 2, + ACTIONS(613), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(593), 40, + ACTIONS(615), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92721,13 +93851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [34986] = 3, + [25272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 2, + ACTIONS(617), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(597), 40, + ACTIONS(619), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92768,36 +93898,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35036] = 14, - ACTIONS(3), 1, + [25322] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(2119), 1, - anon_sym_SPACE, - ACTIONS(2121), 1, - anon_sym_COLON, - ACTIONS(2337), 1, + ACTIONS(2351), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2337), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(2335), 31, sym__statement_terminator, - STATE(213), 1, - sym_command_argument_sep, - STATE(313), 1, - aux_sym_command_argument_sep_repeat1, - STATE(728), 1, - sym_file_redirection_operator, - STATE(1067), 1, - sym__command_argument, - STATE(1111), 1, - sym_merging_redirection_operator, - ACTIONS(2333), 2, - sym_command_parameter, - sym_stop_parsing, - ACTIONS(2335), 2, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - STATE(776), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2256), 12, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -92810,30 +93942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [35108] = 3, + anon_sym_PIPE, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [25374] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(715), 40, + ACTIONS(2353), 1, anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2357), 1, + anon_sym_DASH_DASH, + ACTIONS(2361), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(695), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2359), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(697), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -92863,23 +93993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [35158] = 3, + [25434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(693), 2, + ACTIONS(621), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(695), 40, + ACTIONS(623), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92920,14 +94045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35208] = 3, + [25484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 3, - sym__statement_terminator, + ACTIONS(625), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(703), 39, + ACTIONS(627), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -92958,6 +94082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -92967,14 +94092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35258] = 3, + [25534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 3, + ACTIONS(675), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(645), 39, + ACTIONS(677), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93014,14 +94139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35308] = 3, + [25584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 3, + ACTIONS(613), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(711), 39, + ACTIONS(615), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93061,72 +94186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35358] = 14, + [25634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, - anon_sym_SPACE, - ACTIONS(2145), 1, - anon_sym_COLON, - STATE(219), 1, - sym_command_argument_sep, - STATE(327), 1, - aux_sym_command_argument_sep_repeat1, - STATE(732), 1, - sym_file_redirection_operator, - STATE(1079), 1, - sym__command_argument, - STATE(1121), 1, - sym_merging_redirection_operator, - STATE(1465), 1, - sym_command_elements, - ACTIONS(2254), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(842), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2339), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [35430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(717), 3, - sym__statement_terminator, + ACTIONS(629), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(719), 39, + ACTIONS(631), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93157,110 +94223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [35480] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_SPACE, - ACTIONS(2352), 1, - anon_sym_COLON, - STATE(214), 1, - sym_command_argument_sep, - STATE(311), 1, - aux_sym_command_argument_sep_repeat1, - STATE(734), 1, - sym_file_redirection_operator, - STATE(1048), 1, - sym__command_argument, - STATE(1104), 1, - sym_merging_redirection_operator, - ACTIONS(2346), 2, - sym_command_parameter, - sym_stop_parsing, - ACTIONS(2323), 3, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - STATE(787), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2343), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2314), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [35550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(667), 3, - sym__statement_terminator, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(669), 39, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93270,71 +94233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35600] = 14, + [25684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 1, - anon_sym_SPACE, - ACTIONS(2145), 1, - anon_sym_COLON, - STATE(219), 1, - sym_command_argument_sep, - STATE(327), 1, - aux_sym_command_argument_sep_repeat1, - STATE(732), 1, - sym_file_redirection_operator, - STATE(1079), 1, - sym__command_argument, - STATE(1121), 1, - sym_merging_redirection_operator, - STATE(1441), 1, - sym_command_elements, - ACTIONS(2270), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(2341), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(842), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2339), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [35672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 2, + ACTIONS(633), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(703), 40, + ACTIONS(635), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93375,14 +94280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35722] = 3, + [25734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 3, + ACTIONS(617), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(727), 39, + ACTIONS(619), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93422,13 +94327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35772] = 3, + [25784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 2, + ACTIONS(637), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(711), 40, + ACTIONS(639), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93469,14 +94374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35822] = 3, + [25834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 3, - sym__statement_terminator, + ACTIONS(641), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(691), 39, + ACTIONS(643), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93507,6 +94411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93516,62 +94421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35872] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(864), 1, - sym_argument_list, - ACTIONS(603), 3, - sym__statement_terminator, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 38, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [35924] = 3, + [25884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 3, + ACTIONS(595), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(611), 39, + ACTIONS(597), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93611,14 +94468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [35974] = 3, + [25934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(697), 3, - sym__statement_terminator, + ACTIONS(649), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(699), 39, + ACTIONS(651), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93649,6 +94505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93658,14 +94515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36024] = 3, + [25984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 3, - sym__statement_terminator, + ACTIONS(653), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(649), 39, + ACTIONS(655), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93696,6 +94552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93705,13 +94562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36074] = 3, + [26034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 2, + ACTIONS(657), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(719), 40, + ACTIONS(659), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93752,14 +94609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36124] = 3, + [26084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 3, - sym__statement_terminator, + ACTIONS(661), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(677), 39, + ACTIONS(664), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93790,6 +94646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93799,35 +94656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36174] = 13, + [26134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 1, + ACTIONS(725), 3, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2157), 1, - anon_sym_COLON, - STATE(214), 1, - sym_command_argument_sep, - STATE(311), 1, - aux_sym_command_argument_sep_repeat1, - STATE(734), 1, - sym_file_redirection_operator, - STATE(1048), 1, - sym__command_argument, - STATE(1104), 1, - sym_merging_redirection_operator, - ACTIONS(2355), 2, - sym_command_parameter, - sym_stop_parsing, - ACTIONS(2335), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - STATE(787), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2250), 12, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(727), 39, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -93840,7 +94692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [26184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(667), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(669), 40, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -93856,14 +94726,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [36244] = 3, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [26234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(693), 3, - sym__statement_terminator, + ACTIONS(671), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(695), 39, + ACTIONS(673), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93894,6 +94787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93903,13 +94797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36294] = 3, + [26284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 2, + ACTIONS(601), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(727), 40, + ACTIONS(603), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93940,7 +94835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93950,14 +94844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36344] = 3, + [26334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 3, - sym__statement_terminator, + ACTIONS(729), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(601), 39, + ACTIONS(731), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -93988,6 +94881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -93997,13 +94891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36394] = 3, + [26384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 2, + ACTIONS(695), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(633), 40, + ACTIONS(697), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94044,15 +94938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36444] = 4, + [26434] = 3, ACTIONS(3), 1, sym_comment, - STATE(883), 1, - sym_argument_list, - ACTIONS(603), 2, + ACTIONS(621), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 39, + ACTIONS(623), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94083,22 +94976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36496] = 3, + [26484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 2, + ACTIONS(625), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(677), 40, + ACTIONS(627), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94129,7 +95023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94139,14 +95032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36546] = 3, + [26534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 3, + ACTIONS(683), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(681), 39, + ACTIONS(685), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94186,13 +95079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36596] = 3, + [26584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 2, + ACTIONS(657), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(665), 40, + ACTIONS(659), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94223,7 +95117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94233,13 +95126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36646] = 3, + [26634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 2, + ACTIONS(645), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(681), 40, + ACTIONS(647), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94280,13 +95173,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36696] = 3, + [26684] = 12, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_PIPE, + ACTIONS(2371), 1, + sym__statement_terminator, + STATE(709), 1, + sym_file_redirection_operator, + STATE(1114), 1, + sym_merging_redirection_operator, + STATE(1403), 1, + aux_sym__pipeline_tail, + STATE(1405), 1, + sym_redirections, + STATE(1101), 2, + sym_redirection, + aux_sym_redirections_repeat1, + ACTIONS(2363), 7, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + ACTIONS(2365), 7, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + ACTIONS(2131), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(2367), 12, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + [26752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 2, + ACTIONS(687), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(686), 40, + ACTIONS(689), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94317,7 +95267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94327,76 +95276,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36746] = 18, + [26802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1139), 1, - aux_sym_expandable_string_literal_token1, - ACTIONS(1141), 1, - aux_sym_expandable_here_string_literal_token1, - ACTIONS(1149), 1, - anon_sym_LPAREN, - ACTIONS(1151), 1, - anon_sym_LBRACE, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1159), 1, - anon_sym_AT_LPAREN, - ACTIONS(1161), 1, - anon_sym_AT_LBRACE, - ACTIONS(2081), 1, + STATE(822), 1, + sym_argument_list, + ACTIONS(591), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(593), 38, anon_sym_LBRACK, - ACTIONS(2357), 1, - sym_real_literal, - ACTIONS(2359), 1, - sym__command_token, - STATE(963), 1, - sym_invokation_foreach_expression, - STATE(1980), 1, - sym_switch_filename, - ACTIONS(1091), 2, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - ACTIONS(1143), 2, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - STATE(935), 2, - sym_expandable_string_literal, - sym_expandable_here_string_literal, - ACTIONS(1109), 7, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - STATE(1319), 17, - sym__literal, - sym_integer_literal, - sym_string_literal, - sym_variable, - sym__primary_expression, - sym__value, - sym_parenthesized_expression, - sym_sub_expression, - sym_array_expression, - sym_script_block_expression, - sym_hash_literal_expression, - sym_post_increment_expression, - sym_post_decrement_expression, - sym_member_access, - sym_element_access, - sym_invokation_expression, - sym_type_literal, - [36826] = 3, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [26854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 3, + ACTIONS(629), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(686), 39, + ACTIONS(631), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94436,13 +95371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36876] = 3, + [26904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 2, + ACTIONS(633), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(615), 40, + ACTIONS(635), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94473,7 +95409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94483,14 +95418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [36926] = 3, + [26954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 2, + ACTIONS(605), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(731), 40, - anon_sym_LBRACK, + ACTIONS(607), 41, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -94518,26 +95451,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, + sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [36976] = 3, + [27004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 3, + ACTIONS(637), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(615), 39, + ACTIONS(639), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94577,14 +95512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37026] = 3, + [27054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 3, + ACTIONS(641), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(657), 39, + ACTIONS(643), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94624,14 +95559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37076] = 3, + [27104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 3, - sym__statement_terminator, + ACTIONS(683), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(619), 39, + ACTIONS(685), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94662,6 +95596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94671,13 +95606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37126] = 3, + [27154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 2, + ACTIONS(595), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(619), 40, + ACTIONS(597), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94718,14 +95653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37176] = 3, + [27204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 3, + ACTIONS(645), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(661), 39, + ACTIONS(647), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94765,14 +95700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37226] = 3, + [27254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 3, - sym__statement_terminator, + ACTIONS(687), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(625), 39, + ACTIONS(689), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94803,6 +95737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94812,14 +95747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37276] = 3, + [27304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 3, - sym__statement_terminator, + ACTIONS(601), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(629), 39, + ACTIONS(603), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94850,6 +95784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -94859,61 +95794,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37326] = 3, + [27354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 3, - sym__statement_terminator, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(593), 39, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, + ACTIONS(1267), 1, + aux_sym_expandable_string_literal_token1, + ACTIONS(1269), 1, + aux_sym_expandable_here_string_literal_token1, + ACTIONS(1277), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [37376] = 3, + ACTIONS(1279), 1, + anon_sym_LBRACE, + ACTIONS(1285), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1287), 1, + anon_sym_AT_LPAREN, + ACTIONS(1289), 1, + anon_sym_AT_LBRACE, + ACTIONS(1851), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + sym_real_literal, + ACTIONS(2375), 1, + sym__command_token, + STATE(944), 1, + sym_invokation_foreach_expression, + STATE(2002), 1, + sym_switch_filename, + ACTIONS(1181), 2, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + ACTIONS(1271), 2, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + STATE(936), 2, + sym_expandable_string_literal, + sym_expandable_here_string_literal, + ACTIONS(1199), 7, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + STATE(1295), 17, + sym__literal, + sym_integer_literal, + sym_string_literal, + sym_variable, + sym__primary_expression, + sym__value, + sym_parenthesized_expression, + sym_sub_expression, + sym_array_expression, + sym_script_block_expression, + sym_hash_literal_expression, + sym_post_increment_expression, + sym_post_decrement_expression, + sym_member_access, + sym_element_access, + sym_invokation_expression, + sym_type_literal, + [27434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 3, + ACTIONS(691), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(641), 39, + ACTIONS(693), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -94953,14 +95903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37426] = 3, + [27484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 3, + ACTIONS(609), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(665), 39, + ACTIONS(611), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95000,13 +95950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37476] = 3, + [27534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 2, + ACTIONS(699), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(691), 40, + ACTIONS(701), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95037,7 +95988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95047,13 +95997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37526] = 3, + [27584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 2, + ACTIONS(703), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(673), 40, + ACTIONS(705), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95084,7 +96035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95094,14 +96044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37576] = 3, + [27634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 3, + ACTIONS(721), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(731), 39, + ACTIONS(723), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95141,13 +96091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37626] = 3, + [27684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 2, + ACTIONS(707), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(601), 40, + ACTIONS(709), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95178,7 +96129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95188,13 +96138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37676] = 3, + [27734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 2, + ACTIONS(711), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(625), 40, + ACTIONS(713), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95225,7 +96176,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95235,13 +96185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37726] = 3, + [27784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 2, + ACTIONS(715), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(629), 40, + ACTIONS(717), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95272,7 +96223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95282,76 +96232,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37776] = 3, - ACTIONS(3), 1, + [27834] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(671), 3, - sym__statement_terminator, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(673), 39, - anon_sym_LBRACK, + ACTIONS(2339), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2379), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [37826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(697), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(699), 40, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(2377), 31, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -95364,30 +96275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [37876] = 5, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [27886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, - anon_sym_LPAREN, STATE(864), 1, sym_argument_list, - ACTIONS(603), 3, - sym__statement_terminator, + ACTIONS(591), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(605), 37, + ACTIONS(593), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95417,6 +96318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95425,14 +96328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [37930] = 3, + [27938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 3, + ACTIONS(695), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(715), 39, + ACTIONS(697), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95462,71 +96365,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [37980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(597), 40, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [38030] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [27988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 3, - sym__statement_terminator, + ACTIONS(699), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 39, + ACTIONS(701), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95557,6 +96412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95566,14 +96422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38080] = 3, + [28038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 3, - sym__statement_terminator, + ACTIONS(703), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(637), 39, + ACTIONS(705), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95604,6 +96459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95613,13 +96469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38130] = 3, + [28088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 2, + ACTIONS(649), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(657), 40, + ACTIONS(651), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95650,7 +96507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -95660,13 +96516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38180] = 3, + [28138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(667), 2, + ACTIONS(707), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(669), 40, + ACTIONS(709), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95707,13 +96563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38230] = 3, + [28188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(667), 2, + ACTIONS(711), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(669), 39, + ACTIONS(713), 40, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95749,39 +96605,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38279] = 14, + [28238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, - sym__statement_terminator, - ACTIONS(2369), 1, + ACTIONS(715), 2, anon_sym_SPACE, - ACTIONS(2372), 1, - anon_sym_COLON, - STATE(220), 1, - sym_command_argument_sep, - STATE(325), 1, - aux_sym_command_argument_sep_repeat1, - STATE(724), 1, - sym_file_redirection_operator, - STATE(1083), 1, - sym__command_argument, - STATE(1135), 1, - sym_merging_redirection_operator, - ACTIONS(2366), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(841), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2363), 12, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(717), 40, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -95794,7 +96645,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2314), 15, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [28288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(693), 40, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -95810,34 +96680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [38350] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_SPACE, - ACTIONS(2145), 1, - anon_sym_COLON, - STATE(219), 1, - sym_command_argument_sep, - STATE(327), 1, - aux_sym_command_argument_sep_repeat1, - STATE(732), 1, - sym_file_redirection_operator, - STATE(1079), 1, - sym__command_argument, - STATE(1121), 1, - sym_merging_redirection_operator, - ACTIONS(2335), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(2375), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(843), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2339), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -95850,7 +96692,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [28338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(611), 40, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -95866,34 +96727,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_STAR_GT_GT, anon_sym_LT, - [38419] = 13, - ACTIONS(3), 1, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [28388] = 12, + ACTIONS(81), 1, sym_comment, + ACTIONS(2371), 1, + anon_sym_RPAREN, ACTIONS(2383), 1, - anon_sym_SPACE, - ACTIONS(2386), 1, - anon_sym_COLON, - STATE(219), 1, - sym_command_argument_sep, - STATE(327), 1, - aux_sym_command_argument_sep_repeat1, - STATE(732), 1, + anon_sym_PIPE, + STATE(707), 1, sym_file_redirection_operator, - STATE(1079), 1, - sym__command_argument, - STATE(1121), 1, + STATE(1120), 1, sym_merging_redirection_operator, - ACTIONS(2323), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(2380), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(843), 3, - sym__command_element, + STATE(1429), 1, + aux_sym__pipeline_tail, + STATE(1433), 1, + sym_redirections, + STATE(1102), 2, sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2377), 12, + aux_sym_redirections_repeat1, + ACTIONS(2363), 7, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + ACTIONS(2365), 7, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + ACTIONS(2131), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(2381), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -95906,30 +96807,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - ACTIONS(2314), 15, + [28456] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2351), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2379), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - [38488] = 3, + ACTIONS(2377), 31, + sym__statement_terminator, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_PIPE, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [28508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(689), 3, + ACTIONS(605), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(691), 38, + ACTIONS(607), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -95964,19 +96897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38537] = 3, + [28558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(697), 3, + ACTIONS(605), 2, sym__statement_terminator, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(699), 38, - anon_sym_LBRACK, + ACTIONS(607), 40, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -96004,34 +96936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, + sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [38586] = 8, + [28608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2393), 1, - anon_sym_DASH_DASH, - ACTIONS(2397), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(651), 2, + ACTIONS(679), 3, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2395), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 33, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(681), 38, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -96065,14 +96991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [38645] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [28657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(705), 3, - sym__statement_terminator, + ACTIONS(699), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(707), 38, + ACTIONS(701), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96103,6 +97032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96111,14 +97041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38694] = 3, + [28706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 3, - sym__statement_terminator, + ACTIONS(703), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(723), 38, + ACTIONS(705), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96149,6 +97078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96157,14 +97087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38743] = 3, + [28755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 3, - sym__statement_terminator, + ACTIONS(707), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(645), 38, + ACTIONS(709), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96195,6 +97124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96203,14 +97133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38792] = 3, + [28804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 3, - sym__statement_terminator, + ACTIONS(711), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(715), 38, + ACTIONS(713), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96241,6 +97170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96249,14 +97179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38841] = 3, + [28853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(693), 3, + ACTIONS(649), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(695), 38, + ACTIONS(651), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96295,14 +97225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38890] = 3, + [28902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 3, + ACTIONS(653), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(703), 38, + ACTIONS(655), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96341,14 +97271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38939] = 3, + [28951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 3, + ACTIONS(657), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(711), 38, + ACTIONS(659), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96387,14 +97317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [38988] = 3, + [29000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 3, + ACTIONS(661), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(719), 38, + ACTIONS(664), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96433,7 +97363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39037] = 3, + [29049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(667), 3, @@ -96479,14 +97409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39086] = 3, + [29098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 3, + ACTIONS(671), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(727), 38, + ACTIONS(673), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96525,14 +97455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39135] = 3, + [29147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 3, + ACTIONS(729), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(633), 38, + ACTIONS(731), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96571,14 +97501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39184] = 3, + [29196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 3, - sym__statement_terminator, + ACTIONS(691), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(677), 38, + ACTIONS(693), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96609,6 +97538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96617,14 +97547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39233] = 3, + [29245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 3, - sym__statement_terminator, + ACTIONS(721), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(681), 38, + ACTIONS(723), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96655,6 +97584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96663,14 +97593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39282] = 3, + [29294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 3, - sym__statement_terminator, + ACTIONS(725), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(686), 38, + ACTIONS(727), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96701,6 +97630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96709,14 +97639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39331] = 3, + [29343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 3, - sym__statement_terminator, + ACTIONS(715), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(615), 38, + ACTIONS(717), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96747,6 +97676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -96755,14 +97685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39380] = 3, + [29392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 3, - sym__statement_terminator, + ACTIONS(477), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(619), 38, + ACTIONS(475), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96793,22 +97722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39429] = 3, + [29441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 3, + ACTIONS(699), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(625), 38, + ACTIONS(701), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96847,60 +97777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39478] = 3, + [29490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 3, - sym__statement_terminator, + ACTIONS(695), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(629), 38, + ACTIONS(2385), 1, anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, + ACTIONS(2387), 1, anon_sym_PLUS_PLUS, + ACTIONS(2389), 1, anon_sym_DASH_DASH, + ACTIONS(2393), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2391), 2, anon_sym_DOT2, anon_sym_COLON_COLON, - [39527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(691), 39, - anon_sym_LBRACK, + ACTIONS(697), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -96935,17 +97828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [39576] = 3, + [29549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(697), 2, + ACTIONS(675), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(699), 39, + ACTIONS(677), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -96985,64 +97874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39625] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 1, - anon_sym_SPACE, - ACTIONS(2399), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2403), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2405), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [39684] = 3, + [29598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(705), 2, + ACTIONS(613), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(707), 39, + ACTIONS(615), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97082,13 +97920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39733] = 3, + [29647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(721), 2, + ACTIONS(617), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(723), 39, + ACTIONS(619), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97128,13 +97966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39782] = 3, + [29696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 2, + ACTIONS(703), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(645), 39, + ACTIONS(705), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97165,7 +98004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -97174,14 +98012,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39831] = 3, + [29745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(715), 39, + ACTIONS(2341), 1, anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2345), 1, + anon_sym_DASH_DASH, + ACTIONS(2349), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2397), 1, + anon_sym_SPACE, + ACTIONS(2347), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2395), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -97212,21 +98059,17 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [39880] = 3, + anon_sym_DASH_DASH_PERCENT, + [29804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(693), 2, + ACTIONS(621), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(695), 39, + ACTIONS(623), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97266,13 +98109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39929] = 3, + [29853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 2, + ACTIONS(625), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(703), 39, + ACTIONS(627), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97312,13 +98155,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [39978] = 3, + [29902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 2, + ACTIONS(629), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(711), 39, + ACTIONS(631), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97358,13 +98201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40027] = 3, + [29951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 2, + ACTIONS(633), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(719), 39, + ACTIONS(635), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97404,13 +98247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40076] = 3, + [30000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 2, + ACTIONS(477), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(727), 39, + ACTIONS(475), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97441,22 +98285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40125] = 3, + [30049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 2, + ACTIONS(637), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(633), 39, + ACTIONS(639), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97496,13 +98339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40174] = 3, + [30098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(675), 2, + ACTIONS(641), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(677), 39, + ACTIONS(643), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97542,14 +98385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40223] = 3, + [30147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(679), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(681), 39, + ACTIONS(2353), 1, anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2357), 1, + anon_sym_DASH_DASH, + ACTIONS(2361), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2359), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2401), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2399), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -97579,22 +98432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [40272] = 3, + anon_sym_DASH_DASH_PERCENT, + [30206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 2, + ACTIONS(649), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(615), 39, + ACTIONS(651), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97634,13 +98482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40321] = 3, + [30255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 2, + ACTIONS(653), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(619), 39, + ACTIONS(655), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97680,13 +98528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40370] = 3, + [30304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 2, + ACTIONS(657), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(625), 39, + ACTIONS(659), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97726,13 +98574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40419] = 3, + [30353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 2, + ACTIONS(661), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(629), 39, + ACTIONS(664), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97772,14 +98620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40468] = 3, + [30402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 3, - sym__statement_terminator, + ACTIONS(667), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(601), 38, + ACTIONS(669), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97810,6 +98657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -97818,14 +98666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40517] = 3, + [30451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 3, - sym__statement_terminator, + ACTIONS(609), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(593), 38, + ACTIONS(611), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97856,6 +98703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -97864,14 +98712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40566] = 3, + [30500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 3, + ACTIONS(707), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(637), 38, + ACTIONS(709), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97910,13 +98758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40615] = 3, + [30549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 2, + ACTIONS(605), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(601), 39, + ACTIONS(607), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -97947,7 +98796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -97956,14 +98804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40664] = 3, + [30598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 3, + ACTIONS(711), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(641), 38, + ACTIONS(713), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98002,13 +98850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40713] = 3, + [30647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 2, + ACTIONS(729), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(593), 39, + ACTIONS(731), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98048,13 +98896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40762] = 3, + [30696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 2, + ACTIONS(679), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(637), 39, + ACTIONS(681), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98094,13 +98942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40811] = 3, + [30745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 2, + ACTIONS(605), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(641), 39, + ACTIONS(607), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98140,14 +98988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40860] = 3, + [30794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 3, + ACTIONS(715), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(611), 38, + ACTIONS(717), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98186,14 +99034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40909] = 3, + [30843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 3, + ACTIONS(721), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(649), 38, + ACTIONS(723), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98232,13 +99080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [40958] = 3, + [30892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 2, + ACTIONS(725), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(611), 39, + ACTIONS(727), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98269,7 +99118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98278,13 +99126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41007] = 3, + [30941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 2, + ACTIONS(695), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(649), 39, + ACTIONS(697), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98315,7 +99164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98324,14 +99172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41056] = 3, + [30990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 3, - sym__statement_terminator, + ACTIONS(695), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 38, + ACTIONS(697), 39, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98362,6 +99209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98370,14 +99218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41105] = 3, + [31039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 3, + ACTIONS(645), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(657), 38, + ACTIONS(647), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98416,14 +99264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41154] = 3, + [31088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 3, + ACTIONS(595), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(661), 38, + ACTIONS(597), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98462,15 +99310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41203] = 3, + [31137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 3, - sym__statement_terminator, - anon_sym_SPACE, + ACTIONS(95), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(665), 38, + ACTIONS(1007), 1, + anon_sym_SPACE, + ACTIONS(97), 5, anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(989), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -98500,22 +99353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [41252] = 3, + anon_sym_DASH_DASH_PERCENT, + [31190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 3, + ACTIONS(601), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(731), 38, + ACTIONS(603), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98554,15 +99404,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41301] = 3, + [31239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 3, + ACTIONS(2403), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2407), 1, + anon_sym_DASH_DASH, + ACTIONS(2411), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(695), 2, sym__statement_terminator, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(673), 38, - anon_sym_LBRACK, + ACTIONS(2409), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(697), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -98596,17 +99455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [41350] = 3, + [31298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 2, + ACTIONS(675), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 39, + ACTIONS(677), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98637,7 +99493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98646,13 +99501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41399] = 3, + [31347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 2, + ACTIONS(613), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(657), 39, + ACTIONS(615), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98683,7 +99539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98692,13 +99547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41448] = 3, + [31396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 2, + ACTIONS(617), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(661), 39, + ACTIONS(619), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98729,7 +99585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98738,14 +99593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41497] = 3, + [31445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(665), 39, + ACTIONS(2341), 1, anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2345), 1, + anon_sym_DASH_DASH, + ACTIONS(2349), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2401), 1, + anon_sym_SPACE, + ACTIONS(2347), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2399), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -98776,21 +99640,18 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [41546] = 3, + anon_sym_DASH_DASH_PERCENT, + [31504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 2, + ACTIONS(683), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(731), 39, + ACTIONS(685), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98821,7 +99682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98830,13 +99690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41595] = 3, + [31553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 2, + ACTIONS(621), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(673), 39, + ACTIONS(623), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98867,7 +99728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -98876,13 +99736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41644] = 3, + [31602] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(595), 2, - sym__statement_terminator, anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, ACTIONS(597), 39, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -98910,26 +99771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, - [41693] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [31651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 3, + ACTIONS(687), 3, sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(597), 38, + ACTIONS(689), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -98968,12 +99828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41742] = 3, + [31700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, + ACTIONS(601), 2, anon_sym_SPACE, - ACTIONS(597), 40, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(603), 39, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99001,26 +99863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_path_command_name_token, sym_stop_parsing, anon_sym_COLON, - [41791] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [31749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 2, + ACTIONS(625), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(597), 39, + ACTIONS(627), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -99051,7 +99912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -99060,91 +99920,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [41840] = 12, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2415), 1, - anon_sym_RPAREN, - ACTIONS(2417), 1, - anon_sym_PIPE, - STATE(735), 1, - sym_file_redirection_operator, - STATE(1154), 1, - sym_merging_redirection_operator, - STATE(1437), 1, - aux_sym__pipeline_tail, - STATE(1438), 1, - sym_redirections, - STATE(1122), 2, - sym_redirection, - aux_sym_redirections_repeat1, - ACTIONS(2409), 6, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2411), 7, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - ACTIONS(2248), 8, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(2413), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - [41907] = 4, - ACTIONS(81), 1, + [31798] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2421), 8, + ACTIONS(629), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(631), 38, + anon_sym_LBRACK, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(2419), 30, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99157,42 +99956,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [41958] = 4, - ACTIONS(81), 1, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [31847] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2427), 8, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(2425), 30, + ACTIONS(2353), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2357), 1, + anon_sym_DASH_DASH, + ACTIONS(2361), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2359), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2397), 2, sym__statement_terminator, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, + anon_sym_SPACE, + ACTIONS(2395), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99205,40 +100011,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [42009] = 4, - ACTIONS(81), 1, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [31906] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2427), 8, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(1007), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(97), 5, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(989), 33, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(2425), 30, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99251,54 +100059,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, + sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [42060] = 12, - ACTIONS(81), 1, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [31959] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(633), 3, sym__statement_terminator, - ACTIONS(2433), 1, - anon_sym_PIPE, - STATE(729), 1, - sym_file_redirection_operator, - STATE(1153), 1, - sym_merging_redirection_operator, - STATE(1511), 1, - aux_sym__pipeline_tail, - STATE(1514), 1, - sym_redirections, - STATE(1138), 2, - sym_redirection, - aux_sym_redirections_repeat1, - ACTIONS(2409), 6, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2411), 7, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - ACTIONS(2248), 8, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(635), 38, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_GT_GT, anon_sym_2_GT, + anon_sym_2_GT_GT, anon_sym_3_GT, + anon_sym_3_GT_GT, anon_sym_4_GT, + anon_sym_4_GT_GT, anon_sym_5_GT, + anon_sym_5_GT_GT, anon_sym_6_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, anon_sym_LT, - ACTIONS(2431), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99311,37 +100101,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - [42127] = 4, - ACTIONS(81), 1, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [32008] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2421), 8, + ACTIONS(683), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(685), 39, + anon_sym_LBRACK, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(2419), 30, - sym__statement_terminator, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99354,28 +100146,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [42178] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2288), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, + sym_stop_parsing, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(2292), 1, anon_sym_DASH_DASH, - ACTIONS(2296), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(651), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2435), 2, anon_sym_DOT2, anon_sym_COLON_COLON, - ACTIONS(653), 33, + [32057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(647), 39, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99404,28 +100193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42237] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 1, - anon_sym_SPACE, - ACTIONS(2304), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, anon_sym_PLUS_PLUS, - ACTIONS(2308), 1, anon_sym_DASH_DASH, - ACTIONS(2312), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2437), 2, anon_sym_DOT2, anon_sym_COLON_COLON, - ACTIONS(653), 34, + [32106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 2, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(689), 39, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99454,76 +100239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42296] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [32155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_SPACE, - ACTIONS(2095), 1, - anon_sym_COLON, - ACTIONS(2335), 1, - anon_sym_PIPE, - ACTIONS(2337), 1, + ACTIONS(691), 3, sym__statement_terminator, - STATE(220), 1, - sym_command_argument_sep, - STATE(325), 1, - aux_sym_command_argument_sep_repeat1, - STATE(724), 1, - sym_file_redirection_operator, - STATE(1083), 1, - sym__command_argument, - STATE(1135), 1, - sym_merging_redirection_operator, - ACTIONS(2439), 2, - sym_command_parameter, - sym_stop_parsing, - STATE(841), 3, - sym__command_element, - sym_redirection, - aux_sym_command_elements_repeat1, - ACTIONS(2298), 12, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - ACTIONS(2248), 15, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - [42367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(683), 2, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(686), 39, + ACTIONS(693), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -99554,7 +100287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, @@ -99563,13 +100295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [42416] = 3, + [32204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(253), 2, + ACTIONS(609), 3, + sym__statement_terminator, anon_sym_SPACE, aux_sym_invokation_foreach_expression_token1, - ACTIONS(251), 38, + ACTIONS(611), 38, anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, @@ -99599,42 +100332,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_DOT2, anon_sym_COLON_COLON, - [42464] = 5, - ACTIONS(81), 1, + [32253] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_LPAREN, - STATE(932), 1, - sym_argument_list, - ACTIONS(605), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(603), 29, + ACTIONS(637), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(639), 38, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99647,39 +100377,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, + sym_command_parameter, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [42516] = 4, - ACTIONS(81), 1, + [32302] = 3, + ACTIONS(3), 1, sym_comment, - STATE(932), 1, - sym_argument_list, - ACTIONS(605), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(603), 30, + ACTIONS(641), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(643), 38, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -99692,32 +100423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [42566] = 8, + [32351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2308), 1, - anon_sym_DASH_DASH, - ACTIONS(2312), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2445), 1, + ACTIONS(671), 2, anon_sym_SPACE, - ACTIONS(2437), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2443), 33, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(673), 39, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99746,29 +100469,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42624] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [32400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(1007), 1, + anon_sym_SPACE, + ACTIONS(97), 5, anon_sym_LBRACK, - ACTIONS(2290), 1, anon_sym_PLUS_PLUS, - ACTIONS(2292), 1, anon_sym_DASH_DASH, - ACTIONS(2296), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2435), 2, anon_sym_DOT2, anon_sym_COLON_COLON, - ACTIONS(2449), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2447), 32, + ACTIONS(989), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99797,19 +100521,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42682] = 3, + [32452] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(253), 3, + ACTIONS(2417), 1, + aux_sym_command_name_token12, + ACTIONS(2419), 1, + anon_sym_DQUOTE2, + ACTIONS(2421), 1, sym__statement_terminator, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(251), 37, - anon_sym_LBRACK, + STATE(900), 1, + aux_sym_command_name_repeat1, + ACTIONS(2413), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2415), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99838,32 +100569,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [42730] = 8, + [32508] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2393), 1, - anon_sym_DASH_DASH, - ACTIONS(2397), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(651), 2, + ACTIONS(2419), 1, + anon_sym_DQUOTE2, + ACTIONS(2427), 1, + aux_sym_command_name_token12, + ACTIONS(2429), 1, sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2451), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 32, + STATE(904), 1, + aux_sym_command_name_repeat1, + ACTIONS(2423), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2425), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99892,27 +100618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - [42788] = 8, + anon_sym_DASH_DASH_PERCENT, + [32564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, - anon_sym_SPACE, - ACTIONS(2399), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2403), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2453), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(653), 33, + ACTIONS(2433), 1, + aux_sym_command_name_token12, + ACTIONS(2435), 1, + anon_sym_DQUOTE2, + STATE(905), 1, + aux_sym_command_name_repeat1, + ACTIONS(2431), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2415), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99941,29 +100665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - [42846] = 8, + anon_sym_DASH_DASH_PERCENT, + [32618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2292), 1, - anon_sym_DASH_DASH, - ACTIONS(2296), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2435), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2445), 2, - sym__statement_terminator, + ACTIONS(477), 2, anon_sym_SPACE, - ACTIONS(2443), 32, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(475), 38, + anon_sym_LBRACK, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -99992,27 +100708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42904] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOT2, + anon_sym_COLON_COLON, + [32666] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 1, + ACTIONS(2403), 1, anon_sym_LBRACK, - ACTIONS(2306), 1, + ACTIONS(2405), 1, anon_sym_PLUS_PLUS, - ACTIONS(2308), 1, + ACTIONS(2407), 1, anon_sym_DASH_DASH, - ACTIONS(2312), 1, + ACTIONS(2411), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(2449), 1, + ACTIONS(2401), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2437), 2, + ACTIONS(2409), 2, anon_sym_DOT2, anon_sym_COLON_COLON, - ACTIONS(2447), 33, + ACTIONS(2399), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -100041,34 +100763,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [42962] = 3, - ACTIONS(81), 1, + [32724] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(629), 9, + ACTIONS(2442), 1, + aux_sym_command_name_token12, + ACTIONS(2445), 1, + anon_sym_DQUOTE2, + ACTIONS(2448), 1, + sym__statement_terminator, + STATE(904), 1, + aux_sym_command_name_repeat1, + ACTIONS(2437), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2440), 34, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(627), 30, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100081,33 +100809,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [43009] = 8, + sym_stop_parsing, + anon_sym_SPACE, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [32780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2393), 1, - anon_sym_DASH_DASH, - ACTIONS(2397), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2445), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2451), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2443), 31, + ACTIONS(2435), 1, + anon_sym_DQUOTE2, + ACTIONS(2452), 1, + aux_sym_command_name_token12, + STATE(906), 1, + aux_sym_command_name_repeat1, + ACTIONS(2450), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2425), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -100136,24 +100857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - [43066] = 7, + anon_sym_DASH_DASH_PERCENT, + [32834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - aux_sym_command_name_token2, - ACTIONS(2461), 1, + ACTIONS(2457), 1, + aux_sym_command_name_token12, + ACTIONS(2460), 1, anon_sym_DQUOTE2, - ACTIONS(2463), 1, - sym__statement_terminator, - STATE(966), 1, + STATE(906), 1, aux_sym_command_name_repeat1, - ACTIONS(2455), 2, + ACTIONS(2454), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2457), 33, + ACTIONS(2440), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -100182,15 +100905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [43121] = 3, + [32888] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(2463), 1, + anon_sym_LPAREN, + STATE(930), 1, + sym_argument_list, + ACTIONS(593), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100200,7 +100929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(697), 30, + ACTIONS(591), 29, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100222,7 +100951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -100231,29 +100959,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43168] = 3, - ACTIONS(81), 1, + [32940] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(703), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(701), 30, + ACTIONS(2385), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(2387), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2389), 1, + anon_sym_DASH_DASH, + ACTIONS(2393), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2397), 1, + anon_sym_SPACE, + ACTIONS(2391), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2395), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100266,38 +101003,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [32998] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2403), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, anon_sym_PLUS_PLUS, + ACTIONS(2407), 1, anon_sym_DASH_DASH, - anon_sym_COLON_COLON, + ACTIONS(2411), 1, aux_sym_invokation_foreach_expression_token1, - [43215] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(711), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, + ACTIONS(2397), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2409), 2, anon_sym_DOT2, - ACTIONS(709), 30, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_COLON_COLON, + ACTIONS(2395), 32, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100310,38 +101054,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [33056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(1007), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(97), 5, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [43262] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(719), 9, + ACTIONS(989), 32, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(717), 30, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100354,24 +101101,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [33108] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 1, + anon_sym_LBRACK, + ACTIONS(2387), 1, anon_sym_PLUS_PLUS, + ACTIONS(2389), 1, anon_sym_DASH_DASH, - anon_sym_COLON_COLON, + ACTIONS(2393), 1, aux_sym_invokation_foreach_expression_token1, - [43309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(253), 3, - sym__statement_terminator, + ACTIONS(2401), 1, anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(251), 36, - anon_sym_LBRACK, + ACTIONS(2391), 2, + anon_sym_DOT2, + anon_sym_COLON_COLON, + ACTIONS(2399), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -100400,36 +101151,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [43356] = 3, - ACTIONS(81), 1, + [33166] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(669), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(667), 30, + ACTIONS(477), 3, + sym__statement_terminator, + anon_sym_SPACE, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(475), 37, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100442,19 +101192,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DOT2, anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [43403] = 3, + [33214] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(727), 9, + STATE(930), 1, + sym_argument_list, + ACTIONS(593), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100464,7 +101216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(725), 30, + ACTIONS(591), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100495,10 +101247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43450] = 3, + [33264] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(633), 9, + ACTIONS(647), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100508,7 +101260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(631), 30, + ACTIONS(645), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100539,10 +101291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43497] = 3, + [33311] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(677), 9, + ACTIONS(631), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100552,7 +101304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(675), 30, + ACTIONS(629), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100583,10 +101335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43544] = 3, + [33358] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(681), 9, + ACTIONS(635), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100596,7 +101348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(679), 30, + ACTIONS(633), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100627,10 +101379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43591] = 3, + [33405] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(686), 9, + ACTIONS(639), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100640,7 +101392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(683), 30, + ACTIONS(637), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100671,59 +101423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43638] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2399), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2403), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2449), 1, - anon_sym_SPACE, - ACTIONS(2453), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2447), 32, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [43695] = 3, + [33452] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(615), 9, + ACTIONS(643), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100733,7 +101436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(613), 30, + ACTIONS(641), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100764,29 +101467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43742] = 3, - ACTIONS(81), 1, + [33499] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(619), 9, + ACTIONS(2448), 1, + sym__statement_terminator, + ACTIONS(2468), 1, + aux_sym_command_name_token12, + ACTIONS(2471), 1, + anon_sym_DQUOTE2, + STATE(919), 1, + aux_sym_command_name_repeat1, + ACTIONS(2465), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2440), 33, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(617), 30, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -100799,19 +101509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [43789] = 3, + sym_stop_parsing, + anon_sym_SPACE, + anon_sym_COLON, + [33554] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(653), 9, + ACTIONS(689), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100821,7 +101528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(651), 30, + ACTIONS(687), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100852,10 +101559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43836] = 3, + [33601] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(657), 9, + ACTIONS(651), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100865,7 +101572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(655), 30, + ACTIONS(649), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100896,10 +101603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43883] = 3, + [33648] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(625), 9, + ACTIONS(655), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100909,7 +101616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(623), 30, + ACTIONS(653), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -100940,54 +101647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [43930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(253), 2, - anon_sym_SPACE, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(251), 37, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOT2, - anon_sym_COLON_COLON, - [43977] = 3, + [33695] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(691), 9, + ACTIONS(693), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -100997,7 +101660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(689), 30, + ACTIONS(691), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101028,59 +101691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44024] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2399), 1, - anon_sym_LBRACK, - ACTIONS(2401), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2403), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2445), 1, - anon_sym_SPACE, - ACTIONS(2453), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2443), 32, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [44081] = 3, + [33742] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(641), 9, + ACTIONS(611), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101090,7 +101704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(639), 30, + ACTIONS(609), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101121,57 +101735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2467), 1, - aux_sym_command_name_token2, - ACTIONS(2469), 1, - anon_sym_DQUOTE2, - STATE(960), 1, - aux_sym_command_name_repeat1, - ACTIONS(2465), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2457), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [44181] = 3, + [33789] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(665), 9, + ACTIONS(659), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101181,7 +101748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(663), 30, + ACTIONS(657), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101212,10 +101779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44228] = 3, + [33836] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(731), 9, + ACTIONS(664), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101225,7 +101792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(729), 30, + ACTIONS(661), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101256,105 +101823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44275] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - aux_sym_command_name_token2, - ACTIONS(2479), 1, - anon_sym_DQUOTE2, - ACTIONS(2482), 1, - sym__statement_terminator, - STATE(959), 1, - aux_sym_command_name_repeat1, - ACTIONS(2471), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 33, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [44330] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 1, - anon_sym_DQUOTE2, - ACTIONS(2488), 1, - aux_sym_command_name_token2, - STATE(964), 1, - aux_sym_command_name_repeat1, - ACTIONS(2484), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2486), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [44383] = 3, + [33883] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(611), 9, + ACTIONS(669), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101364,7 +101836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(609), 30, + ACTIONS(667), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101395,10 +101867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44430] = 3, + [33930] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(649), 9, + ACTIONS(673), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101408,7 +101880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(647), 30, + ACTIONS(671), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101439,10 +101911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44477] = 3, + [33977] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(731), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101452,7 +101924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(705), 30, + ACTIONS(729), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101483,57 +101955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44524] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 1, - aux_sym_command_name_token2, - ACTIONS(2496), 1, - anon_sym_DQUOTE2, - STATE(964), 1, - aux_sym_command_name_repeat1, - ACTIONS(2490), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [44577] = 3, + [34024] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(601), 9, + ACTIONS(681), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101543,7 +101968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(599), 30, + ACTIONS(679), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101574,21 +101999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44624] = 7, + [34071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2476), 1, + aux_sym_command_name_token12, + ACTIONS(2478), 1, anon_sym_DQUOTE2, - ACTIONS(2501), 1, - aux_sym_command_name_token2, - ACTIONS(2503), 1, - sym__statement_terminator, - STATE(959), 1, + STATE(932), 1, aux_sym_command_name_repeat1, - ACTIONS(2499), 2, + ACTIONS(2474), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2486), 33, + ACTIONS(2415), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -101617,29 +102040,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [44679] = 8, + [34124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2393), 1, - anon_sym_DASH_DASH, - ACTIONS(2397), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2449), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2451), 2, - anon_sym_DOT2, - anon_sym_COLON_COLON, - ACTIONS(2447), 31, + ACTIONS(2478), 1, + anon_sym_DQUOTE2, + ACTIONS(2482), 1, + aux_sym_command_name_token12, + STATE(945), 1, + aux_sym_command_name_repeat1, + ACTIONS(2480), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2425), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -101668,13 +102087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - [44736] = 3, + [34177] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(593), 9, + ACTIONS(697), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101684,7 +102106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(591), 30, + ACTIONS(695), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101715,10 +102137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44783] = 3, + [34224] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(673), 9, + ACTIONS(685), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101728,7 +102150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(671), 30, + ACTIONS(683), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101759,10 +102181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44830] = 3, + [34271] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(597), 9, + ACTIONS(723), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101772,7 +102194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(595), 30, + ACTIONS(721), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101803,10 +102225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44877] = 3, + [34318] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(723), 9, + ACTIONS(727), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101816,7 +102238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(721), 30, + ACTIONS(725), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101847,10 +102269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44924] = 3, + [34365] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(645), 9, + ACTIONS(705), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101860,7 +102282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(643), 30, + ACTIONS(703), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101891,10 +102313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [44971] = 3, + [34412] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(637), 9, + ACTIONS(709), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101904,7 +102326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(635), 30, + ACTIONS(707), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101935,10 +102357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [45018] = 3, + [34459] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(715), 9, + ACTIONS(713), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101948,7 +102370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(713), 30, + ACTIONS(711), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -101979,10 +102401,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [45065] = 3, + [34506] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 1, + sym__statement_terminator, + ACTIONS(2486), 1, + aux_sym_command_name_token12, + ACTIONS(2488), 1, + anon_sym_DQUOTE2, + STATE(948), 1, + aux_sym_command_name_repeat1, + ACTIONS(2484), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2415), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_SPACE, + anon_sym_COLON, + [34561] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(717), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -101992,7 +102462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(693), 30, + ACTIONS(715), 30, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT, @@ -102023,29 +102493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [45112] = 3, - ACTIONS(81), 1, + [34608] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(661), 9, + ACTIONS(2448), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2440), 37, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(659), 30, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102058,23 +102527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [45159] = 4, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, + sym_stop_parsing, + anon_sym_SPACE, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [34655] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2509), 3, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - ACTIONS(2507), 8, + ACTIONS(597), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102083,14 +102549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2505), 27, - sym__statement_terminator, + anon_sym_DOT2, + ACTIONS(595), 30, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102110,15 +102572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - [45207] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [34702] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2511), 1, - anon_sym_LPAREN, - STATE(1009), 1, - sym_argument_list, - ACTIONS(605), 9, + ACTIONS(677), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102128,9 +102594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(603), 27, - sym__statement_terminator, + ACTIONS(675), 30, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102150,19 +102616,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [45257] = 3, + [34749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 2, + ACTIONS(2493), 1, + aux_sym_command_name_token12, + ACTIONS(2496), 1, + anon_sym_DQUOTE2, + STATE(945), 1, + aux_sym_command_name_repeat1, + ACTIONS(2490), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2515), 36, + ACTIONS(2440), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102191,36 +102666,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [45303] = 3, - ACTIONS(3), 1, + [34802] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2519), 36, + ACTIONS(615), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(613), 30, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102233,38 +102707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [45349] = 3, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [34849] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2513), 3, - sym__statement_terminator, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2515), 35, + ACTIONS(619), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(617), 30, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102277,27 +102751,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [45395] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [34896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - aux_sym_command_name_token2, - ACTIONS(2525), 1, + ACTIONS(2429), 1, + sym__statement_terminator, + ACTIONS(2488), 1, anon_sym_DQUOTE2, - STATE(989), 1, + ACTIONS(2501), 1, + aux_sym_command_name_token12, + STATE(919), 1, aux_sym_command_name_repeat1, - ACTIONS(2521), 2, + ACTIONS(2499), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2457), 33, + ACTIONS(2425), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102326,19 +102803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [45447] = 4, + [34951] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2527), 3, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - ACTIONS(2507), 8, + ACTIONS(623), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102347,13 +102820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2505), 27, + anon_sym_DOT2, + ACTIONS(621), 30, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102373,15 +102843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - [45495] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [34998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 2, + ACTIONS(2503), 3, + sym__statement_terminator, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 36, + ACTIONS(2505), 36, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102410,37 +102888,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [45541] = 3, - ACTIONS(3), 1, + [35045] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2517), 3, - sym__statement_terminator, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2519), 35, + ACTIONS(627), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(625), 30, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102453,44 +102931,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [45587] = 7, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [35092] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2463), 1, - sym__statement_terminator, - ACTIONS(2531), 1, - aux_sym_command_name_token2, - ACTIONS(2533), 1, - anon_sym_DQUOTE2, - STATE(987), 1, - aux_sym_command_name_repeat1, - ACTIONS(2529), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2457), 32, + ACTIONS(603), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_LT, + anon_sym_DOT2, + ACTIONS(601), 30, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [35139] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2511), 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + ACTIONS(2509), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, anon_sym_LT, + ACTIONS(2507), 28, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102503,26 +103027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_RPAREN, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - [45641] = 7, + [35188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - sym__statement_terminator, - ACTIONS(2533), 1, - anon_sym_DQUOTE2, - ACTIONS(2537), 1, - aux_sym_command_name_token2, - STATE(990), 1, - aux_sym_command_name_repeat1, - ACTIONS(2535), 2, + ACTIONS(2513), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2486), 32, + ACTIONS(2515), 37, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102551,18 +103064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [45695] = 3, + anon_sym_DASH_DASH_PERCENT, + [35235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 3, + ACTIONS(2448), 3, sym__statement_terminator, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 35, + ACTIONS(2440), 36, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102591,26 +103109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [45741] = 6, + [35282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, - anon_sym_DQUOTE2, - ACTIONS(2541), 1, - aux_sym_command_name_token2, - STATE(992), 1, - aux_sym_command_name_repeat1, - ACTIONS(2539), 2, + ACTIONS(2503), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2486), 33, + ACTIONS(2505), 37, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102639,26 +103152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [45793] = 7, + anon_sym_DASH_DASH_PERCENT, + [35329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 1, + ACTIONS(2513), 3, sym__statement_terminator, - ACTIONS(2546), 1, - aux_sym_command_name_token2, - ACTIONS(2549), 1, - anon_sym_DQUOTE2, - STATE(990), 1, - aux_sym_command_name_repeat1, - ACTIONS(2543), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 32, + ACTIONS(2515), 36, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102687,16 +103197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [45847] = 4, + anon_sym_DASH_DASH_PERCENT, + [35376] = 3, ACTIONS(81), 1, sym_comment, - STATE(1009), 1, - sym_argument_list, - ACTIONS(605), 9, + ACTIONS(607), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102706,9 +103218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(603), 28, - sym__statement_terminator, + ACTIONS(605), 30, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102729,62 +103241,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [45895] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 1, - aux_sym_command_name_token2, - ACTIONS(2558), 1, - anon_sym_DQUOTE2, - STATE(992), 1, - aux_sym_command_name_repeat1, - ACTIONS(2552), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 33, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - [45947] = 3, + [35423] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(601), 9, + ACTIONS(2517), 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + ACTIONS(2509), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102793,10 +103265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - anon_sym_DOT2, - ACTIONS(599), 28, + ACTIONS(2507), 28, sym__statement_terminator, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102816,17 +103293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [45992] = 3, + [35472] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(649), 9, + ACTIONS(701), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -102836,9 +103307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(647), 28, - sym__statement_terminator, + ACTIONS(699), 30, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -102859,19 +103330,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46037] = 3, + [35519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 2, + ACTIONS(2448), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 35, + ACTIONS(2440), 36, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102900,20 +103373,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [46082] = 3, + [35565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 2, + ACTIONS(2503), 3, + sym__statement_terminator, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2519), 35, + ACTIONS(2505), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -102942,36 +103417,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [46127] = 3, - ACTIONS(81), 1, + [35611] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(673), 9, + ACTIONS(2503), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2505), 36, anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(671), 28, - sym__statement_terminator, - anon_sym_LBRACK, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -102984,17 +103458,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [46172] = 3, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, + sym_stop_parsing, + anon_sym_SPACE, + anon_sym_COLON, + [35657] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(597), 9, + ACTIONS(2519), 1, + anon_sym_LPAREN, + STATE(997), 1, + sym_argument_list, + ACTIONS(593), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103004,7 +103484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(595), 28, + ACTIONS(591), 27, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103026,23 +103506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46217] = 5, + [35707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, - anon_sym_SPACE, - ACTIONS(2561), 1, - anon_sym_COMMA, - STATE(1003), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 34, + ACTIONS(2448), 3, + sym__statement_terminator, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2440), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -103072,19 +103549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [46266] = 3, + [35753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(2513), 3, sym__statement_terminator, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2519), 34, + ACTIONS(2515), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -103113,106 +103591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, sym_stop_parsing, anon_sym_SPACE, anon_sym_COLON, - [46311] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(637), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(635), 28, - sym__statement_terminator, - anon_sym_LBRACK, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [46356] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(625), 9, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - anon_sym_DOT2, - ACTIONS(623), 28, - sym__statement_terminator, - anon_sym_LBRACK, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [46401] = 5, + [35799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_SPACE, - ACTIONS(2561), 1, - anon_sym_COMMA, - STATE(1023), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 34, + ACTIONS(2513), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2515), 36, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -103244,55 +103636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, sym_stop_parsing, + anon_sym_SPACE, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [46450] = 3, + [35845] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(251), 7, - sym_decimal_integer_literal, - sym_simple_name, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(253), 30, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_EQ, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [46495] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(653), 9, + STATE(997), 1, + sym_argument_list, + ACTIONS(593), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103302,7 +103656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(651), 28, + ACTIONS(591), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103331,10 +103685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46540] = 3, + [35893] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(657), 9, + ACTIONS(631), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103344,7 +103698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(655), 28, + ACTIONS(629), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103373,29 +103727,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46585] = 3, - ACTIONS(81), 1, + [35938] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(691), 9, + ACTIONS(2521), 1, + anon_sym_COMMA, + STATE(971), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(780), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(782), 33, anon_sym_GT, + anon_sym_GT_GT, anon_sym_2_GT, + anon_sym_2_GT_GT, anon_sym_3_GT, + anon_sym_3_GT_GT, anon_sym_4_GT, + anon_sym_4_GT_GT, anon_sym_5_GT, + anon_sym_5_GT_GT, anon_sym_6_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_DOT2, - ACTIONS(689), 28, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [35987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2523), 1, + anon_sym_COMMA, + STATE(971), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(771), 2, sym__statement_terminator, - anon_sym_LBRACK, + anon_sym_SPACE, + ACTIONS(773), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -103408,17 +103809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [46630] = 3, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [36036] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(699), 9, + ACTIONS(697), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103428,7 +103828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(697), 28, + ACTIONS(695), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103457,10 +103857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46675] = 3, + [36081] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(629), 9, + ACTIONS(701), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103470,7 +103870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(627), 28, + ACTIONS(699), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103499,54 +103899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 1, - anon_sym_COMMA, - STATE(1020), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(782), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(784), 33, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [46769] = 3, + [36126] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(707), 9, + ACTIONS(647), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103556,7 +103912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(705), 28, + ACTIONS(645), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103585,10 +103941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46814] = 3, + [36171] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(723), 9, + ACTIONS(664), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103598,7 +103954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(721), 28, + ACTIONS(661), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103627,14 +103983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46859] = 3, + [36216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 3, - sym__statement_terminator, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2515), 34, + ACTIONS(780), 1, + anon_sym_SPACE, + ACTIONS(2526), 1, + anon_sym_COMMA, + STATE(981), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(782), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -103663,16 +104021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, sym_stop_parsing, - anon_sym_SPACE, anon_sym_COLON, - [46904] = 3, + anon_sym_DASH_DASH_PERCENT, + [36265] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(641), 9, + ACTIONS(597), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103682,7 +104040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(639), 28, + ACTIONS(595), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103711,10 +104069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46949] = 3, + [36310] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(715), 9, + ACTIONS(705), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103724,7 +104082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(713), 28, + ACTIONS(703), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103753,10 +104111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [46994] = 3, + [36355] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(695), 9, + ACTIONS(709), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103766,7 +104124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(693), 28, + ACTIONS(707), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -103795,22 +104153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47039] = 9, + [36400] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2569), 1, - anon_sym_DASH_DASH, - ACTIONS(2571), 1, - anon_sym_DOT2, - ACTIONS(2573), 1, - anon_sym_COLON_COLON, - ACTIONS(2575), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 8, + ACTIONS(713), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103819,8 +104165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(651), 23, + anon_sym_DOT2, + ACTIONS(711), 28, sym__statement_terminator, + anon_sym_LBRACK, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -103843,61 +104191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, - [47096] = 9, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2577), 1, - anon_sym_LBRACK, - ACTIONS(2579), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, anon_sym_DASH_DASH, - ACTIONS(2583), 1, - anon_sym_DOT2, - ACTIONS(2585), 1, anon_sym_COLON_COLON, - ACTIONS(2587), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(653), 8, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(651), 23, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [47153] = 3, + [36445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2515), 35, + ACTIONS(771), 1, + anon_sym_SPACE, + ACTIONS(2528), 1, + anon_sym_COMMA, + STATE(981), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(773), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -103926,39 +104233,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, sym_stop_parsing, - anon_sym_SPACE, anon_sym_COLON, - [47198] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH_PERCENT, + [36494] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2563), 1, + ACTIONS(475), 7, + sym_decimal_integer_literal, + sym_simple_name, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(477), 30, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + anon_sym_LBRACK, + anon_sym_EQ, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(1034), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(769), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(771), 33, + anon_sym_LBRACE, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [36539] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(689), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(687), 28, + sym__statement_terminator, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -103971,16 +104316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [47247] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [36584] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(703), 9, + ACTIONS(717), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -103990,7 +104336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(701), 28, + ACTIONS(715), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104019,10 +104365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47292] = 3, + [36629] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(711), 9, + ACTIONS(669), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104032,7 +104378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(709), 28, + ACTIONS(667), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104061,31 +104407,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47337] = 5, - ACTIONS(3), 1, + [36674] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(775), 1, - anon_sym_SPACE, - ACTIONS(2589), 1, - anon_sym_COMMA, - STATE(1023), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 34, + ACTIONS(673), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(671), 28, + sym__statement_terminator, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -104098,17 +104442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [47386] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [36719] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(719), 9, + ACTIONS(651), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104118,7 +104462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(717), 28, + ACTIONS(649), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104147,10 +104491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47431] = 3, + [36764] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(669), 9, + ACTIONS(607), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104160,7 +104504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(667), 28, + ACTIONS(605), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104189,10 +104533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47476] = 3, + [36809] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(727), 9, + ACTIONS(603), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104202,7 +104546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(725), 28, + ACTIONS(601), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104231,10 +104575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47521] = 3, + [36854] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(593), 9, + ACTIONS(639), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104244,7 +104588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(591), 28, + ACTIONS(637), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104273,29 +104617,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47566] = 3, - ACTIONS(3), 1, + [36899] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2482), 3, - sym__statement_terminator, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 34, + ACTIONS(685), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(683), 28, + sym__statement_terminator, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -104308,17 +104652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - sym_stop_parsing, - anon_sym_SPACE, - anon_sym_COLON, - [47611] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [36944] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(661), 9, + ACTIONS(693), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104328,7 +104672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(659), 28, + ACTIONS(691), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104357,10 +104701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47656] = 3, + [36989] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(633), 9, + ACTIONS(655), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104370,7 +104714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(631), 28, + ACTIONS(653), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104399,10 +104743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47701] = 3, + [37034] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(677), 9, + ACTIONS(643), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104412,7 +104756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(675), 28, + ACTIONS(641), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104441,10 +104785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47746] = 3, + [37079] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(665), 9, + ACTIONS(731), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104454,7 +104798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(663), 28, + ACTIONS(729), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104483,10 +104827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47791] = 3, + [37124] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(731), 9, + ACTIONS(611), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104496,7 +104840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(729), 28, + ACTIONS(609), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104525,32 +104869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47836] = 5, - ACTIONS(3), 1, + [37169] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_COMMA, - STATE(1034), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(775), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(777), 33, + ACTIONS(681), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(679), 28, + sym__statement_terminator, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -104563,16 +104904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [47885] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [37214] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(681), 9, + ACTIONS(659), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104582,7 +104924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(679), 28, + ACTIONS(657), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104611,10 +104953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47930] = 3, + [37259] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(686), 9, + ACTIONS(635), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104624,7 +104966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(683), 28, + ACTIONS(633), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104653,10 +104995,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [47975] = 3, + [37304] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(611), 9, + ACTIONS(2531), 1, + anon_sym_LBRACK, + ACTIONS(2533), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2535), 1, + anon_sym_DASH_DASH, + ACTIONS(2537), 1, + anon_sym_DOT2, + ACTIONS(2539), 1, + anon_sym_COLON_COLON, + ACTIONS(2541), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(697), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104665,8 +105019,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, + ACTIONS(695), 23, + sym__statement_terminator, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [37361] = 9, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2543), 1, + anon_sym_LBRACK, + ACTIONS(2545), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2547), 1, + anon_sym_DASH_DASH, + ACTIONS(2549), 1, anon_sym_DOT2, - ACTIONS(609), 28, + ACTIONS(2551), 1, + anon_sym_COLON_COLON, + ACTIONS(2553), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(697), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(695), 23, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [37418] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(723), 9, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + anon_sym_DOT2, + ACTIONS(721), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104695,10 +105133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [48020] = 3, + [37463] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(615), 9, + ACTIONS(727), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104708,7 +105146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(613), 28, + ACTIONS(725), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104737,10 +105175,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [48065] = 3, + [37508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(765), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(767), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [37557] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(619), 9, + ACTIONS(677), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104750,7 +105232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(617), 28, + ACTIONS(675), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104779,10 +105261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [48110] = 3, + [37602] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(645), 9, + ACTIONS(615), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -104792,7 +105274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(643), 28, + ACTIONS(613), 28, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -104821,75 +105303,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [48155] = 5, - ACTIONS(3), 1, + [37647] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_COMMA, - STATE(1041), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(775), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(777), 32, + ACTIONS(619), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [48203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(769), 2, + anon_sym_DOT2, + ACTIONS(617), 28, sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(771), 32, - anon_sym_GT, + anon_sym_LBRACK, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -104902,79 +105338,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [48251] = 5, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [37692] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(2600), 1, - anon_sym_COMMA, - STATE(1064), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(782), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(784), 32, + ACTIONS(623), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [48299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(775), 1, - anon_sym_SPACE, - ACTIONS(2602), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 33, - anon_sym_GT, + anon_sym_DOT2, + ACTIONS(621), 28, + sym__statement_terminator, + anon_sym_LBRACK, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -104987,37 +105380,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [48347] = 5, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [37737] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(769), 1, - anon_sym_SPACE, - ACTIONS(2605), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 33, + ACTIONS(627), 9, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + anon_sym_DOT2, + ACTIONS(625), 28, + sym__statement_terminator, + anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -105030,18 +105422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [48395] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [37782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 1, + ACTIONS(765), 1, anon_sym_SPACE, - ACTIONS(777), 35, + ACTIONS(2526), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(767), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105072,22 +105469,17 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [48439] = 5, + [37831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_COMMA, - STATE(1042), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(782), 2, + ACTIONS(715), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(784), 32, + ACTIONS(717), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105117,19 +105509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [48487] = 5, + anon_sym_DASH_DASH_PERCENT, + [37875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2557), 1, anon_sym_LPAREN, - ACTIONS(2611), 1, - anon_sym_SPACE, - STATE(1116), 1, + STATE(1066), 1, sym_argument_list, - ACTIONS(2607), 33, + ACTIONS(2559), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2555), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105158,21 +105553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [48535] = 5, + [37923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, + ACTIONS(703), 1, anon_sym_SPACE, - ACTIONS(2605), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 33, + ACTIONS(705), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105203,15 +105593,18 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [48583] = 3, + anon_sym_DASH_DASH_PERCENT, + [37967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(771), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(653), 35, + ACTIONS(773), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105241,113 +105634,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [48627] = 9, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2569), 1, - anon_sym_DASH_DASH, - ACTIONS(2575), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2613), 1, - anon_sym_DOT2, - ACTIONS(2615), 1, - anon_sym_COLON_COLON, - ACTIONS(653), 8, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(651), 22, - sym__statement_terminator, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_COMMA, - anon_sym_PIPE, - [48683] = 9, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2577), 1, - anon_sym_LBRACK, - ACTIONS(2579), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, - anon_sym_DASH_DASH, - ACTIONS(2587), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2617), 1, - anon_sym_DOT2, - ACTIONS(2619), 1, - anon_sym_COLON_COLON, - ACTIONS(653), 8, - anon_sym_GT, - anon_sym_2_GT, - anon_sym_3_GT, - anon_sym_4_GT, - anon_sym_5_GT, - anon_sym_6_GT, - anon_sym_STAR_GT, - anon_sym_LT, - ACTIONS(651), 22, - anon_sym_GT_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT_GT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [48739] = 3, + [38011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 2, - sym__statement_terminator, + ACTIONS(765), 1, anon_sym_SPACE, - ACTIONS(653), 34, + ACTIONS(2561), 1, + anon_sym_COMMA, + STATE(1026), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(767), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105377,18 +105678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [48783] = 3, + [38059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 2, - sym__statement_terminator, + ACTIONS(2559), 1, anon_sym_SPACE, - ACTIONS(657), 34, + ACTIONS(2563), 1, + anon_sym_LPAREN, + STATE(1052), 1, + sym_argument_list, + ACTIONS(2555), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105417,18 +105720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [48827] = 3, + [38107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(715), 1, anon_sym_SPACE, - ACTIONS(657), 35, + ACTIONS(717), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105464,13 +105766,17 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [48871] = 3, + [38151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 2, + ACTIONS(2565), 1, + anon_sym_COMMA, + STATE(1018), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(771), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(661), 34, + ACTIONS(773), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105500,18 +105806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [48915] = 3, + [38199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 2, + ACTIONS(2568), 1, + anon_sym_COMMA, + STATE(1018), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(780), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(665), 34, + ACTIONS(782), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105541,18 +105849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [48959] = 3, + [38247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 2, + ACTIONS(2568), 1, + anon_sym_COMMA, + STATE(1019), 1, + aux_sym_array_literal_expression_repeat1, + ACTIONS(765), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(731), 34, + ACTIONS(767), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105582,17 +105892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [49003] = 3, + [38295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 1, + ACTIONS(695), 1, anon_sym_SPACE, - ACTIONS(661), 35, + ACTIONS(697), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105628,17 +105936,13 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49047] = 5, + [38339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(775), 2, + ACTIONS(695), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(777), 32, + ACTIONS(697), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105668,15 +105972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49095] = 3, + anon_sym_DASH_DASH_PERCENT, + [38383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 1, + ACTIONS(699), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(665), 35, + ACTIONS(701), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105706,18 +106013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49139] = 3, + [38427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(699), 1, anon_sym_SPACE, - ACTIONS(731), 35, + ACTIONS(701), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105753,13 +106059,12 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49183] = 3, + [38471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 2, - sym__statement_terminator, + ACTIONS(771), 1, anon_sym_SPACE, - ACTIONS(673), 34, + ACTIONS(773), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105789,22 +106094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49227] = 5, + [38515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, + ACTIONS(780), 1, + anon_sym_SPACE, + ACTIONS(2561), 1, anon_sym_COMMA, - STATE(1041), 1, + STATE(1030), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(769), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(771), 32, + ACTIONS(782), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105833,20 +106138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [49275] = 5, + [38563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 1, + ACTIONS(703), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2624), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 33, + ACTIONS(705), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105875,21 +106178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49323] = 5, + [38607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, + ACTIONS(707), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2627), 1, - anon_sym_COMMA, - STATE(1068), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 33, + ACTIONS(709), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105918,22 +106219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49371] = 5, + [38651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2629), 1, - anon_sym_LPAREN, - STATE(1110), 1, - sym_argument_list, - ACTIONS(2611), 2, + ACTIONS(711), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2607), 32, + ACTIONS(713), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -105962,20 +106260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49419] = 5, + [38695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(771), 1, anon_sym_SPACE, - ACTIONS(2627), 1, + ACTIONS(2570), 1, anon_sym_COMMA, - STATE(1065), 1, + STATE(1030), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 33, + ACTIONS(773), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106004,18 +106304,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [49467] = 3, - ACTIONS(3), 1, + [38743] = 9, + ACTIONS(81), 1, sym_comment, - ACTIONS(775), 2, + ACTIONS(2531), 1, + anon_sym_LBRACK, + ACTIONS(2533), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2535), 1, + anon_sym_DASH_DASH, + ACTIONS(2541), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2573), 1, + anon_sym_DOT2, + ACTIONS(2575), 1, + anon_sym_COLON_COLON, + ACTIONS(697), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(695), 22, sym__statement_terminator, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_COMMA, + anon_sym_PIPE, + [38799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, anon_sym_SPACE, - ACTIONS(777), 34, + ACTIONS(709), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106045,17 +106391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49511] = 3, + [38843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 1, + ACTIONS(711), 1, anon_sym_SPACE, - ACTIONS(673), 35, + ACTIONS(713), 35, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106091,22 +106438,22 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49555] = 9, + [38887] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(2577), 1, + ACTIONS(2543), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2545), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, + ACTIONS(2547), 1, anon_sym_DASH_DASH, - ACTIONS(2587), 1, + ACTIONS(2553), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(2617), 1, + ACTIONS(2577), 1, anon_sym_DOT2, - ACTIONS(2619), 1, + ACTIONS(2579), 1, anon_sym_COLON_COLON, - ACTIONS(2447), 8, + ACTIONS(697), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -106115,7 +106462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2449), 21, + ACTIONS(695), 22, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -106136,17 +106483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - [49610] = 5, + [38943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(2559), 1, anon_sym_SPACE, - ACTIONS(2631), 1, - anon_sym_COMMA, - STATE(1097), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 32, + ACTIONS(2581), 1, + anon_sym_LPAREN, + STATE(1081), 1, + sym_argument_list, + ACTIONS(2555), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106179,12 +106527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49657] = 3, + [38990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 1, + ACTIONS(2583), 1, + anon_sym_LPAREN, + STATE(1090), 1, + sym_argument_list, + ACTIONS(2559), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(777), 34, + ACTIONS(2555), 31, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106213,19 +106566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49700] = 3, + [39037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 2, - sym__statement_terminator, + ACTIONS(771), 1, anon_sym_SPACE, - ACTIONS(2633), 33, + ACTIONS(773), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106255,26 +106604,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [49743] = 9, + [39080] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2543), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2545), 1, anon_sym_PLUS_PLUS, - ACTIONS(2569), 1, + ACTIONS(2547), 1, anon_sym_DASH_DASH, - ACTIONS(2575), 1, + ACTIONS(2553), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(2613), 1, + ACTIONS(2577), 1, anon_sym_DOT2, - ACTIONS(2615), 1, + ACTIONS(2579), 1, anon_sym_COLON_COLON, - ACTIONS(2447), 8, + ACTIONS(2395), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -106283,15 +106633,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2449), 21, + ACTIONS(2397), 21, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_RPAREN, + anon_sym_PIPE, + [39135] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(95), 5, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(989), 8, + anon_sym_GT, + anon_sym_2_GT, + anon_sym_3_GT, + anon_sym_4_GT, + anon_sym_5_GT, + anon_sym_6_GT, + anon_sym_STAR_GT, + anon_sym_LT, + ACTIONS(1007), 21, + anon_sym_GT_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT_GT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + anon_sym_RPAREN, + anon_sym_PIPE, + [39182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(703), 1, + anon_sym_SPACE, + ACTIONS(705), 34, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [39225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 2, sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2399), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, + anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -106304,13 +106771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, - [49798] = 3, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [39268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, + ACTIONS(645), 1, anon_sym_SPACE, - ACTIONS(2633), 34, + ACTIONS(647), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106345,13 +106817,53 @@ static const uint16_t ts_small_parse_table[] = { sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [49841] = 3, + [39311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2585), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + anon_sym_DASH_DASH_PERCENT, + [39354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 2, + ACTIONS(695), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(777), 33, + ACTIONS(697), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106385,13 +106897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49884] = 3, + [39397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 2, + ACTIONS(691), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(653), 33, + ACTIONS(693), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106421,20 +106933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49927] = 5, + anon_sym_DASH_DASH_PERCENT, + [39440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(771), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2637), 1, - anon_sym_LPAREN, - STATE(1131), 1, - sym_argument_list, - ACTIONS(2607), 32, + ACTIONS(773), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106463,14 +106972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [49974] = 3, + [39483] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(251), 9, + ACTIONS(475), 9, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -106480,7 +106990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_GT, anon_sym_LT, anon_sym_DOT2, - ACTIONS(253), 26, + ACTIONS(477), 26, sym__statement_terminator, anon_sym_LBRACK, anon_sym_GT_GT, @@ -106507,53 +107017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_COLON_COLON, aux_sym_invokation_foreach_expression_token1, - [50017] = 3, + [39526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(651), 1, - anon_sym_SPACE, - ACTIONS(653), 34, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 2, + ACTIONS(2591), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(657), 33, + ACTIONS(2589), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106583,74 +107053,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50103] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH_PERCENT, + [39569] = 9, + ACTIONS(81), 1, sym_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1133), 1, - sym_argument_list, - ACTIONS(2611), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2607), 31, + ACTIONS(2531), 1, + anon_sym_LBRACK, + ACTIONS(2533), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2535), 1, + anon_sym_DASH_DASH, + ACTIONS(2541), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2573), 1, + anon_sym_DOT2, + ACTIONS(2575), 1, + anon_sym_COLON_COLON, + ACTIONS(2395), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(659), 2, + ACTIONS(2397), 21, sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(661), 33, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -106663,74 +107102,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50193] = 3, - ACTIONS(3), 1, + [39624] = 5, + ACTIONS(81), 1, sym_comment, - ACTIONS(663), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(665), 33, + ACTIONS(97), 1, + anon_sym_DOT2, + ACTIONS(95), 5, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(989), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(729), 2, + ACTIONS(1007), 21, sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(731), 33, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -106743,19 +107144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50279] = 3, + [39671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 2, - sym__statement_terminator, + ACTIONS(2595), 1, anon_sym_SPACE, - ACTIONS(673), 33, + ACTIONS(2593), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106785,16 +107180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50322] = 3, + anon_sym_DASH_DASH_PERCENT, + [39714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(655), 1, + ACTIONS(2599), 1, anon_sym_SPACE, - ACTIONS(657), 34, + ACTIONS(2597), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106825,16 +107221,17 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50365] = 3, + anon_sym_DASH_DASH_PERCENT, + [39757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 1, + ACTIONS(609), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(661), 34, + ACTIONS(611), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106864,17 +107261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50408] = 3, + anon_sym_DASH_DASH_PERCENT, + [39800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 1, + ACTIONS(2401), 1, anon_sym_SPACE, - ACTIONS(665), 34, + ACTIONS(2399), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106905,16 +107301,16 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50451] = 3, + anon_sym_DASH_DASH_PERCENT, + [39843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(711), 1, anon_sym_SPACE, - ACTIONS(731), 34, + ACTIONS(713), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -106949,58 +107345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50494] = 5, + [39886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(782), 2, - sym__statement_terminator, + ACTIONS(715), 1, anon_sym_SPACE, - ACTIONS(784), 31, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, - anon_sym_SPACE, - ACTIONS(2631), 1, - anon_sym_COMMA, - STATE(1072), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 32, + ACTIONS(717), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107029,58 +107379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [50588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, anon_sym_COMMA, - STATE(1094), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(775), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(777), 31, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_2_GT, - anon_sym_2_GT_GT, - anon_sym_3_GT, - anon_sym_3_GT_GT, - anon_sym_4_GT, - anon_sym_4_GT_GT, - anon_sym_5_GT, - anon_sym_5_GT_GT, - anon_sym_6_GT, - anon_sym_6_GT_GT, - anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50635] = 3, + [39929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(671), 1, + ACTIONS(691), 1, anon_sym_SPACE, - ACTIONS(673), 34, + ACTIONS(693), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107111,21 +107421,16 @@ static const uint16_t ts_small_parse_table[] = { sym_command_parameter, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50678] = 5, + anon_sym_DASH_DASH_PERCENT, + [39972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, - anon_sym_COMMA, - STATE(1094), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(769), 2, - sym__statement_terminator, + ACTIONS(609), 1, anon_sym_SPACE, - ACTIONS(771), 31, + ACTIONS(611), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107154,19 +107459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50725] = 5, + anon_sym_DASH_DASH_PERCENT, + [40015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(775), 1, + ACTIONS(2397), 1, anon_sym_SPACE, - ACTIONS(2646), 1, - anon_sym_COMMA, - STATE(1097), 1, - aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 32, + ACTIONS(2395), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107195,57 +107499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50772] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2653), 1, - anon_sym_SEMI, - STATE(1113), 1, - aux_sym_script_block_repeat1, - ACTIONS(2649), 5, - sym_decimal_integer_literal, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2651), 27, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - sym_simple_name, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [50818] = 3, + anon_sym_DASH_DASH_PERCENT, + [40058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2603), 1, anon_sym_SPACE, - ACTIONS(611), 33, + ACTIONS(2601), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107274,17 +107539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [50860] = 3, + [40101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 1, + ACTIONS(645), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(649), 33, + ACTIONS(647), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107313,17 +107580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [50902] = 3, + [40144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, + ACTIONS(2397), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2633), 33, + ACTIONS(2395), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107353,17 +107621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [50944] = 3, + anon_sym_DASH_DASH_PERCENT, + [40187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 2, + ACTIONS(2603), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(611), 32, + ACTIONS(2601), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107392,16 +107660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [50986] = 3, + [40230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 1, + ACTIONS(695), 1, anon_sym_SPACE, - ACTIONS(2655), 33, + ACTIONS(697), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107430,17 +107699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51028] = 3, + [40273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, + ACTIONS(2595), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2659), 33, + ACTIONS(2593), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107469,17 +107740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [51070] = 3, + [40316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2599), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2443), 33, + ACTIONS(2597), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107508,18 +107780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [51112] = 3, + [40359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(699), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2443), 32, + ACTIONS(701), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107548,17 +107820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51154] = 3, + [40402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 2, + ACTIONS(703), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2447), 32, + ACTIONS(705), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107587,56 +107860,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51196] = 3, - ACTIONS(81), 1, + [40445] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(251), 6, - sym_decimal_integer_literal, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT2, - ACTIONS(253), 28, + ACTIONS(707), 2, sym__statement_terminator, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, + anon_sym_SPACE, + ACTIONS(709), 33, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - anon_sym_COLON_COLON, - aux_sym_invokation_foreach_expression_token1, - [51238] = 3, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [40488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 2, + ACTIONS(711), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2655), 32, + ACTIONS(713), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107665,17 +107940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51280] = 3, + [40531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 2, + ACTIONS(715), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2663), 32, + ACTIONS(717), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107704,17 +107980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51322] = 3, + [40574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 2, - sym__statement_terminator, + ACTIONS(699), 1, anon_sym_SPACE, - ACTIONS(2659), 32, + ACTIONS(701), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107743,16 +108019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51364] = 3, + [40617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 1, + ACTIONS(2587), 1, anon_sym_SPACE, - ACTIONS(2447), 33, + ACTIONS(2585), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107781,58 +108059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [51406] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2671), 1, - anon_sym_SEMI, - STATE(1115), 1, - aux_sym_script_block_repeat1, - ACTIONS(2667), 5, - sym_decimal_integer_literal, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2669), 27, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - sym_simple_name, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [51452] = 3, + [40660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2591), 1, anon_sym_SPACE, - ACTIONS(2673), 33, + ACTIONS(2589), 34, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107861,58 +108099,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, anon_sym_DASH_DASH_PERCENT, - [51494] = 5, - ACTIONS(81), 1, + [40703] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 1, - anon_sym_SEMI, - STATE(1115), 1, - aux_sym_script_block_repeat1, - ACTIONS(1428), 5, - sym_decimal_integer_literal, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2677), 27, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - sym_simple_name, - anon_sym_LBRACK, - aux_sym_comparison_operator_token37, - aux_sym_comparison_operator_token50, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, + ACTIONS(707), 1, + anon_sym_SPACE, + ACTIONS(709), 34, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_2_GT, + anon_sym_2_GT_GT, + anon_sym_3_GT, + anon_sym_3_GT_GT, + anon_sym_4_GT, + anon_sym_4_GT_GT, + anon_sym_5_GT, + anon_sym_5_GT_GT, + anon_sym_6_GT, + anon_sym_6_GT_GT, + anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym_expression_with_unary_operator_token1, - anon_sym_BANG, - aux_sym_expression_with_unary_operator_token2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [51540] = 3, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [40746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(691), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2663), 33, + ACTIONS(693), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107941,18 +108180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51582] = 3, + [40788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 2, - sym__statement_terminator, + ACTIONS(645), 1, anon_sym_SPACE, - ACTIONS(2633), 32, + ACTIONS(647), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -107982,16 +108219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, sym_command_parameter, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [51624] = 3, + [40830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 2, + ACTIONS(2591), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(649), 32, + ACTIONS(2589), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108020,17 +108258,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51666] = 3, + [40872] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2609), 1, + anon_sym_SEMI, + STATE(1097), 1, + aux_sym_script_block_repeat1, + ACTIONS(2605), 5, + sym_decimal_integer_literal, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2607), 27, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + sym_simple_name, + anon_sym_LBRACK, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + [40918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 2, + ACTIONS(645), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2673), 32, + ACTIONS(647), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108059,41 +108338,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - anon_sym_DASH_DASH_PERCENT, - [51708] = 8, - ACTIONS(81), 1, + [40960] = 3, + ACTIONS(3), 1, sym_comment, - STATE(729), 1, - sym_file_redirection_operator, - STATE(1153), 1, - sym_merging_redirection_operator, - ACTIONS(2691), 2, - sym__statement_terminator, - anon_sym_PIPE, - STATE(1120), 2, - sym_redirection, - aux_sym_redirections_repeat1, - ACTIONS(2685), 7, + ACTIONS(2599), 1, + anon_sym_SPACE, + ACTIONS(2597), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - ACTIONS(2682), 8, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [41002] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(475), 6, + sym_decimal_integer_literal, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT2, + ACTIONS(477), 28, + sym__statement_terminator, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + anon_sym_LBRACK, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + [41044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 1, + anon_sym_SPACE, + ACTIONS(2585), 33, anon_sym_GT, + anon_sym_GT_GT, anon_sym_2_GT, + anon_sym_2_GT_GT, anon_sym_3_GT, + anon_sym_3_GT_GT, anon_sym_4_GT, + anon_sym_4_GT_GT, anon_sym_5_GT, + anon_sym_5_GT_GT, anon_sym_6_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, anon_sym_LT, - ACTIONS(2688), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108106,12 +108453,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - [51759] = 3, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [41086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, + ACTIONS(2401), 1, anon_sym_SPACE, - ACTIONS(2659), 32, + ACTIONS(2399), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108140,41 +108493,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [51800] = 8, - ACTIONS(81), 1, + [41128] = 3, + ACTIONS(3), 1, sym_comment, - STATE(735), 1, - sym_file_redirection_operator, - STATE(1154), 1, - sym_merging_redirection_operator, - ACTIONS(2693), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - STATE(1139), 2, - sym_redirection, - aux_sym_redirections_repeat1, - ACTIONS(2411), 7, + ACTIONS(2591), 1, + anon_sym_SPACE, + ACTIONS(2589), 33, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_2_GT, anon_sym_2_GT_GT, + anon_sym_3_GT, anon_sym_3_GT_GT, + anon_sym_4_GT, anon_sym_4_GT_GT, + anon_sym_5_GT, anon_sym_5_GT_GT, + anon_sym_6_GT, anon_sym_6_GT_GT, + anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - ACTIONS(2248), 8, + anon_sym_LT, + anon_sym_STAR_GT_AMP1, + anon_sym_2_GT_AMP1, + anon_sym_3_GT_AMP1, + anon_sym_4_GT_AMP1, + anon_sym_5_GT_AMP1, + anon_sym_6_GT_AMP1, + anon_sym_STAR_GT_AMP2, + anon_sym_1_GT_AMP2, + anon_sym_3_GT_AMP2, + anon_sym_4_GT_AMP2, + anon_sym_5_GT_AMP2, + anon_sym_6_GT_AMP2, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [41170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 2, + sym__statement_terminator, + anon_sym_SPACE, + ACTIONS(2585), 32, anon_sym_GT, + anon_sym_GT_GT, anon_sym_2_GT, + anon_sym_2_GT_GT, anon_sym_3_GT, + anon_sym_3_GT_GT, anon_sym_4_GT, + anon_sym_4_GT_GT, anon_sym_5_GT, + anon_sym_5_GT_GT, anon_sym_6_GT, + anon_sym_6_GT_GT, anon_sym_STAR_GT, + anon_sym_STAR_GT_GT, anon_sym_LT, - ACTIONS(2413), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108187,12 +108571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - [51851] = 3, + sym_command_parameter, + anon_sym_LPAREN, + anon_sym_PIPE, + sym_stop_parsing, + anon_sym_COLON, + [41212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 1, + ACTIONS(609), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2655), 32, + ACTIONS(611), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108221,17 +108611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [51892] = 3, + [41254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 2, - sym__statement_terminator, + ACTIONS(2595), 1, anon_sym_SPACE, - ACTIONS(611), 31, + ACTIONS(2593), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108260,15 +108649,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [51933] = 3, + [41296] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2615), 1, + anon_sym_SEMI, + STATE(1079), 1, + aux_sym_script_block_repeat1, + ACTIONS(2611), 5, + sym_decimal_integer_literal, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2613), 27, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + sym_simple_name, + anon_sym_LBRACK, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + [41342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2599), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(611), 32, + ACTIONS(2597), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108297,17 +108730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [51974] = 3, + [41384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 2, - sym__statement_terminator, + ACTIONS(691), 1, anon_sym_SPACE, - ACTIONS(2447), 31, + ACTIONS(693), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108336,16 +108768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52015] = 3, + [41426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 2, - sym__statement_terminator, + ACTIONS(609), 1, anon_sym_SPACE, - ACTIONS(2443), 31, + ACTIONS(611), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108374,15 +108807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52056] = 3, + [41468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2397), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2443), 32, + ACTIONS(2395), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108411,17 +108847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52097] = 3, + [41510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 2, + ACTIONS(2603), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(649), 31, + ACTIONS(2601), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108450,15 +108886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52138] = 3, + [41552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 1, + ACTIONS(2397), 1, anon_sym_SPACE, - ACTIONS(649), 32, + ACTIONS(2395), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108487,16 +108924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52179] = 3, + [41594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2603), 1, anon_sym_SPACE, - ACTIONS(2663), 32, + ACTIONS(2601), 33, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108525,16 +108963,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52220] = 3, + [41636] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_SEMI, + STATE(1097), 1, + aux_sym_script_block_repeat1, + ACTIONS(1334), 5, + sym_decimal_integer_literal, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2617), 27, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + sym_simple_name, + anon_sym_LBRACK, + aux_sym_comparison_operator_token37, + aux_sym_comparison_operator_token50, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_expression_with_unary_operator_token1, + anon_sym_BANG, + aux_sym_expression_with_unary_operator_token2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + [41682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2595), 2, + sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2673), 32, + ACTIONS(2593), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108563,17 +109044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52261] = 3, + [41724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 2, + ACTIONS(2401), 2, sym__statement_terminator, anon_sym_SPACE, - ACTIONS(2663), 31, + ACTIONS(2399), 32, anon_sym_GT, anon_sym_GT_GT, anon_sym_2_GT, @@ -108602,69 +109083,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, sym_command_parameter, + anon_sym_LPAREN, anon_sym_PIPE, sym_stop_parsing, anon_sym_COLON, - [52302] = 3, - ACTIONS(3), 1, + [41766] = 8, + ACTIONS(81), 1, sym_comment, - ACTIONS(2657), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2655), 31, - anon_sym_GT, + STATE(707), 1, + sym_file_redirection_operator, + STATE(1120), 1, + sym_merging_redirection_operator, + ACTIONS(2631), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + STATE(1100), 2, + sym_redirection, + aux_sym_redirections_repeat1, + ACTIONS(2625), 7, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [52343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2661), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2659), 31, + ACTIONS(2622), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + ACTIONS(2628), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108677,70 +109130,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [52384] = 3, - ACTIONS(3), 1, + [41817] = 8, + ACTIONS(81), 1, sym_comment, - ACTIONS(2449), 1, - anon_sym_SPACE, - ACTIONS(2447), 32, - anon_sym_GT, + STATE(709), 1, + sym_file_redirection_operator, + STATE(1114), 1, + sym_merging_redirection_operator, + ACTIONS(2633), 2, + sym__statement_terminator, + anon_sym_PIPE, + STATE(1103), 2, + sym_redirection, + aux_sym_redirections_repeat1, + ACTIONS(2365), 7, anon_sym_GT_GT, - anon_sym_2_GT, anon_sym_2_GT_GT, - anon_sym_3_GT, anon_sym_3_GT_GT, - anon_sym_4_GT, anon_sym_4_GT_GT, - anon_sym_5_GT, anon_sym_5_GT_GT, - anon_sym_6_GT, anon_sym_6_GT_GT, - anon_sym_STAR_GT, anon_sym_STAR_GT_GT, - anon_sym_LT, - anon_sym_STAR_GT_AMP1, - anon_sym_2_GT_AMP1, - anon_sym_3_GT_AMP1, - anon_sym_4_GT_AMP1, - anon_sym_5_GT_AMP1, - anon_sym_6_GT_AMP1, - anon_sym_STAR_GT_AMP2, - anon_sym_1_GT_AMP2, - anon_sym_3_GT_AMP2, - anon_sym_4_GT_AMP2, - anon_sym_5_GT_AMP2, - anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_RPAREN, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [52425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 2, - sym__statement_terminator, - anon_sym_SPACE, - ACTIONS(2673), 31, + ACTIONS(2131), 8, anon_sym_GT, - anon_sym_GT_GT, anon_sym_2_GT, - anon_sym_2_GT_GT, anon_sym_3_GT, - anon_sym_3_GT_GT, anon_sym_4_GT, - anon_sym_4_GT_GT, anon_sym_5_GT, - anon_sym_5_GT_GT, anon_sym_6_GT, - anon_sym_6_GT_GT, anon_sym_STAR_GT, - anon_sym_STAR_GT_GT, anon_sym_LT, + ACTIONS(2367), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108753,24 +109173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - sym_command_parameter, - anon_sym_PIPE, - sym_stop_parsing, - anon_sym_COLON, - [52466] = 8, + [41868] = 8, ACTIONS(81), 1, sym_comment, - STATE(729), 1, + STATE(707), 1, sym_file_redirection_operator, - STATE(1153), 1, + STATE(1120), 1, sym_merging_redirection_operator, - ACTIONS(2693), 2, - sym__statement_terminator, + ACTIONS(2633), 2, + anon_sym_RPAREN, anon_sym_PIPE, - STATE(1120), 2, + STATE(1100), 2, sym_redirection, aux_sym_redirections_repeat1, - ACTIONS(2411), 7, + ACTIONS(2365), 7, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -108778,7 +109194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_GT, anon_sym_6_GT_GT, anon_sym_STAR_GT_GT, - ACTIONS(2248), 8, + ACTIONS(2131), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108787,7 +109203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2431), 12, + ACTIONS(2381), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108800,20 +109216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - [52517] = 8, + [41919] = 8, ACTIONS(81), 1, sym_comment, - STATE(735), 1, + STATE(709), 1, sym_file_redirection_operator, - STATE(1154), 1, + STATE(1114), 1, sym_merging_redirection_operator, - ACTIONS(2691), 2, - anon_sym_RPAREN, + ACTIONS(2631), 2, + sym__statement_terminator, anon_sym_PIPE, - STATE(1139), 2, + STATE(1103), 2, sym_redirection, aux_sym_redirections_repeat1, - ACTIONS(2685), 7, + ACTIONS(2625), 7, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -108821,7 +109237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_GT, anon_sym_6_GT_GT, anon_sym_STAR_GT_GT, - ACTIONS(2682), 8, + ACTIONS(2622), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108830,7 +109246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2695), 12, + ACTIONS(2635), 12, anon_sym_STAR_GT_AMP1, anon_sym_2_GT_AMP1, anon_sym_3_GT_AMP1, @@ -108843,14 +109259,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - [52568] = 5, + [41970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 32, + sym_decimal_integer_literal, + sym_hexadecimal_integer_literal, + sym_real_literal, + aux_sym_expandable_string_literal_token1, + aux_sym_expandable_here_string_literal_token1, + sym_verbatim_string_characters, + sym_verbatim_here_string_characters, + anon_sym_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + sym_path_command_name_token, + anon_sym_DOLLAR_LPAREN, + anon_sym_AT_LPAREN, + anon_sym_AT_LBRACE, + [42008] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2640), 1, anon_sym_COMMA, - STATE(1142), 1, + STATE(1108), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 8, + ACTIONS(782), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108859,7 +109311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(769), 21, + ACTIONS(780), 21, sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, @@ -108881,14 +109333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_PIPE, - [52611] = 5, + [42051] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2642), 1, anon_sym_COMMA, - STATE(1140), 1, + STATE(1106), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 8, + ACTIONS(773), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108897,8 +109349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(782), 21, - sym__statement_terminator, + ACTIONS(771), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -108918,15 +109369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_RPAREN, anon_sym_PIPE, - [52654] = 5, + [42094] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2645), 1, anon_sym_COMMA, - STATE(1142), 1, + STATE(1109), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 8, + ACTIONS(767), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108935,8 +109387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(775), 21, - sym__statement_terminator, + ACTIONS(765), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -108956,15 +109407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_RPAREN, anon_sym_PIPE, - [52697] = 5, + [42137] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2703), 1, + ACTIONS(2647), 1, anon_sym_COMMA, - STATE(1144), 1, + STATE(1108), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(771), 8, + ACTIONS(773), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -108973,7 +109425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(769), 21, + ACTIONS(771), 21, + sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -108993,16 +109446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, anon_sym_PIPE, - [52740] = 5, + [42180] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2645), 1, anon_sym_COMMA, - STATE(1144), 1, + STATE(1106), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(777), 8, + ACTIONS(782), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109011,7 +109463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(775), 21, + ACTIONS(780), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109033,14 +109485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, anon_sym_RPAREN, anon_sym_PIPE, - [52783] = 5, + [42223] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2703), 1, + ACTIONS(2640), 1, anon_sym_COMMA, - STATE(1143), 1, + STATE(1105), 1, aux_sym_array_literal_expression_repeat1, - ACTIONS(784), 8, + ACTIONS(767), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109049,7 +109501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(782), 21, + ACTIONS(765), 21, + sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109069,18 +109522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, anon_sym_PIPE, - [52826] = 3, + [42266] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2708), 5, + ACTIONS(2650), 5, sym_decimal_integer_literal, anon_sym_DOLLAR_, aux_sym_variable_token1, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2710), 25, + ACTIONS(2652), 25, sym_hexadecimal_integer_literal, sym_real_literal, aux_sym_expandable_string_literal_token1, @@ -109106,16 +109558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [52864] = 3, + [42304] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2712), 5, + ACTIONS(2654), 5, sym_decimal_integer_literal, anon_sym_DOLLAR_, aux_sym_variable_token1, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2714), 25, + ACTIONS(2656), 25, sym_hexadecimal_integer_literal, sym_real_literal, aux_sym_expandable_string_literal_token1, @@ -109141,10 +109593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [52902] = 3, + [42342] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2633), 8, + ACTIONS(2395), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109153,7 +109605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2635), 21, + ACTIONS(2397), 21, sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, @@ -109175,10 +109627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_PIPE, - [52939] = 3, + [42379] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2655), 8, + ACTIONS(2589), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109187,7 +109639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2657), 21, + ACTIONS(2591), 21, + sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109207,12 +109660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, anon_sym_PIPE, - [52976] = 3, + [42416] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2447), 8, + ACTIONS(2593), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109221,7 +109673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2449), 21, + ACTIONS(2595), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109243,10 +109695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, anon_sym_RPAREN, anon_sym_PIPE, - [53013] = 3, + [42453] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2673), 8, + ACTIONS(2601), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109255,7 +109707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2675), 21, + ACTIONS(2603), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109277,10 +109729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, anon_sym_RPAREN, anon_sym_PIPE, - [53050] = 3, + [42490] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2655), 8, + ACTIONS(2395), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109289,8 +109741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2657), 21, - sym__statement_terminator, + ACTIONS(2397), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109310,11 +109761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_RPAREN, anon_sym_PIPE, - [53087] = 3, + [42527] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2659), 8, + ACTIONS(2601), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109323,7 +109775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2661), 21, + ACTIONS(2603), 21, sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, @@ -109345,10 +109797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_PIPE, - [53124] = 3, + [42564] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2659), 8, + ACTIONS(2585), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109357,7 +109809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2661), 21, + ACTIONS(2587), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109379,10 +109831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT_AMP2, anon_sym_RPAREN, anon_sym_PIPE, - [53161] = 3, + [42601] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2447), 8, + ACTIONS(2589), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109391,8 +109843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2449), 21, - sym__statement_terminator, + ACTIONS(2591), 21, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109412,11 +109863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, + anon_sym_RPAREN, anon_sym_PIPE, - [53198] = 3, + [42638] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2673), 8, + ACTIONS(2585), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109425,7 +109877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2675), 21, + ACTIONS(2587), 21, sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, @@ -109447,10 +109899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, anon_sym_PIPE, - [53235] = 3, + [42675] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2633), 8, + ACTIONS(2593), 8, anon_sym_GT, anon_sym_2_GT, anon_sym_3_GT, @@ -109459,7 +109911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_6_GT, anon_sym_STAR_GT, anon_sym_LT, - ACTIONS(2635), 21, + ACTIONS(2595), 21, + sym__statement_terminator, anon_sym_GT_GT, anon_sym_2_GT_GT, anon_sym_3_GT_GT, @@ -109479,16 +109932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_4_GT_AMP2, anon_sym_5_GT_AMP2, anon_sym_6_GT_AMP2, - anon_sym_RPAREN, anon_sym_PIPE, - [53272] = 4, + [42712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - STATE(1158), 1, + STATE(1125), 1, aux_sym_script_block_repeat1, - ACTIONS(1428), 22, + ACTIONS(2658), 22, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -109511,14 +109963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [53306] = 4, + [42746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(2662), 1, anon_sym_SEMI, - STATE(1160), 1, + STATE(1124), 1, aux_sym_script_block_repeat1, - ACTIONS(2719), 22, + ACTIONS(1334), 22, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -109541,14 +109993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [53340] = 4, + [42780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2667), 1, anon_sym_SEMI, - STATE(1158), 1, + STATE(1124), 1, aux_sym_script_block_repeat1, - ACTIONS(2723), 22, + ACTIONS(2665), 22, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -109571,38 +110023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [53374] = 2, + [42814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 22, - sym_decimal_integer_literal, - sym_hexadecimal_integer_literal, - sym_real_literal, - aux_sym_expandable_string_literal_token1, - aux_sym_expandable_here_string_literal_token1, - sym_verbatim_string_characters, - sym_verbatim_here_string_characters, - anon_sym_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_command_name_token1, - sym_path_command_name_token, - anon_sym_DOLLAR_LPAREN, - anon_sym_AT_LPAREN, - anon_sym_AT_LBRACE, - [53402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, + ACTIONS(2671), 1, anon_sym_SPACE, - ACTIONS(2729), 21, + ACTIONS(2669), 21, sym_decimal_integer_literal, sym_hexadecimal_integer_literal, sym_real_literal, @@ -109624,33 +110050,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_AT_LPAREN, anon_sym_AT_LBRACE, - [53432] = 13, + [42844] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2677), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109659,33 +110085,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53480] = 13, + [42892] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2681), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1180), 2, + STATE(1144), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109694,33 +110120,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53528] = 13, + [42940] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2683), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1166), 2, + STATE(1136), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109729,33 +110155,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53576] = 13, + [42988] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2745), 1, + ACTIONS(2685), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109764,33 +110190,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53624] = 13, + [43036] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2745), 1, + ACTIONS(2687), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1168), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109799,33 +110225,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53672] = 13, + [43084] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2689), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1127), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109834,33 +110260,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53720] = 13, + [43132] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2691), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1174), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109869,33 +110295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53768] = 13, + [43180] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2751), 1, + ACTIONS(2693), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1179), 2, + STATE(1133), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109904,33 +110330,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53816] = 13, + [43228] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2753), 1, + ACTIONS(2677), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1182), 2, + STATE(1130), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109939,33 +110365,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53864] = 13, + [43276] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2755), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -109974,33 +110400,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53912] = 13, + [43324] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2757), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1172), 2, + STATE(1139), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110009,33 +110435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [53960] = 13, + [43372] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2697), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110044,33 +110470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54008] = 13, + [43420] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1176), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110079,33 +110505,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54056] = 13, + [43468] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, + ACTIONS(2691), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1147), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110114,68 +110540,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54104] = 13, + [43516] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2701), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2704), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, + ACTIONS(2713), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, - ACTIONS(21), 2, + ACTIONS(2710), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2715), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1178), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, - ACTIONS(101), 5, + ACTIONS(2707), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54152] = 13, + [43564] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1146), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110184,33 +110610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54200] = 13, + [43612] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1145), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110219,33 +110645,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54248] = 13, + [43660] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110254,33 +110680,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54296] = 13, + [43708] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2753), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110289,33 +110715,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54344] = 13, + [43756] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2769), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110324,33 +110750,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54392] = 13, + [43804] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2771), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1187), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110359,33 +110785,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54440] = 13, + [43852] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1163), 2, + STATE(1138), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110394,68 +110820,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54488] = 13, + [43900] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2778), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2787), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, - ACTIONS(2784), 2, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2789), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1151), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, - ACTIONS(2781), 5, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54536] = 13, + [43948] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2792), 1, + ACTIONS(2732), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1181), 2, + STATE(1131), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110464,33 +110890,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54584] = 13, + [43996] = 13, ACTIONS(81), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2673), 1, sym_simple_name, - ACTIONS(2735), 1, + ACTIONS(2675), 1, anon_sym_LBRACK, - ACTIONS(2794), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, - STATE(1242), 1, + STATE(1208), 1, sym_attribute, - STATE(1265), 1, + STATE(1241), 1, sym_type_literal, - STATE(1638), 1, + STATE(1582), 1, sym_variable, - STATE(1897), 1, + STATE(1816), 1, sym_class_property_definition, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1185), 2, + STATE(1141), 2, sym_class_method_definition, aux_sym_class_statement_repeat2, - STATE(1244), 2, + STATE(1210), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -110499,29 +110925,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [54632] = 9, + [44044] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(2740), 1, anon_sym_DOLLAR2, - ACTIONS(2802), 1, + ACTIONS(2742), 1, anon_sym_DQUOTE, - ACTIONS(2804), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - STATE(995), 1, + STATE(1307), 1, sym__expandable_string_literal_immediate, - STATE(1471), 1, + STATE(1415), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1210), 3, + STATE(1178), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2798), 4, + ACTIONS(2738), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110529,29 +110955,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54671] = 9, + [44083] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2808), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR2, - ACTIONS(2810), 1, + ACTIONS(2750), 1, anon_sym_DQUOTE, - STATE(988), 1, + STATE(965), 1, sym__expandable_string_literal_immediate, STATE(1434), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1195), 3, + STATE(1171), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2806), 4, + ACTIONS(2746), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110559,29 +110985,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54710] = 9, + [44122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2814), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR2, - ACTIONS(2816), 1, + ACTIONS(2756), 1, anon_sym_DQUOTE, - STATE(984), 1, + STATE(955), 1, sym__expandable_string_literal_immediate, - STATE(1539), 1, + STATE(1406), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1193), 3, + STATE(1176), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2812), 4, + ACTIONS(2752), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110589,29 +111015,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54749] = 9, + [44161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2820), 1, + ACTIONS(2760), 1, anon_sym_DOLLAR2, - ACTIONS(2822), 1, + ACTIONS(2762), 1, anon_sym_DQUOTE, - STATE(1344), 1, + STATE(942), 1, sym__expandable_string_literal_immediate, - STATE(1482), 1, + STATE(1464), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1198), 3, + STATE(1174), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2818), 4, + ACTIONS(2758), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110619,29 +111045,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54788] = 9, + [44200] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + STATE(590), 1, + sym_command_invokation_operator, + STATE(731), 1, + sym_command_name, + STATE(1458), 1, + sym_foreach_command, + STATE(1616), 1, + sym_command, + ACTIONS(15), 2, + anon_sym_DOT, + anon_sym_AMP, + ACTIONS(2764), 2, + anon_sym_PERCENT, + aux_sym_foreach_command_token1, + ACTIONS(1909), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + [44237] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(583), 1, + sym_command_invokation_operator, + STATE(734), 1, + sym_command_name, + STATE(1503), 1, + sym_foreach_command, + STATE(1637), 1, + sym_command, + ACTIONS(15), 2, + anon_sym_DOT, + anon_sym_AMP, + ACTIONS(2766), 2, + anon_sym_PERCENT, + aux_sym_foreach_command_token1, + ACTIONS(1881), 11, + aux_sym_command_name_token1, + aux_sym_command_name_token2, + aux_sym_command_name_token3, + aux_sym_command_name_token4, + aux_sym_command_name_token5, + aux_sym_command_name_token6, + aux_sym_command_name_token7, + aux_sym_command_name_token8, + aux_sym_command_name_token9, + aux_sym_command_name_token10, + aux_sym_command_name_token11, + [44274] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2826), 1, + ACTIONS(2770), 1, anon_sym_DOLLAR2, - ACTIONS(2828), 1, + ACTIONS(2772), 1, anon_sym_DQUOTE, - STATE(1028), 1, + STATE(961), 1, sym__expandable_string_literal_immediate, - STATE(1452), 1, + STATE(1449), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1204), 3, + STATE(1177), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2824), 4, + ACTIONS(2768), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110649,27 +111133,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54827] = 8, + [44313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2774), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2778), 1, + anon_sym_DOLLAR, + ACTIONS(2780), 1, + aux_sym_expandable_string_literal_token5, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2832), 1, - anon_sym_DOLLAR2, - ACTIONS(2834), 1, - anon_sym_DQUOTE, - STATE(1427), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1217), 3, + STATE(1451), 1, + aux_sym_expandable_string_literal_repeat2, + ACTIONS(2776), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + STATE(1161), 3, sym_variable, sym_sub_expression, - aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2830), 4, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + aux_sym_expandable_string_literal_repeat1, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110677,28 +111162,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54863] = 9, + [44351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2842), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - STATE(1448), 1, + ACTIONS(2786), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2790), 1, + aux_sym_expandable_string_literal_token5, + STATE(1427), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2788), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1169), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110706,27 +111191,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54901] = 8, + [44389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2778), 1, + anon_sym_DOLLAR, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2848), 1, - anon_sym_DOLLAR2, - ACTIONS(2850), 1, - anon_sym_DQUOTE, - STATE(1505), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1217), 3, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2796), 1, + aux_sym_expandable_string_literal_token5, + STATE(1453), 1, + aux_sym_expandable_string_literal_repeat2, + ACTIONS(2794), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + STATE(1190), 3, sym_variable, sym_sub_expression, - aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2830), 4, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + aux_sym_expandable_string_literal_repeat1, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110734,28 +111220,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54937] = 9, + [44427] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2798), 1, aux_sym_expandable_string_literal_token5, - STATE(1481), 1, + STATE(1459), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110763,28 +111249,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [54975] = 9, + [44465] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2854), 1, + ACTIONS(2800), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2858), 1, + ACTIONS(2804), 1, aux_sym_expandable_string_literal_token5, - STATE(1467), 1, + STATE(1510), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2856), 3, + ACTIONS(2802), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1207), 3, + STATE(1164), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110792,27 +111278,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55013] = 8, + [44503] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2778), 1, + anon_sym_DOLLAR, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2860), 1, - anon_sym_DOLLAR2, - ACTIONS(2862), 1, - anon_sym_DQUOTE, - STATE(1483), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1217), 3, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2806), 1, + aux_sym_expandable_string_literal_token5, + STATE(1457), 1, + aux_sym_expandable_string_literal_repeat2, + ACTIONS(2794), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + STATE(1190), 3, sym_variable, sym_sub_expression, - aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2830), 4, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + aux_sym_expandable_string_literal_repeat1, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110820,28 +111307,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55049] = 9, + [44541] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2864), 1, + ACTIONS(2808), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2868), 1, + ACTIONS(2812), 1, aux_sym_expandable_string_literal_token5, - STATE(1485), 1, + STATE(1461), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2866), 3, + ACTIONS(2810), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1200), 3, + STATE(1168), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110849,28 +111336,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55087] = 9, + [44579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2814), 1, aux_sym_expandable_string_literal_token5, - STATE(1542), 1, + STATE(1412), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110878,28 +111365,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55125] = 9, + [44617] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2872), 1, + ACTIONS(2816), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2876), 1, + ACTIONS(2820), 1, aux_sym_expandable_string_literal_token5, - STATE(1487), 1, + STATE(1456), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2874), 3, + ACTIONS(2818), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1202), 3, + STATE(1162), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110907,28 +111394,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55163] = 9, + [44655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2822), 1, aux_sym_expandable_string_literal_token5, - STATE(1488), 1, + STATE(1462), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110936,28 +111423,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55201] = 9, + [44693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2880), 1, + ACTIONS(2792), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2884), 1, + ACTIONS(2824), 1, aux_sym_expandable_string_literal_token5, - STATE(1491), 1, + STATE(1431), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2882), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1205), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110965,27 +111452,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55239] = 8, + [44731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2778), 1, + anon_sym_DOLLAR, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2886), 1, - anon_sym_DOLLAR2, - ACTIONS(2888), 1, - anon_sym_DQUOTE, - STATE(1455), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1217), 3, + ACTIONS(2826), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2830), 1, + aux_sym_expandable_string_literal_token5, + STATE(1444), 1, + aux_sym_expandable_string_literal_repeat2, + ACTIONS(2828), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + STATE(1173), 3, sym_variable, sym_sub_expression, - aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2830), 4, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + aux_sym_expandable_string_literal_repeat1, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -110993,28 +111481,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55275] = 9, + [44769] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, - anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2890), 1, - aux_sym_expandable_string_literal_token5, - STATE(1492), 1, - aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + ACTIONS(2834), 1, + anon_sym_DOLLAR2, + ACTIONS(2836), 1, + anon_sym_DQUOTE, + STATE(1438), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + STATE(1187), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + aux_sym__expandable_string_literal_immediate_repeat1, + ACTIONS(2832), 4, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111022,28 +111509,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55313] = 9, + [44805] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2892), 1, + ACTIONS(2792), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2896), 1, + ACTIONS(2838), 1, aux_sym_expandable_string_literal_token5, - STATE(1480), 1, + STATE(1445), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2894), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1211), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111051,28 +111538,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55351] = 9, + [44843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2898), 1, + ACTIONS(2792), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2840), 1, aux_sym_expandable_string_literal_token5, - STATE(1468), 1, + STATE(1448), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2794), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1190), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111080,28 +111567,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55389] = 9, + [44881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2900), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2904), 1, - aux_sym_expandable_string_literal_token5, - STATE(1533), 1, - aux_sym_expandable_string_literal_repeat2, - ACTIONS(2902), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - STATE(1209), 3, + ACTIONS(2842), 1, + anon_sym_DOLLAR2, + ACTIONS(2844), 1, + anon_sym_DQUOTE, + STATE(1468), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + STATE(1187), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + aux_sym__expandable_string_literal_immediate_repeat1, + ACTIONS(2832), 4, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111109,28 +111595,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55427] = 9, + [44917] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2906), 1, + ACTIONS(2846), 1, + aux_sym_expandable_string_literal_token2, + ACTIONS(2850), 1, aux_sym_expandable_string_literal_token5, - STATE(1535), 1, + STATE(1414), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, + ACTIONS(2848), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + STATE(1172), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111138,27 +111624,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55465] = 8, + [44955] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2908), 1, + ACTIONS(2852), 1, anon_sym_DOLLAR2, - ACTIONS(2910), 1, + ACTIONS(2854), 1, anon_sym_DQUOTE, - STATE(1474), 1, + STATE(1411), 1, aux_sym__expandable_string_literal_immediate_repeat2, - STATE(1217), 3, + STATE(1187), 3, sym_variable, sym_sub_expression, aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2830), 4, + ACTIONS(2832), 4, aux_sym__expandable_string_literal_immediate_token1, aux_sym__expandable_string_literal_immediate_token2, aux_sym__expandable_string_literal_immediate_token3, anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2796), 7, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111166,28 +111652,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55501] = 9, + [44991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2840), 1, - anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2912), 1, - aux_sym_expandable_string_literal_token5, - STATE(1516), 1, - aux_sym_expandable_string_literal_repeat2, - ACTIONS(2838), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + ACTIONS(2856), 1, + anon_sym_DOLLAR2, + ACTIONS(2858), 1, + anon_sym_DQUOTE, + STATE(1450), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + STATE(1187), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + aux_sym__expandable_string_literal_immediate_repeat1, + ACTIONS(2832), 4, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111195,28 +111680,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55539] = 9, + [45027] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2914), 1, - aux_sym_expandable_string_literal_token2, - ACTIONS(2918), 1, - aux_sym_expandable_string_literal_token5, - STATE(1446), 1, - aux_sym_expandable_string_literal_repeat2, - ACTIONS(2916), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - STATE(1194), 3, + ACTIONS(2860), 1, + anon_sym_DOLLAR2, + ACTIONS(2862), 1, + anon_sym_DQUOTE, + STATE(1417), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + STATE(1187), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + aux_sym__expandable_string_literal_immediate_repeat1, + ACTIONS(2832), 4, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + ACTIONS(2736), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111224,28 +111708,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55577] = 9, + [45063] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2778), 1, anon_sym_DOLLAR, - ACTIONS(2846), 1, + ACTIONS(2784), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2920), 1, + ACTIONS(2864), 1, aux_sym_expandable_string_literal_token2, - ACTIONS(2924), 1, + ACTIONS(2868), 1, aux_sym_expandable_string_literal_token5, - STATE(1479), 1, + STATE(1407), 1, aux_sym_expandable_string_literal_repeat2, - ACTIONS(2922), 3, + ACTIONS(2866), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - STATE(1196), 3, + STATE(1166), 3, sym_variable, sym_sub_expression, aux_sym_expandable_string_literal_repeat1, - ACTIONS(2844), 7, + ACTIONS(2782), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111253,25 +111737,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55615] = 7, + [45101] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 1, + ACTIONS(2874), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2926), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2928), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1225), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111279,25 +111763,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55648] = 7, + [45134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2880), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2936), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2938), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1223), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111305,25 +111789,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55681] = 7, + [45167] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2946), 1, + ACTIONS(2886), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2942), 2, + ACTIONS(2882), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2944), 3, + ACTIONS(2884), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1228), 3, + STATE(1181), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111331,24 +111815,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55714] = 6, + [45200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2954), 2, - anon_sym_DOLLAR2, - anon_sym_DQUOTE, - STATE(1217), 3, + ACTIONS(2888), 1, + aux_sym_expandable_here_string_literal_token5, + ACTIONS(2870), 2, + aux_sym_expandable_string_literal_token4, + aux_sym_expandable_here_string_literal_token4, + ACTIONS(2872), 3, + anon_sym_DOLLAR, + aux_sym_expandable_here_string_literal_token2, + aux_sym_expandable_here_string_literal_token3, + STATE(1196), 3, sym_variable, sym_sub_expression, - aux_sym__expandable_string_literal_immediate_repeat1, - ACTIONS(2951), 4, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - ACTIONS(2948), 7, + aux_sym_expandable_here_string_literal_repeat1, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111356,25 +111841,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55745] = 7, + [45233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2963), 1, + ACTIONS(2894), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2890), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2892), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1189), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111382,25 +111867,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55778] = 7, + [45266] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(2976), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2965), 2, - aux_sym_expandable_string_literal_token2, - anon_sym_DOLLAR, - ACTIONS(2968), 3, - aux_sym_expandable_string_literal_token3, + ACTIONS(2896), 1, + aux_sym_expandable_here_string_literal_token5, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - STATE(1219), 3, + aux_sym_expandable_here_string_literal_token4, + ACTIONS(2872), 3, + anon_sym_DOLLAR, + aux_sym_expandable_here_string_literal_token2, + aux_sym_expandable_here_string_literal_token3, + STATE(1196), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_string_literal_repeat1, - ACTIONS(2973), 7, + aux_sym_expandable_here_string_literal_repeat1, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111408,25 +111893,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55811] = 7, + [45299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2983), 1, + ACTIONS(2902), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2979), 2, + ACTIONS(2898), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2981), 3, + ACTIONS(2900), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1222), 3, + STATE(1195), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111434,25 +111919,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55844] = 7, + [45332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - aux_sym_expandable_here_string_literal_token5, - ACTIONS(2996), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2985), 2, - aux_sym_expandable_string_literal_token4, - aux_sym_expandable_here_string_literal_token4, - ACTIONS(2988), 3, - anon_sym_DOLLAR, - aux_sym_expandable_here_string_literal_token2, - aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + ACTIONS(2910), 2, + anon_sym_DOLLAR2, + anon_sym_DQUOTE, + STATE(1187), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2993), 7, + aux_sym__expandable_string_literal_immediate_repeat1, + ACTIONS(2907), 4, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + ACTIONS(2904), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111460,25 +111944,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55877] = 7, + [45363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2999), 1, + ACTIONS(2919), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2915), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2917), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1192), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111486,25 +111970,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55910] = 7, + [45396] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3001), 1, + ACTIONS(2921), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111512,25 +111996,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55943] = 7, + [45429] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(2929), 1, + aux_sym_expandable_string_literal_token5, ACTIONS(2934), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3007), 1, - aux_sym_expandable_here_string_literal_token5, - ACTIONS(3003), 2, - aux_sym_expandable_string_literal_token4, - aux_sym_expandable_here_string_literal_token4, - ACTIONS(3005), 3, + ACTIONS(2923), 2, + aux_sym_expandable_string_literal_token2, anon_sym_DOLLAR, - aux_sym_expandable_here_string_literal_token2, - aux_sym_expandable_here_string_literal_token3, - STATE(1226), 3, + ACTIONS(2926), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + STATE(1190), 3, sym_variable, sym_sub_expression, - aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + aux_sym_expandable_string_literal_repeat1, + ACTIONS(2931), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111538,25 +112022,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [55976] = 7, + [45462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3009), 1, + ACTIONS(2941), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2937), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2939), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1197), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111564,25 +112048,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56009] = 7, + [45495] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3011), 1, + ACTIONS(2943), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111590,25 +112074,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56042] = 7, + [45528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3017), 1, + ACTIONS(2949), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(3013), 2, + ACTIONS(2945), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(3015), 3, + ACTIONS(2947), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1231), 3, + STATE(1185), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111616,25 +112100,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56075] = 7, + [45561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3019), 1, + ACTIONS(2955), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2951), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2953), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1180), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111642,25 +112126,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56108] = 7, + [45594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3025), 1, + ACTIONS(2957), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(3021), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(3023), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1218), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111668,25 +112152,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56141] = 7, + [45627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3031), 1, + ACTIONS(2965), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(3027), 2, + ACTIONS(2970), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2959), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(3029), 3, + ACTIONS(2962), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1232), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2967), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111694,25 +112178,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56174] = 7, + [45660] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3033), 1, + ACTIONS(2973), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2870), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2872), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1196), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111720,25 +112204,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56207] = 7, + [45693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(2878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3035), 1, + ACTIONS(2979), 1, aux_sym_expandable_here_string_literal_token5, - ACTIONS(2959), 2, + ACTIONS(2975), 2, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, - ACTIONS(2961), 3, + ACTIONS(2977), 3, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, - STATE(1221), 3, + STATE(1183), 3, sym_variable, sym_sub_expression, aux_sym_expandable_here_string_literal_repeat1, - ACTIONS(2932), 7, + ACTIONS(2876), 7, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -111746,27 +112230,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - [56240] = 11, + [45726] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3039), 1, + ACTIONS(2983), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(1945), 1, + STATE(1794), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111775,27 +112259,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56280] = 11, + [45766] = 6, + ACTIONS(81), 1, + sym_comment, + ACTIONS(97), 2, + anon_sym_DASH_DASH, + anon_sym_DOT2, + ACTIONS(2076), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(2074), 3, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + sym_path_command_name_token, + ACTIONS(95), 4, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_COLON_COLON, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(2985), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + [45796] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3041), 1, + ACTIONS(2987), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(1828), 1, + STATE(1758), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111804,27 +112312,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56320] = 11, + [45836] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3043), 1, + ACTIONS(2989), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(2054), 1, + STATE(2068), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111833,27 +112341,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56360] = 11, + [45876] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3045), 1, + ACTIONS(2991), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(1898), 1, + STATE(2084), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111862,51 +112370,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56400] = 6, + [45916] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(2076), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(95), 3, + ACTIONS(2981), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_COLON_COLON, - ACTIONS(97), 3, - anon_sym_DASH_DASH, - anon_sym_DOT2, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(2074), 3, + ACTIONS(2993), 1, + anon_sym_RPAREN, + STATE(1258), 1, + sym_type_literal, + STATE(1266), 1, + sym_attribute_list, + STATE(1387), 1, + sym_variable, + STATE(1506), 1, + sym_script_parameter, + STATE(1806), 1, + sym_parameter_list, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - sym_path_command_name_token, - ACTIONS(3047), 5, + STATE(1238), 2, + sym_attribute, + aux_sym_attribute_list_repeat1, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56430] = 11, + [45956] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3049), 1, + ACTIONS(2995), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(2065), 1, + STATE(1737), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111915,17 +112428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56470] = 3, + [45996] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(597), 6, + ACTIONS(607), 5, anon_sym_DOLLAR_, aux_sym_variable_token1, sym_path_command_name_token, anon_sym_DASH_DASH, anon_sym_DOT2, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(595), 10, + ACTIONS(605), 11, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -111936,56 +112448,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_COLON_COLON, - [56494] = 11, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACK, - ACTIONS(3051), 1, - anon_sym_RPAREN, - STATE(1294), 1, - sym_type_literal, - STATE(1304), 1, - sym_attribute_list, - STATE(1419), 1, - sym_variable, - STATE(1473), 1, - sym_script_parameter, - STATE(1745), 1, - sym_parameter_list, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - STATE(1267), 2, - sym_attribute, - aux_sym_attribute_list_repeat1, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - [56534] = 11, + aux_sym_invokation_foreach_expression_token1, + [46020] = 11, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(2997), 1, anon_sym_RPAREN, - STATE(1294), 1, + STATE(1258), 1, sym_type_literal, - STATE(1304), 1, + STATE(1266), 1, sym_attribute_list, - STATE(1419), 1, + STATE(1387), 1, sym_variable, - STATE(1473), 1, + STATE(1506), 1, sym_script_parameter, - STATE(1954), 1, + STATE(2038), 1, sym_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1267), 2, + STATE(1238), 2, sym_attribute, aux_sym_attribute_list_repeat1, ACTIONS(135), 5, @@ -111994,24 +112478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56574] = 9, + [46060] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(2999), 1, sym_simple_name, - ACTIONS(3057), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(1293), 1, + STATE(1260), 1, sym_type_literal, - STATE(1656), 1, + STATE(1572), 1, sym_variable, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1243), 2, + STATE(1209), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -112020,24 +112504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56609] = 9, + [46095] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3003), 1, sym_simple_name, - STATE(1299), 1, + STATE(1259), 1, sym_type_literal, - STATE(1704), 1, + STATE(1658), 1, sym_variable, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1262), 2, + STATE(1225), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -112046,24 +112530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56644] = 9, + [46130] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(2999), 1, sym_simple_name, - ACTIONS(3057), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(1293), 1, + STATE(1260), 1, sym_type_literal, - STATE(1656), 1, + STATE(1572), 1, sym_variable, ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2739), 2, + ACTIONS(2679), 2, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - STATE(1262), 2, + STATE(1225), 2, sym_class_attribute, aux_sym_class_property_definition_repeat1, ACTIONS(101), 5, @@ -112072,33 +112556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [56679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(597), 11, - aux_sym_expandable_string_literal_token2, - anon_sym_DOLLAR, - aux_sym_expandable_string_literal_token5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_DOLLAR_LPAREN, - [56701] = 3, + [46165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 3, + ACTIONS(683), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - ACTIONS(637), 11, + ACTIONS(685), 11, aux_sym_expandable_string_literal_token2, anon_sym_DOLLAR, aux_sym_expandable_string_literal_token5, @@ -112110,38 +112575,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, anon_sym_DOLLAR_LPAREN, - [56723] = 5, + [46187] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(3061), 1, - anon_sym_SEMI, - STATE(1247), 1, - aux_sym_script_block_repeat1, - ACTIONS(1428), 3, - sym_simple_name, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(1258), 1, + sym_type_literal, + STATE(1266), 1, + sym_attribute_list, + STATE(1387), 1, + sym_variable, + STATE(1536), 1, + sym_script_parameter, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2677), 9, - anon_sym_LBRACK, + STATE(1238), 2, + sym_attribute, + aux_sym_attribute_list_repeat1, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - anon_sym_RBRACE, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - [56749] = 3, + [46221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 3, - aux_sym_expandable_string_literal_token4, - aux_sym_expandable_here_string_literal_token4, - aux_sym_expandable_here_string_literal_token5, - ACTIONS(597), 11, + ACTIONS(3009), 2, anon_sym_DOLLAR, - aux_sym_expandable_here_string_literal_token2, - aux_sym_expandable_here_string_literal_token3, + aux_sym_expandable_string_literal_token5, + ACTIONS(3007), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3005), 9, + aux_sym_expandable_string_literal_token2, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -112150,10 +112620,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, anon_sym_DOLLAR_LPAREN, - [56771] = 2, + [46245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 14, + ACTIONS(687), 3, + aux_sym_expandable_string_literal_token3, + aux_sym_expandable_string_literal_token4, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(689), 11, + aux_sym_expandable_string_literal_token2, + anon_sym_DOLLAR, + aux_sym_expandable_string_literal_token5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -112161,17 +112638,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token1, aux_sym_variable_token2, sym_braced_variable, - aux_sym__expandable_string_literal_immediate_token1, - aux_sym__expandable_string_literal_immediate_token2, - aux_sym__expandable_string_literal_immediate_token3, - anon_sym_DQUOTE_DQUOTE2, - anon_sym_DOLLAR2, - anon_sym_DQUOTE, anon_sym_DOLLAR_LPAREN, - [56791] = 2, + [46267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(597), 14, + ACTIONS(689), 14, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -112186,63 +112657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR2, anon_sym_DQUOTE, anon_sym_DOLLAR_LPAREN, - [56811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3068), 2, - anon_sym_DOLLAR, - aux_sym_expandable_string_literal_token5, - ACTIONS(3066), 3, - aux_sym_expandable_string_literal_token3, - aux_sym_expandable_string_literal_token4, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3064), 9, - aux_sym_expandable_string_literal_token2, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - aux_sym_variable_token2, - sym_braced_variable, - anon_sym_DOLLAR_LPAREN, - [56835] = 9, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACK, - STATE(1294), 1, - sym_type_literal, - STATE(1304), 1, - sym_attribute_list, - STATE(1419), 1, - sym_variable, - STATE(1672), 1, - sym_script_parameter, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - STATE(1267), 2, - sym_attribute, - aux_sym_attribute_list_repeat1, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - [56869] = 5, + [46287] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3014), 1, anon_sym_SEMI, - STATE(1247), 1, + STATE(1222), 1, aux_sym_script_block_repeat1, - ACTIONS(3071), 3, + ACTIONS(3012), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3073), 9, + ACTIONS(2713), 9, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112252,14 +112678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [56895] = 3, + [46313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 3, + ACTIONS(605), 3, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, aux_sym_expandable_here_string_literal_token5, - ACTIONS(637), 11, + ACTIONS(607), 11, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, @@ -112271,18 +112697,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, anon_sym_DOLLAR_LPAREN, - [56917] = 5, + [46335] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3016), 1, anon_sym_SEMI, - STATE(1253), 1, + STATE(1218), 1, aux_sym_script_block_repeat1, - ACTIONS(3077), 3, + ACTIONS(1334), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(2787), 9, + ACTIONS(2617), 9, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112292,14 +112718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [56943] = 3, + [46361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 3, + ACTIONS(687), 3, aux_sym_expandable_string_literal_token4, aux_sym_expandable_here_string_literal_token4, aux_sym_expandable_here_string_literal_token5, - ACTIONS(641), 11, + ACTIONS(689), 11, anon_sym_DOLLAR, aux_sym_expandable_here_string_literal_token2, aux_sym_expandable_here_string_literal_token3, @@ -112311,14 +112737,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, anon_sym_DOLLAR_LPAREN, - [56965] = 3, + [46383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 3, + ACTIONS(605), 3, aux_sym_expandable_string_literal_token3, aux_sym_expandable_string_literal_token4, anon_sym_DQUOTE_DQUOTE, - ACTIONS(641), 11, + ACTIONS(607), 11, aux_sym_expandable_string_literal_token2, anon_sym_DOLLAR, aux_sym_expandable_string_literal_token5, @@ -112330,10 +112756,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, anon_sym_DOLLAR_LPAREN, - [56987] = 2, + [46405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(683), 3, + aux_sym_expandable_string_literal_token4, + aux_sym_expandable_here_string_literal_token4, + aux_sym_expandable_here_string_literal_token5, + ACTIONS(685), 11, + anon_sym_DOLLAR, + aux_sym_expandable_here_string_literal_token2, + aux_sym_expandable_here_string_literal_token3, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_DOLLAR_LPAREN, + [46427] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3023), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_script_block_repeat1, + ACTIONS(3019), 3, + sym_simple_name, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(3021), 9, + anon_sym_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + anon_sym_RBRACE, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + [46453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 14, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + aux_sym_variable_token2, + sym_braced_variable, + aux_sym__expandable_string_literal_immediate_token1, + aux_sym__expandable_string_literal_immediate_token2, + aux_sym__expandable_string_literal_immediate_token3, + anon_sym_DQUOTE_DQUOTE2, + anon_sym_DOLLAR2, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LPAREN, + [46473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(637), 14, + ACTIONS(685), 14, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -112348,44 +112832,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR2, anon_sym_DQUOTE, anon_sym_DOLLAR_LPAREN, - [57007] = 9, + [46493] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3081), 1, - anon_sym_RPAREN, - STATE(1308), 1, - sym_type_literal, - STATE(1526), 1, - sym_class_method_parameter, - STATE(1665), 1, - sym_variable, - STATE(1858), 1, - sym_class_method_parameter_list, - ACTIONS(137), 2, + ACTIONS(3029), 2, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + STATE(1225), 2, + sym_class_attribute, + aux_sym_class_property_definition_repeat1, + ACTIONS(3025), 3, + sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(135), 5, + ACTIONS(3027), 6, + anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57040] = 9, + [46518] = 9, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3083), 1, + ACTIONS(3032), 1, anon_sym_RPAREN, - STATE(1308), 1, + STATE(1275), 1, sym_type_literal, - STATE(1526), 1, + STATE(1426), 1, sym_class_method_parameter, - STATE(1665), 1, + STATE(1645), 1, sym_variable, - STATE(2000), 1, + STATE(1926), 1, sym_class_method_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -112396,20 +112876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57073] = 9, + [46551] = 9, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3034), 1, anon_sym_RPAREN, - STATE(1308), 1, + STATE(1275), 1, sym_type_literal, - STATE(1526), 1, + STATE(1426), 1, sym_class_method_parameter, - STATE(1665), 1, + STATE(1645), 1, sym_variable, - STATE(2061), 1, + STATE(1857), 1, sym_class_method_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -112420,40 +112900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57106] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3091), 2, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - STATE(1262), 2, - sym_class_attribute, - aux_sym_class_property_definition_repeat1, - ACTIONS(3087), 3, - sym_simple_name, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(3089), 6, - anon_sym_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - [57131] = 9, + [46584] = 9, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3094), 1, + ACTIONS(3036), 1, anon_sym_RPAREN, - STATE(1308), 1, + STATE(1275), 1, sym_type_literal, - STATE(1526), 1, + STATE(1426), 1, sym_class_method_parameter, - STATE(1665), 1, + STATE(1645), 1, sym_variable, - STATE(1994), 1, + STATE(1766), 1, sym_class_method_parameter_list, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -112464,52 +112924,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57164] = 6, + [46617] = 9, ACTIONS(81), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - STATE(1294), 1, + ACTIONS(3038), 1, + anon_sym_RPAREN, + STATE(1275), 1, sym_type_literal, - ACTIONS(3101), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - STATE(1264), 2, - sym_attribute, - aux_sym_attribute_list_repeat1, - ACTIONS(3099), 6, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - aux_sym_param_block_token1, - [57190] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3103), 1, - sym_simple_name, - STATE(1656), 1, + STATE(1426), 1, + sym_class_method_parameter, + STATE(1645), 1, sym_variable, - ACTIONS(3109), 2, + STATE(1906), 1, + sym_class_method_parameter_list, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(103), 3, - anon_sym_LBRACK, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - ACTIONS(3106), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57216] = 3, + [46650] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1515), 11, + ACTIONS(1390), 11, anon_sym_RPAREN, aux_sym_block_name_token1, aux_sym_block_name_token2, @@ -112521,34 +112965,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_do_statement_token2, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, - [57236] = 6, + [46670] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACK, - STATE(1294), 1, - sym_type_literal, - ACTIONS(3114), 2, + ACTIONS(3040), 3, + sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1264), 2, - sym_attribute, - aux_sym_attribute_list_repeat1, - ACTIONS(3112), 6, + ACTIONS(3042), 9, + anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - aux_sym_param_block_token1, - [57262] = 3, + anon_sym_RBRACE, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + [46690] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3116), 3, + ACTIONS(3044), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3118), 9, + ACTIONS(3046), 9, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112558,14 +112999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57282] = 3, + [46710] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3120), 3, + ACTIONS(3048), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3122), 9, + ACTIONS(3050), 9, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112575,51 +113016,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57302] = 6, + [46730] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3128), 1, - sym_path_command_name_token, - ACTIONS(2240), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(3126), 2, + ACTIONS(3052), 3, + sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1273), 2, - sym_variable, - aux_sym_path_command_name_repeat1, - ACTIONS(3124), 5, + ACTIONS(3054), 9, + anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57328] = 3, + anon_sym_RBRACE, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + [46750] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(1464), 1, - aux_sym_else_clause_token1, - ACTIONS(1511), 11, - anon_sym_RPAREN, - aux_sym_block_name_token1, - aux_sym_block_name_token2, - aux_sym_block_name_token3, - aux_sym_block_name_token4, - anon_sym_RBRACE, - aux_sym_elseif_clause_token1, - aux_sym_while_statement_token1, - aux_sym_do_statement_token2, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [57348] = 3, + ACTIONS(3056), 1, + anon_sym_LBRACK, + STATE(1258), 1, + sym_type_literal, + ACTIONS(3061), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + STATE(1235), 2, + sym_attribute, + aux_sym_attribute_list_repeat1, + ACTIONS(3059), 6, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + aux_sym_param_block_token1, + [46776] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3130), 3, + ACTIONS(3063), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3132), 9, + ACTIONS(3065), 9, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112629,167 +113070,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57368] = 6, + [46796] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3140), 1, + ACTIONS(3071), 1, sym_path_command_name_token, - ACTIONS(2226), 2, + ACTIONS(2157), 2, anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3137), 2, + ACTIONS(3069), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - STATE(1273), 2, + STATE(1242), 2, sym_variable, aux_sym_path_command_name_repeat1, - ACTIONS(3134), 5, + ACTIONS(3067), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + [46822] = 6, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(1258), 1, + sym_type_literal, + ACTIONS(3075), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + STATE(1235), 2, + sym_attribute, + aux_sym_attribute_list_repeat1, + ACTIONS(3073), 6, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + aux_sym_param_block_token1, + [46848] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3077), 3, + sym_simple_name, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(3079), 9, + anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57394] = 3, + anon_sym_RBRACE, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + [46868] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1374), 1, + aux_sym_else_clause_token1, + ACTIONS(1406), 11, + anon_sym_RPAREN, + aux_sym_block_name_token1, + aux_sym_block_name_token2, + aux_sym_block_name_token3, + aux_sym_block_name_token4, + anon_sym_RBRACE, + aux_sym_elseif_clause_token1, + aux_sym_while_statement_token1, + aux_sym_do_statement_token2, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + [46888] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3143), 3, + ACTIONS(3081), 1, sym_simple_name, + STATE(1572), 1, + sym_variable, + ACTIONS(3087), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3145), 9, + ACTIONS(103), 3, anon_sym_LBRACK, + aux_sym_class_attribute_token1, + aux_sym_class_attribute_token2, + ACTIONS(3084), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - anon_sym_RBRACE, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - [57414] = 3, + [46914] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3147), 3, - sym_simple_name, + ACTIONS(3096), 1, + sym_path_command_name_token, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(3093), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3149), 9, - anon_sym_LBRACK, + STATE(1242), 2, + sym_variable, + aux_sym_path_command_name_repeat1, + ACTIONS(3090), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - anon_sym_RBRACE, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - [57434] = 3, + [46940] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3099), 1, + anon_sym_LPAREN, + ACTIONS(3103), 1, + aux_sym_switch_condition_token1, + STATE(1481), 1, + sym_switch_parameters, + STATE(1664), 1, + sym_switch_condition, + STATE(1261), 2, + sym_switch_parameter, + aux_sym_switch_parameters_repeat1, + ACTIONS(3101), 5, + aux_sym_switch_parameter_token1, + aux_sym_switch_parameter_token2, + aux_sym_switch_parameter_token3, + aux_sym_switch_parameter_token4, + aux_sym_switch_parameter_token5, + [46967] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3151), 3, + ACTIONS(3105), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3153), 9, + ACTIONS(3107), 8, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - anon_sym_RBRACE, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57454] = 7, - ACTIONS(81), 1, - sym_comment, - ACTIONS(565), 1, - aux_sym_for_statement_token1, - ACTIONS(3155), 1, - aux_sym_switch_statement_token1, - ACTIONS(3157), 1, - aux_sym_foreach_statement_token1, - ACTIONS(3159), 1, - aux_sym_while_statement_token1, - ACTIONS(3161), 1, - aux_sym_do_statement_token1, - STATE(1957), 6, - sym__labeled_statement, - sym_switch_statement, - sym_foreach_statement, - sym_for_statement, - sym_while_statement, - sym_do_statement, - [57481] = 7, + [46986] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - ACTIONS(3167), 1, + ACTIONS(3103), 1, aux_sym_switch_condition_token1, - STATE(1432), 1, + STATE(1492), 1, sym_switch_parameters, - STATE(1603), 1, + STATE(1674), 1, sym_switch_condition, - STATE(1292), 2, + STATE(1261), 2, sym_switch_parameter, aux_sym_switch_parameters_repeat1, - ACTIONS(3165), 5, + ACTIONS(3101), 5, aux_sym_switch_parameter_token1, aux_sym_switch_parameter_token2, aux_sym_switch_parameter_token3, aux_sym_switch_parameter_token4, aux_sym_switch_parameter_token5, - [57508] = 7, + [47013] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - ACTIONS(3167), 1, + ACTIONS(3103), 1, aux_sym_switch_condition_token1, - STATE(1523), 1, + STATE(1424), 1, sym_switch_parameters, - STATE(1703), 1, + STATE(1639), 1, sym_switch_condition, - STATE(1292), 2, + STATE(1261), 2, sym_switch_parameter, aux_sym_switch_parameters_repeat1, - ACTIONS(3165), 5, + ACTIONS(3101), 5, aux_sym_switch_parameter_token1, aux_sym_switch_parameter_token2, aux_sym_switch_parameter_token3, aux_sym_switch_parameter_token4, aux_sym_switch_parameter_token5, - [57535] = 7, - ACTIONS(37), 1, - aux_sym_for_statement_token1, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3169), 1, - aux_sym_switch_statement_token1, - ACTIONS(3171), 1, - aux_sym_foreach_statement_token1, - ACTIONS(3173), 1, - aux_sym_while_statement_token1, - ACTIONS(3175), 1, - aux_sym_do_statement_token1, - STATE(518), 6, - sym__labeled_statement, - sym_switch_statement, - sym_foreach_statement, - sym_for_statement, - sym_while_statement, - sym_do_statement, - [57562] = 7, + [47040] = 7, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - STATE(1308), 1, + STATE(1275), 1, sym_type_literal, - STATE(1614), 1, + STATE(1593), 1, sym_class_method_parameter, - STATE(1665), 1, + STATE(1645), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -112800,14 +113280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57589] = 3, + [47067] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3177), 3, + ACTIONS(3109), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3179), 8, + ACTIONS(3111), 8, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112816,34 +113296,14 @@ static const uint16_t ts_small_parse_table[] = { sym_braced_variable, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57608] = 7, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_LPAREN, - ACTIONS(3167), 1, - aux_sym_switch_condition_token1, - STATE(1512), 1, - sym_switch_parameters, - STATE(1581), 1, - sym_switch_condition, - STATE(1292), 2, - sym_switch_parameter, - aux_sym_switch_parameters_repeat1, - ACTIONS(3165), 5, - aux_sym_switch_parameter_token1, - aux_sym_switch_parameter_token2, - aux_sym_switch_parameter_token3, - aux_sym_switch_parameter_token4, - aux_sym_switch_parameter_token5, - [57635] = 3, + [47086] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3181), 3, + ACTIONS(3113), 3, sym_simple_name, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3183), 8, + ACTIONS(3115), 8, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112852,89 +113312,113 @@ static const uint16_t ts_small_parse_table[] = { sym_braced_variable, aux_sym_class_attribute_token1, aux_sym_class_attribute_token2, - [57654] = 7, + [47105] = 7, + ACTIONS(37), 1, + aux_sym_for_statement_token1, ACTIONS(81), 1, sym_comment, - ACTIONS(521), 1, - aux_sym_for_statement_token1, - ACTIONS(3185), 1, + ACTIONS(3117), 1, aux_sym_switch_statement_token1, - ACTIONS(3187), 1, + ACTIONS(3119), 1, aux_sym_foreach_statement_token1, - ACTIONS(3189), 1, + ACTIONS(3121), 1, aux_sym_while_statement_token1, - ACTIONS(3191), 1, + ACTIONS(3123), 1, aux_sym_do_statement_token1, - STATE(1917), 6, + STATE(396), 6, sym__labeled_statement, sym_switch_statement, sym_foreach_statement, sym_for_statement, sym_while_statement, sym_do_statement, - [57681] = 3, + [47132] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3193), 3, - sym_simple_name, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(3195), 8, - anon_sym_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - aux_sym_class_attribute_token1, - aux_sym_class_attribute_token2, - [57700] = 7, + ACTIONS(521), 1, + aux_sym_for_statement_token1, + ACTIONS(3125), 1, + aux_sym_switch_statement_token1, + ACTIONS(3127), 1, + aux_sym_foreach_statement_token1, + ACTIONS(3129), 1, + aux_sym_while_statement_token1, + ACTIONS(3131), 1, + aux_sym_do_statement_token1, + STATE(2102), 6, + sym__labeled_statement, + sym_switch_statement, + sym_foreach_statement, + sym_for_statement, + sym_while_statement, + sym_do_statement, + [47159] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_LPAREN, - ACTIONS(3167), 1, - aux_sym_switch_condition_token1, - STATE(1499), 1, - sym_switch_parameters, - STATE(1686), 1, - sym_switch_condition, - STATE(1292), 2, - sym_switch_parameter, - aux_sym_switch_parameters_repeat1, - ACTIONS(3165), 5, - aux_sym_switch_parameter_token1, - aux_sym_switch_parameter_token2, - aux_sym_switch_parameter_token3, - aux_sym_switch_parameter_token4, - aux_sym_switch_parameter_token5, - [57727] = 7, + ACTIONS(487), 1, + aux_sym_for_statement_token1, + ACTIONS(3133), 1, + aux_sym_switch_statement_token1, + ACTIONS(3135), 1, + aux_sym_foreach_statement_token1, + ACTIONS(3137), 1, + aux_sym_while_statement_token1, + ACTIONS(3139), 1, + aux_sym_do_statement_token1, + STATE(1756), 6, + sym__labeled_statement, + sym_switch_statement, + sym_foreach_statement, + sym_for_statement, + sym_while_statement, + sym_do_statement, + [47186] = 7, ACTIONS(81), 1, sym_comment, ACTIONS(187), 1, aux_sym_for_statement_token1, - ACTIONS(3197), 1, + ACTIONS(3141), 1, aux_sym_switch_statement_token1, - ACTIONS(3199), 1, + ACTIONS(3143), 1, aux_sym_foreach_statement_token1, - ACTIONS(3201), 1, + ACTIONS(3145), 1, aux_sym_while_statement_token1, - ACTIONS(3203), 1, + ACTIONS(3147), 1, aux_sym_do_statement_token1, - STATE(428), 6, + STATE(344), 6, sym__labeled_statement, sym_switch_statement, sym_foreach_statement, sym_for_statement, sym_while_statement, sym_do_statement, - [57754] = 3, + [47213] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3099), 1, + anon_sym_LPAREN, + ACTIONS(3103), 1, + aux_sym_switch_condition_token1, + STATE(1472), 1, + sym_switch_parameters, + STATE(1576), 1, + sym_switch_condition, + STATE(1261), 2, + sym_switch_parameter, + aux_sym_switch_parameters_repeat1, + ACTIONS(3101), 5, + aux_sym_switch_parameter_token1, + aux_sym_switch_parameter_token2, + aux_sym_switch_parameter_token3, + aux_sym_switch_parameter_token4, + aux_sym_switch_parameter_token5, + [47240] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(597), 2, + ACTIONS(607), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(595), 8, + ACTIONS(605), 8, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, @@ -112943,33 +113427,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, sym_path_command_name_token, - [57772] = 8, + [47258] = 8, ACTIONS(81), 1, sym_comment, - ACTIONS(2577), 1, + ACTIONS(2543), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2545), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, + ACTIONS(2547), 1, anon_sym_DASH_DASH, - ACTIONS(2587), 1, + ACTIONS(2553), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(3205), 1, + ACTIONS(3149), 1, anon_sym_DOT2, - ACTIONS(3207), 1, + ACTIONS(3151), 1, anon_sym_COLON_COLON, - ACTIONS(651), 4, + ACTIONS(695), 4, anon_sym_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - [57800] = 3, + [47286] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3181), 2, + ACTIONS(3113), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3183), 7, + ACTIONS(3115), 7, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -112977,27 +113461,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, aux_sym_param_block_token1, - [57817] = 4, + [47303] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3209), 2, - anon_sym_LPAREN, - aux_sym_switch_condition_token1, - STATE(1297), 2, - sym_switch_parameter, - aux_sym_switch_parameters_repeat1, - ACTIONS(3165), 5, - aux_sym_switch_parameter_token1, - aux_sym_switch_parameter_token2, - aux_sym_switch_parameter_token3, - aux_sym_switch_parameter_token4, - aux_sym_switch_parameter_token5, - [57836] = 5, + ACTIONS(3153), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(103), 7, + anon_sym_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + aux_sym_param_block_token1, + [47320] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3155), 1, sym_simple_name, - STATE(1704), 1, + STATE(1577), 1, sym_variable, ACTIONS(21), 2, anon_sym_DOLLAR_, @@ -113008,27 +113491,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57857] = 3, + [47341] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3213), 2, + ACTIONS(3157), 1, + sym_simple_name, + STATE(1658), 1, + sym_variable, + ACTIONS(21), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(103), 7, - anon_sym_LBRACK, + ACTIONS(101), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - aux_sym_param_block_token1, - [57874] = 3, + [47362] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3159), 2, + anon_sym_LPAREN, + aux_sym_switch_condition_token1, + STATE(1263), 2, + sym_switch_parameter, + aux_sym_switch_parameters_repeat1, + ACTIONS(3101), 5, + aux_sym_switch_parameter_token1, + aux_sym_switch_parameter_token2, + aux_sym_switch_parameter_token3, + aux_sym_switch_parameter_token4, + aux_sym_switch_parameter_token5, + [47381] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3193), 2, + ACTIONS(3109), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(3195), 7, + ACTIONS(3111), 7, anon_sym_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, @@ -113036,79 +113536,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_token2, sym_braced_variable, aux_sym_param_block_token1, - [57891] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - aux_sym_command_name_token1, - STATE(725), 1, - sym_command_invokation_operator, - STATE(789), 1, - sym_command_name, - STATE(1430), 1, - sym_foreach_command, - STATE(1677), 1, - sym_command, - ACTIONS(15), 2, - anon_sym_DOT, - anon_sym_AMP, - ACTIONS(3215), 2, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - [57918] = 4, + [47398] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3217), 2, + ACTIONS(3161), 2, anon_sym_LPAREN, aux_sym_switch_condition_token1, - STATE(1297), 2, + STATE(1263), 2, sym_switch_parameter, aux_sym_switch_parameters_repeat1, - ACTIONS(3219), 5, + ACTIONS(3163), 5, aux_sym_switch_parameter_token1, aux_sym_switch_parameter_token2, aux_sym_switch_parameter_token3, aux_sym_switch_parameter_token4, aux_sym_switch_parameter_token5, - [57937] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - aux_sym_command_name_token1, - STATE(737), 1, - sym_command_invokation_operator, - STATE(770), 1, - sym_command_name, - STATE(1458), 1, - sym_foreach_command, - STATE(1670), 1, - sym_command, - ACTIONS(15), 2, - anon_sym_DOT, - anon_sym_AMP, - ACTIONS(3222), 2, - anon_sym_PERCENT, - aux_sym_foreach_command_token1, - [57964] = 5, + [47417] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3224), 1, - sym_simple_name, - STATE(1587), 1, + STATE(2098), 1, sym_variable, - ACTIONS(21), 2, + ACTIONS(137), 2, anon_sym_DOLLAR_, aux_sym_variable_token1, - ACTIONS(101), 5, + ACTIONS(135), 5, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_CARET, anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [57985] = 4, + [47435] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3166), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2377), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [47451] = 4, ACTIONS(81), 1, sym_comment, - STATE(2124), 1, + STATE(1368), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113119,58 +113592,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58003] = 8, + [47469] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2569), 1, - anon_sym_DASH_DASH, - ACTIONS(2575), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(3226), 1, - anon_sym_DOT2, - ACTIONS(3228), 1, - anon_sym_COLON_COLON, - ACTIONS(651), 2, - sym__statement_terminator, - anon_sym_LPAREN, - [58029] = 5, + STATE(1703), 1, + sym_variable, + ACTIONS(137), 2, + anon_sym_DOLLAR_, + aux_sym_variable_token1, + ACTIONS(135), 5, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_CARET, + anon_sym_DOLLAR_QMARK, + aux_sym_variable_token2, + sym_braced_variable, + [47487] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3170), 1, anon_sym_RBRACE, - STATE(1692), 1, + STATE(1559), 1, sym_block_name, - STATE(1302), 2, + STATE(1271), 2, sym_named_block, aux_sym_named_block_list_repeat1, - ACTIONS(3230), 4, + ACTIONS(3168), 4, aux_sym_block_name_token1, aux_sym_block_name_token2, aux_sym_block_name_token3, aux_sym_block_name_token4, - [58049] = 5, + [47507] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3237), 1, - anon_sym_RBRACE, - STATE(1692), 1, - sym_block_name, - STATE(1302), 2, - sym_named_block, - aux_sym_named_block_list_repeat1, - ACTIONS(3235), 4, - aux_sym_block_name_token1, - aux_sym_block_name_token2, - aux_sym_block_name_token3, - aux_sym_block_name_token4, - [58069] = 4, + STATE(78), 1, + sym_assignement_operator, + ACTIONS(3172), 7, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + [47523] = 4, ACTIONS(81), 1, sym_comment, - STATE(1411), 1, + STATE(1954), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113181,69 +113648,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58087] = 8, + [47541] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2577), 1, + ACTIONS(3177), 1, + anon_sym_RBRACE, + STATE(1559), 1, + sym_block_name, + STATE(1271), 2, + sym_named_block, + aux_sym_named_block_list_repeat1, + ACTIONS(3174), 4, + aux_sym_block_name_token1, + aux_sym_block_name_token2, + aux_sym_block_name_token3, + aux_sym_block_name_token4, + [47561] = 8, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2543), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2545), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, + ACTIONS(2547), 1, anon_sym_DASH_DASH, - ACTIONS(2587), 1, + ACTIONS(2553), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(3239), 1, + ACTIONS(3179), 1, anon_sym_DOT2, - ACTIONS(3241), 1, + ACTIONS(3181), 1, anon_sym_COLON_COLON, - ACTIONS(2445), 2, + ACTIONS(2401), 2, anon_sym_COMMA, anon_sym_LBRACE, - [58113] = 4, + [47587] = 8, ACTIONS(81), 1, sym_comment, - STATE(2057), 1, - sym_variable, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - [58131] = 3, + ACTIONS(2531), 1, + anon_sym_LBRACK, + ACTIONS(2533), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2535), 1, + anon_sym_DASH_DASH, + ACTIONS(2541), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(3183), 1, + anon_sym_DOT2, + ACTIONS(3185), 1, + anon_sym_COLON_COLON, + ACTIONS(695), 2, + sym__statement_terminator, + anon_sym_LPAREN, + [47613] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3243), 3, + ACTIONS(3166), 3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(2425), 5, + ACTIONS(2335), 5, anon_sym_RPAREN, anon_sym_COMMA, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - [58147] = 4, - ACTIONS(81), 1, - sym_comment, - STATE(1568), 1, - sym_variable, - ACTIONS(137), 2, - anon_sym_DOLLAR_, - aux_sym_variable_token1, - ACTIONS(135), 5, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_CARET, - anon_sym_DOLLAR_QMARK, - aux_sym_variable_token2, - sym_braced_variable, - [58165] = 4, + [47629] = 4, ACTIONS(81), 1, sym_comment, - STATE(1759), 1, + STATE(1571), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113254,23 +113726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58183] = 3, + [47647] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3243), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2419), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [58199] = 4, + STATE(77), 1, + sym_assignement_operator, + ACTIONS(3172), 7, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_PLUS_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DASH_EQ, + [47663] = 4, ACTIONS(81), 1, sym_comment, - STATE(2110), 1, + STATE(2085), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113281,10 +113753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58217] = 4, + [47681] = 4, ACTIONS(81), 1, sym_comment, - STATE(2111), 1, + STATE(2086), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113295,10 +113767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58235] = 4, + [47699] = 4, ACTIONS(81), 1, sym_comment, - STATE(2117), 1, + STATE(2091), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113309,10 +113781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58253] = 4, + [47717] = 4, ACTIONS(81), 1, sym_comment, - STATE(2118), 1, + STATE(2092), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113323,10 +113795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58271] = 4, + [47735] = 4, ACTIONS(81), 1, sym_comment, - STATE(2123), 1, + STATE(2097), 1, sym_variable, ACTIONS(137), 2, anon_sym_DOLLAR_, @@ -113337,9540 +113809,9440 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_QMARK, aux_sym_variable_token2, sym_braced_variable, - [58289] = 3, + [47753] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3187), 3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(2425), 4, - sym__statement_terminator, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [58304] = 7, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1369), 1, + ACTIONS(2335), 4, sym__statement_terminator, - ACTIONS(3247), 1, - aux_sym_catch_clause_token1, - ACTIONS(3249), 1, - aux_sym_finally_clause_token1, - STATE(1534), 1, - sym_catch_clauses, - STATE(2036), 1, - sym_finally_clause, - STATE(1369), 2, - sym_catch_clause, - aux_sym_catch_clauses_repeat1, - [58327] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3251), 7, - anon_sym_LPAREN, - aux_sym_switch_parameter_token1, - aux_sym_switch_parameter_token2, - aux_sym_switch_parameter_token3, - aux_sym_switch_parameter_token4, - aux_sym_switch_parameter_token5, - aux_sym_switch_condition_token1, - [58340] = 8, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2577), 1, - anon_sym_LBRACK, - ACTIONS(2579), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, - anon_sym_DASH_DASH, - ACTIONS(2587), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(3239), 1, - anon_sym_DOT2, - ACTIONS(3241), 1, - anon_sym_COLON_COLON, - ACTIONS(3253), 1, - anon_sym_LBRACE, - [58365] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 1, - aux_sym_command_name_token2, - ACTIONS(3259), 1, - anon_sym_DQUOTE2, - STATE(1328), 1, - aux_sym_command_name_repeat1, - ACTIONS(2486), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(3255), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - [58386] = 3, - ACTIONS(81), 1, - sym_comment, - STATE(82), 1, - sym_assignement_operator, - ACTIONS(3261), 6, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [58401] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3263), 3, - aux_sym_bitwise_expression_token1, - aux_sym_bitwise_expression_token2, - aux_sym_bitwise_expression_token3, - ACTIONS(2419), 4, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - anon_sym_RBRACK, - [58416] = 3, + [47768] = 7, ACTIONS(81), 1, sym_comment, - STATE(79), 1, - sym_assignement_operator, - ACTIONS(3261), 6, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [58431] = 8, + ACTIONS(1309), 1, + anon_sym_RPAREN, + ACTIONS(3189), 1, + aux_sym_elseif_clause_token1, + ACTIONS(3191), 1, + aux_sym_else_clause_token1, + STATE(1454), 1, + sym_elseif_clauses, + STATE(1866), 1, + sym_else_clause, + STATE(1326), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [47791] = 8, ACTIONS(81), 1, sym_comment, - ACTIONS(2577), 1, + ACTIONS(695), 1, + sym__statement_terminator, + ACTIONS(2531), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2533), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, + ACTIONS(2535), 1, anon_sym_DASH_DASH, - ACTIONS(2587), 1, + ACTIONS(2541), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(3239), 1, + ACTIONS(3193), 1, anon_sym_DOT2, - ACTIONS(3241), 1, + ACTIONS(3195), 1, anon_sym_COLON_COLON, - ACTIONS(3265), 1, - anon_sym_LBRACE, - [58456] = 3, + [47816] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3187), 3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(2419), 4, + ACTIONS(2377), 4, sym__statement_terminator, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - [58471] = 8, + [47831] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(1309), 1, sym__statement_terminator, - ACTIONS(2565), 1, - anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_PLUS_PLUS, - ACTIONS(2569), 1, - anon_sym_DASH_DASH, - ACTIONS(2575), 1, - aux_sym_invokation_foreach_expression_token1, - ACTIONS(3267), 1, - anon_sym_DOT2, - ACTIONS(3269), 1, - anon_sym_COLON_COLON, - [58496] = 7, + ACTIONS(3197), 1, + aux_sym_elseif_clause_token1, + ACTIONS(3199), 1, + aux_sym_else_clause_token1, + STATE(1498), 1, + sym_elseif_clauses, + STATE(1987), 1, + sym_else_clause, + STATE(1358), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [47854] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(1369), 1, + ACTIONS(1303), 1, anon_sym_RPAREN, - ACTIONS(3271), 1, + ACTIONS(3201), 1, aux_sym_catch_clause_token1, - ACTIONS(3273), 1, + ACTIONS(3203), 1, + aux_sym_finally_clause_token1, + STATE(1467), 1, + sym_catch_clauses, + STATE(1989), 1, + sym_finally_clause, + STATE(1321), 2, + sym_catch_clause, + aux_sym_catch_clauses_repeat1, + [47877] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1303), 1, + sym__statement_terminator, + ACTIONS(3205), 1, + aux_sym_catch_clause_token1, + ACTIONS(3207), 1, aux_sym_finally_clause_token1, - STATE(1489), 1, + STATE(1471), 1, sym_catch_clauses, - STATE(1793), 1, + STATE(1873), 1, sym_finally_clause, - STATE(1384), 2, + STATE(1352), 2, sym_catch_clause, aux_sym_catch_clauses_repeat1, - [58519] = 6, + [47900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3211), 1, + aux_sym_command_name_token12, + ACTIONS(3213), 1, + anon_sym_DQUOTE2, + STATE(1291), 1, + aux_sym_command_name_repeat1, + ACTIONS(2425), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(3209), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + [47921] = 8, + ACTIONS(81), 1, + sym_comment, + ACTIONS(695), 1, + anon_sym_EQ, + ACTIONS(2543), 1, + anon_sym_LBRACK, + ACTIONS(2545), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2547), 1, + anon_sym_DASH_DASH, + ACTIONS(2553), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(3179), 1, + anon_sym_DOT2, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, + [47946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - aux_sym_command_name_token2, - ACTIONS(3281), 1, + ACTIONS(3218), 1, + aux_sym_command_name_token12, + ACTIONS(3221), 1, anon_sym_DQUOTE2, - STATE(1328), 1, + STATE(1291), 1, aux_sym_command_name_repeat1, - ACTIONS(2474), 2, + ACTIONS(2440), 2, anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3275), 2, + ACTIONS(3215), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - [58540] = 7, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1360), 1, - sym__statement_terminator, - ACTIONS(3284), 1, - aux_sym_elseif_clause_token1, - ACTIONS(3286), 1, - aux_sym_else_clause_token1, - STATE(1461), 1, - sym_elseif_clauses, - STATE(1862), 1, - sym_else_clause, - STATE(1395), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [58563] = 7, + [47967] = 8, ACTIONS(81), 1, sym_comment, - ACTIONS(1360), 1, - anon_sym_RPAREN, - ACTIONS(3288), 1, - aux_sym_elseif_clause_token1, - ACTIONS(3290), 1, - aux_sym_else_clause_token1, - STATE(1431), 1, - sym_elseif_clauses, - STATE(1836), 1, - sym_else_clause, - STATE(1366), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [58586] = 8, - ACTIONS(81), 1, - sym_comment, - ACTIONS(651), 1, - anon_sym_EQ, - ACTIONS(2577), 1, + ACTIONS(2543), 1, anon_sym_LBRACK, - ACTIONS(2579), 1, + ACTIONS(2545), 1, anon_sym_PLUS_PLUS, - ACTIONS(2581), 1, + ACTIONS(2547), 1, anon_sym_DASH_DASH, - ACTIONS(2587), 1, + ACTIONS(2553), 1, aux_sym_invokation_foreach_expression_token1, - ACTIONS(3239), 1, + ACTIONS(3179), 1, anon_sym_DOT2, - ACTIONS(3241), 1, + ACTIONS(3181), 1, anon_sym_COLON_COLON, - [58611] = 3, + ACTIONS(3224), 1, + anon_sym_LBRACE, + [47992] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3263), 3, + ACTIONS(3226), 3, aux_sym_bitwise_expression_token1, aux_sym_bitwise_expression_token2, aux_sym_bitwise_expression_token3, - ACTIONS(2425), 4, + ACTIONS(2377), 4, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, anon_sym_RBRACK, - [58626] = 6, + [48007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 1, + ACTIONS(3213), 1, anon_sym_DQUOTE2, - ACTIONS(3294), 1, - aux_sym_command_name_token2, - STATE(1320), 1, + ACTIONS(3230), 1, + aux_sym_command_name_token12, + STATE(1289), 1, aux_sym_command_name_repeat1, - ACTIONS(2457), 2, + ACTIONS(2415), 2, anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3292), 2, + ACTIONS(3228), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - [58647] = 4, + [48028] = 8, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2543), 1, + anon_sym_LBRACK, + ACTIONS(2545), 1, + anon_sym_PLUS_PLUS, + ACTIONS(2547), 1, + anon_sym_DASH_DASH, + ACTIONS(2553), 1, + aux_sym_invokation_foreach_expression_token1, + ACTIONS(3179), 1, + anon_sym_DOT2, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, + ACTIONS(3232), 1, + anon_sym_LBRACE, + [48053] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3234), 7, + anon_sym_LPAREN, + aux_sym_switch_parameter_token1, + aux_sym_switch_parameter_token2, + aux_sym_switch_parameter_token3, + aux_sym_switch_parameter_token4, + aux_sym_switch_parameter_token5, + aux_sym_switch_condition_token1, + [48066] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3226), 3, + aux_sym_bitwise_expression_token1, + aux_sym_bitwise_expression_token2, + aux_sym_bitwise_expression_token3, + ACTIONS(2335), 4, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + anon_sym_RBRACK, + [48081] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3236), 1, anon_sym_LBRACE, - STATE(1334), 2, + STATE(1298), 2, sym_script_block_expression, aux_sym_foreach_command_repeat1, - ACTIONS(3299), 3, + ACTIONS(3239), 3, sym__statement_terminator, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [58663] = 4, + [48097] = 3, ACTIONS(3), 1, sym_comment, - STATE(1335), 1, - aux_sym__verbatim_command_argument_chars, - ACTIONS(3304), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(3301), 3, - aux_sym__verbatim_command_argument_chars_token1, - aux_sym__verbatim_command_argument_chars_token2, - aux_sym__verbatim_command_argument_chars_token3, - [58679] = 7, + ACTIONS(2513), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2515), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, + [48111] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1560), 1, + STATE(1562), 1, sym_type_spec, - STATE(2024), 1, + STATE(2073), 1, sym_attribute_name, - [58701] = 5, + [48133] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1490), 1, + sym_type_spec, + STATE(1919), 1, + sym_generic_type_arguments, + [48155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 1, + ACTIONS(3245), 1, anon_sym_PIPE, - ACTIONS(3311), 1, + ACTIONS(3247), 1, + sym__statement_terminator, + STATE(1304), 1, + aux_sym__verbatim_command_argument_chars, + ACTIONS(3243), 3, + aux_sym__verbatim_command_argument_chars_token1, + aux_sym__verbatim_command_argument_chars_token2, + aux_sym__verbatim_command_argument_chars_token3, + [48173] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3249), 1, + anon_sym_LBRACE, + STATE(1298), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + ACTIONS(3251), 3, + sym__statement_terminator, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [48189] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, sym__statement_terminator, - STATE(1337), 1, + STATE(1304), 1, aux_sym__verbatim_command_argument_chars, - ACTIONS(3308), 3, + ACTIONS(3253), 3, aux_sym__verbatim_command_argument_chars_token1, aux_sym__verbatim_command_argument_chars_token2, aux_sym__verbatim_command_argument_chars_token3, - [58719] = 3, + [48207] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3260), 1, + sym_simple_name, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + STATE(347), 1, + sym_statement_block, + STATE(1389), 1, + sym_data_name, + STATE(1678), 1, + sym_data_commands_allowed, + [48229] = 7, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3260), 1, + sym_simple_name, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + ACTIONS(3266), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_data_name, + STATE(1679), 1, + sym_data_commands_allowed, + STATE(2107), 1, + sym_statement_block, + [48251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 2, + ACTIONS(2448), 2, anon_sym_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE, - ACTIONS(2519), 4, + ACTIONS(2440), 4, anon_sym_COMMA, anon_sym_LBRACE, - aux_sym_command_name_token2, + aux_sym_command_name_token12, anon_sym_DQUOTE2, - [58733] = 7, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1450), 1, - sym_type_spec, - STATE(1850), 1, - sym_generic_type_arguments, - [58755] = 4, + [48265] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3260), 1, + sym_simple_name, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1340), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - ACTIONS(3299), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [58771] = 7, + STATE(1365), 1, + sym_data_name, + STATE(1513), 1, + sym_data_commands_allowed, + STATE(1762), 1, + sym_statement_block, + [48287] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1610), 1, + STATE(1644), 1, sym_type_spec, - STATE(1859), 1, + STATE(2027), 1, sym_attribute_name, - [58793] = 4, + [48309] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(3270), 1, anon_sym_LBRACE, - STATE(1334), 2, + STATE(1313), 2, sym_script_block_expression, aux_sym_foreach_command_repeat1, - ACTIONS(3318), 3, - sym__statement_terminator, + ACTIONS(3251), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [58809] = 4, + [48325] = 4, ACTIONS(3), 1, sym_comment, - STATE(1335), 1, + STATE(1312), 1, aux_sym__verbatim_command_argument_chars, - ACTIONS(3322), 2, + ACTIONS(3245), 2, anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3320), 3, + ACTIONS(3272), 3, aux_sym__verbatim_command_argument_chars_token1, aux_sym__verbatim_command_argument_chars_token2, aux_sym__verbatim_command_argument_chars_token3, - [58825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2474), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - [58839] = 3, + [48341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE, - ACTIONS(2515), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_command_name_token2, - anon_sym_DQUOTE2, - [58853] = 4, + STATE(1312), 1, + aux_sym__verbatim_command_argument_chars, + ACTIONS(3256), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(3274), 3, + aux_sym__verbatim_command_argument_chars_token1, + aux_sym__verbatim_command_argument_chars_token2, + aux_sym__verbatim_command_argument_chars_token3, + [48357] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3277), 1, anon_sym_LBRACE, - STATE(1340), 2, + STATE(1313), 2, sym_script_block_expression, aux_sym_foreach_command_repeat1, - ACTIONS(3318), 3, + ACTIONS(3239), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [58869] = 5, - ACTIONS(3), 1, + [48373] = 7, + ACTIONS(81), 1, sym_comment, - ACTIONS(3322), 1, - anon_sym_PIPE, - ACTIONS(3328), 1, - sym__statement_terminator, - STATE(1337), 1, - aux_sym__verbatim_command_argument_chars, - ACTIONS(3326), 3, - aux_sym__verbatim_command_argument_chars_token1, - aux_sym__verbatim_command_argument_chars_token2, - aux_sym__verbatim_command_argument_chars_token3, - [58887] = 7, + ACTIONS(3260), 1, + sym_simple_name, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_statement_block, + STATE(1388), 1, + sym_data_name, + STATE(1552), 1, + sym_data_commands_allowed, + [48395] = 7, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1684), 1, + STATE(1686), 1, sym_type_spec, - STATE(1859), 1, + STATE(2073), 1, sym_attribute_name, - [58909] = 4, + [48417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 2, + anon_sym_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE, + ACTIONS(2505), 4, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_command_name_token12, + anon_sym_DQUOTE2, + [48431] = 4, ACTIONS(81), 1, sym_comment, ACTIONS(107), 1, anon_sym_LBRACE, - ACTIONS(3318), 2, + ACTIONS(3251), 2, sym__statement_terminator, anon_sym_PIPE, - STATE(1365), 2, + STATE(1353), 2, sym_script_block_expression, aux_sym_foreach_command_repeat1, - [58924] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1822), 1, - sym_type_spec, - [58943] = 6, + [48446] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1851), 1, - sym_type_spec, - [58962] = 6, + ACTIONS(3282), 5, + aux_sym_block_name_token1, + aux_sym_block_name_token2, + aux_sym_block_name_token3, + aux_sym_block_name_token4, + anon_sym_RBRACE, + [48457] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1893), 1, + STATE(2021), 1, sym_type_spec, - [58981] = 6, + [48476] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1906), 1, - sym_type_spec, - [59000] = 6, + ACTIONS(3284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3286), 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [48489] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1913), 1, - sym_type_spec, - [59019] = 6, + ACTIONS(3201), 1, + aux_sym_catch_clause_token1, + ACTIONS(1351), 2, + anon_sym_RPAREN, + aux_sym_finally_clause_token1, + STATE(1325), 2, + sym_catch_clause, + aux_sym_catch_clauses_repeat1, + [48504] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1919), 1, - sym_type_spec, - [59038] = 6, + ACTIONS(3288), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [48515] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1934), 1, + STATE(1862), 1, sym_type_spec, - [59057] = 6, + [48534] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(1944), 1, - sym_type_spec, - [59076] = 4, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(3290), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_statement_block, + STATE(1505), 1, + sym_type_literal, + STATE(1605), 1, + sym_catch_type_list, + [48553] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3292), 1, aux_sym_catch_clause_token1, - ACTIONS(1459), 2, + ACTIONS(1346), 2, anon_sym_RPAREN, aux_sym_finally_clause_token1, - STATE(1358), 2, + STATE(1325), 2, sym_catch_clause, aux_sym_catch_clauses_repeat1, - [59091] = 6, + [48568] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(1339), 1, + aux_sym_else_clause_token1, + ACTIONS(1358), 1, anon_sym_RPAREN, - ACTIONS(2417), 1, - anon_sym_PIPE, - ACTIONS(3333), 1, - anon_sym_DASH_DASH_PERCENT, - STATE(1437), 1, - aux_sym__pipeline_tail, - STATE(1438), 1, - sym_verbatim_command_argument, - [59110] = 3, + ACTIONS(3189), 1, + aux_sym_elseif_clause_token1, + STATE(1327), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [48585] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3335), 2, + ACTIONS(1341), 1, + aux_sym_else_clause_token1, + ACTIONS(1353), 1, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3337), 3, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [59123] = 2, + ACTIONS(3295), 1, + aux_sym_elseif_clause_token1, + STATE(1327), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [48602] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3339), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [59134] = 6, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(3298), 1, + anon_sym_LBRACE, + STATE(319), 1, + sym_statement_block, + STATE(1505), 1, + sym_type_literal, + STATE(1677), 1, + sym_catch_type_list, + [48621] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1733), 1, + STATE(1863), 1, sym_type_spec, - [59153] = 2, + [48640] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3341), 5, - aux_sym_block_name_token1, - aux_sym_block_name_token2, - aux_sym_block_name_token3, - aux_sym_block_name_token4, - anon_sym_RBRACE, - [59164] = 6, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(1487), 1, + sym_statement_block, + STATE(1505), 1, + sym_type_literal, + STATE(1570), 1, + sym_catch_type_list, + [48659] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(2116), 1, + STATE(1835), 1, sym_type_spec, - [59183] = 4, + [48678] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(3266), 1, anon_sym_LBRACE, - ACTIONS(3299), 2, - sym__statement_terminator, - anon_sym_PIPE, - STATE(1365), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [59198] = 5, + STATE(1465), 1, + sym_statement_block, + STATE(1505), 1, + sym_type_literal, + STATE(1526), 1, + sym_catch_type_list, + [48697] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1375), 1, - aux_sym_else_clause_token1, - ACTIONS(1453), 1, + ACTIONS(3300), 5, anon_sym_RPAREN, - ACTIONS(3288), 1, - aux_sym_elseif_clause_token1, - STATE(1377), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [59215] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3306), 1, - sym_type_identifier, - STATE(1339), 1, - sym_generic_type_name, - STATE(1380), 1, - sym_type_name, - STATE(1402), 1, - sym_array_type_name, - STATE(2016), 1, - sym_type_spec, - [59234] = 4, + anon_sym_COMMA, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [48708] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_LBRACE, - ACTIONS(3318), 2, - anon_sym_RPAREN, + ACTIONS(2369), 1, anon_sym_PIPE, - STATE(1370), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [59249] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_catch_clause_token1, - ACTIONS(1449), 2, + ACTIONS(2371), 1, sym__statement_terminator, - aux_sym_finally_clause_token1, - STATE(1379), 2, - sym_catch_clause, - aux_sym_catch_clauses_repeat1, - [59264] = 4, + ACTIONS(3302), 1, + anon_sym_DASH_DASH_PERCENT, + STATE(1403), 1, + aux_sym__pipeline_tail, + STATE(1405), 1, + sym_verbatim_command_argument, + [48727] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_LBRACE, - ACTIONS(3299), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - STATE(1370), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [59279] = 6, + ACTIONS(3304), 5, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [48738] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1726), 1, + STATE(1642), 1, sym_type_spec, - [59298] = 3, + [48757] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1464), 1, + ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1511), 4, + ACTIONS(1390), 4, sym__statement_terminator, aux_sym_elseif_clause_token1, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, - [59311] = 6, + [48770] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1799), 1, + STATE(1740), 1, sym_type_spec, - [59330] = 6, + [48789] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(2415), 1, - sym__statement_terminator, - ACTIONS(2433), 1, - anon_sym_PIPE, - ACTIONS(3349), 1, - anon_sym_DASH_DASH_PERCENT, - STATE(1511), 1, - aux_sym__pipeline_tail, - STATE(1514), 1, - sym_verbatim_command_argument, - [59349] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1998), 1, + STATE(1713), 1, sym_type_spec, - [59368] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3351), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_statement_block, - STATE(1498), 1, - sym_type_literal, - STATE(1559), 1, - sym_catch_type_list, - [59387] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1377), 1, - aux_sym_else_clause_token1, - ACTIONS(1444), 1, - anon_sym_RPAREN, - ACTIONS(3353), 1, - aux_sym_elseif_clause_token1, - STATE(1377), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [59404] = 3, + [48808] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(1468), 1, - aux_sym_else_clause_token1, - ACTIONS(1515), 4, - sym__statement_terminator, - aux_sym_elseif_clause_token1, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [59417] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3356), 1, - aux_sym_catch_clause_token1, - ACTIONS(1459), 2, - sym__statement_terminator, - aux_sym_finally_clause_token1, - STATE(1379), 2, - sym_catch_clause, - aux_sym_catch_clauses_repeat1, - [59432] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3359), 1, - anon_sym_DOT, - ACTIONS(3361), 1, - anon_sym_LBRACK, - ACTIONS(3363), 3, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [59447] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(2133), 1, + STATE(1832), 1, sym_type_spec, - [59466] = 6, - ACTIONS(81), 1, - sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3365), 1, - anon_sym_LBRACE, - STATE(398), 1, - sym_statement_block, - STATE(1498), 1, - sym_type_literal, - STATE(1639), 1, - sym_catch_type_list, - [59485] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3367), 5, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [59496] = 4, + [48827] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3271), 1, - aux_sym_catch_clause_token1, - ACTIONS(1449), 2, - anon_sym_RPAREN, - aux_sym_finally_clause_token1, - STATE(1358), 2, - sym_catch_clause, - aux_sym_catch_clauses_repeat1, - [59511] = 2, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1931), 1, + sym_type_spec, + [48846] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3369), 5, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [59522] = 2, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1995), 1, + sym_type_spec, + [48865] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3371), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [59533] = 6, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(2013), 1, + sym_type_spec, + [48884] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3373), 1, - anon_sym_LBRACE, - STATE(1456), 1, - sym_statement_block, - STATE(1498), 1, - sym_type_literal, - STATE(1618), 1, - sym_catch_type_list, - [59552] = 6, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(2060), 1, + sym_type_spec, + [48903] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1860), 1, + STATE(2069), 1, sym_type_spec, - [59571] = 5, + [48922] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(1377), 1, - aux_sym_else_clause_token1, - ACTIONS(1444), 1, - sym__statement_terminator, - ACTIONS(3375), 1, - aux_sym_elseif_clause_token1, - STATE(1389), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [59588] = 6, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1969), 1, + sym_type_spec, + [48941] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3378), 1, - anon_sym_LBRACE, - STATE(405), 1, - sym_statement_block, - STATE(1498), 1, - sym_type_literal, - STATE(1623), 1, - sym_catch_type_list, - [59607] = 6, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1699), 1, + sym_type_spec, + [48960] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(2126), 1, + STATE(1746), 1, sym_type_spec, - [59626] = 3, + [48979] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(2505), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3380), 3, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [59639] = 6, + ACTIONS(3241), 1, + sym_type_identifier, + STATE(1301), 1, + sym_generic_type_name, + STATE(1357), 1, + sym_type_name, + STATE(1390), 1, + sym_array_type_name, + STATE(1813), 1, + sym_type_spec, + [48998] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1661), 1, + STATE(1821), 1, sym_type_spec, - [59658] = 6, + [49017] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3241), 1, sym_type_identifier, - STATE(1339), 1, + STATE(1301), 1, sym_generic_type_name, - STATE(1380), 1, + STATE(1357), 1, sym_type_name, - STATE(1402), 1, + STATE(1390), 1, sym_array_type_name, - STATE(1770), 1, + STATE(1865), 1, sym_type_spec, - [59677] = 5, + [49036] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1375), 1, - aux_sym_else_clause_token1, - ACTIONS(1453), 1, + ACTIONS(3205), 1, + aux_sym_catch_clause_token1, + ACTIONS(1351), 2, sym__statement_terminator, - ACTIONS(3284), 1, - aux_sym_elseif_clause_token1, - STATE(1389), 2, - sym_elseif_clause, - aux_sym_elseif_clauses_repeat1, - [59694] = 3, + aux_sym_finally_clause_token1, + STATE(1355), 2, + sym_catch_clause, + aux_sym_catch_clauses_repeat1, + [49051] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3306), 1, + anon_sym_LBRACE, + ACTIONS(3239), 2, + sym__statement_terminator, + anon_sym_PIPE, + STATE(1353), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [49066] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3309), 5, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [49077] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(3311), 1, + aux_sym_catch_clause_token1, + ACTIONS(1346), 2, sym__statement_terminator, - ACTIONS(3382), 3, + aux_sym_finally_clause_token1, + STATE(1355), 2, + sym_catch_clause, + aux_sym_catch_clauses_repeat1, + [49092] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2507), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3314), 3, aux_sym_logical_expression_token1, aux_sym_logical_expression_token2, aux_sym_logical_expression_token3, - [59706] = 2, + [49105] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_DOT, + ACTIONS(3318), 1, + anon_sym_LBRACK, + ACTIONS(3320), 3, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [49120] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(591), 4, + ACTIONS(1339), 1, + aux_sym_else_clause_token1, + ACTIONS(1358), 1, sym__statement_terminator, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [59716] = 5, + ACTIONS(3197), 1, + aux_sym_elseif_clause_token1, + STATE(1359), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [49137] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_LBRACE, - ACTIONS(3386), 1, - aux_sym_data_commands_allowed_token1, - STATE(483), 1, - sym_statement_block, - STATE(1543), 1, - sym_data_commands_allowed, - [59732] = 2, + ACTIONS(1341), 1, + aux_sym_else_clause_token1, + ACTIONS(1353), 1, + sym__statement_terminator, + ACTIONS(3322), 1, + aux_sym_elseif_clause_token1, + STATE(1359), 2, + sym_elseif_clause, + aux_sym_elseif_clauses_repeat1, + [49154] = 6, ACTIONS(81), 1, sym_comment, - ACTIONS(599), 4, + ACTIONS(2371), 1, anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(2383), 1, anon_sym_PIPE, + ACTIONS(3325), 1, anon_sym_DASH_DASH_PERCENT, - [59742] = 2, + STATE(1429), 1, + aux_sym__pipeline_tail, + STATE(1433), 1, + sym_verbatim_command_argument, + [49173] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(591), 4, - anon_sym_RPAREN, + ACTIONS(141), 1, anon_sym_LBRACE, + ACTIONS(3251), 2, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [59752] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3388), 1, - sym_simple_name, - ACTIONS(3391), 1, - anon_sym_RBRACE, - STATE(1401), 1, - aux_sym_enum_statement_repeat1, - STATE(1911), 1, - sym_enum_member, - [59768] = 5, + STATE(1362), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [49188] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_COMMA, - ACTIONS(3395), 1, - anon_sym_RBRACK, - STATE(1449), 1, - aux_sym_dimension_repeat1, - STATE(1850), 1, - sym_dimension, - [59784] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1343), 1, - aux_sym__verbatim_command_argument_chars, - ACTIONS(3397), 3, - aux_sym__verbatim_command_argument_chars_token1, - aux_sym__verbatim_command_argument_chars_token2, - aux_sym__verbatim_command_argument_chars_token3, - [59796] = 5, + ACTIONS(3327), 1, + anon_sym_LBRACE, + ACTIONS(3239), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + STATE(1362), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [49203] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, - sym_simple_name, - ACTIONS(3401), 1, - anon_sym_RBRACE, - STATE(1410), 1, - aux_sym_enum_statement_repeat1, - STATE(1911), 1, - sym_enum_member, - [59812] = 2, + ACTIONS(1374), 1, + aux_sym_else_clause_token1, + ACTIONS(1406), 4, + sym__statement_terminator, + aux_sym_elseif_clause_token1, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + [49216] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(599), 4, + ACTIONS(601), 4, sym__statement_terminator, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [59822] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1347), 1, - aux_sym__verbatim_command_argument_chars, - ACTIONS(3403), 3, - aux_sym__verbatim_command_argument_chars_token1, - aux_sym__verbatim_command_argument_chars_token2, - aux_sym__verbatim_command_argument_chars_token3, - [59834] = 5, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3399), 1, - sym_simple_name, - ACTIONS(3405), 1, - anon_sym_RBRACE, - STATE(1401), 1, - aux_sym_enum_statement_repeat1, - STATE(1911), 1, - sym_enum_member, - [59850] = 5, + [49226] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - ACTIONS(3373), 1, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1585), 1, - sym_type_literal, - STATE(1958), 1, + STATE(1557), 1, + sym_data_commands_allowed, + STATE(1878), 1, sym_statement_block, - [59866] = 3, + [49242] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_RBRACK, - ACTIONS(3407), 3, - aux_sym_logical_expression_token1, - aux_sym_logical_expression_token2, - aux_sym_logical_expression_token3, - [59878] = 5, + ACTIONS(3332), 1, + anon_sym_SEMI, + STATE(1378), 1, + aux_sym_script_block_repeat1, + ACTIONS(3330), 2, + sym_simple_name, + anon_sym_RBRACE, + [49256] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, - sym_simple_name, - ACTIONS(3409), 1, + ACTIONS(3330), 1, anon_sym_RBRACE, - STATE(1401), 1, + ACTIONS(3334), 1, + sym_simple_name, + STATE(1367), 1, aux_sym_enum_statement_repeat1, - STATE(1911), 1, + STATE(1692), 1, sym_enum_member, - [59894] = 4, + [49272] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3337), 1, anon_sym_EQ, - STATE(1554), 1, + STATE(1551), 1, sym_script_parameter_default, - ACTIONS(3413), 2, + ACTIONS(3339), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59908] = 5, + [49286] = 5, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(345), 1, sym_statement_block, - STATE(1655), 1, + STATE(1650), 1, sym_type_literal, - [59924] = 5, + [49302] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, - sym_simple_name, - ACTIONS(3417), 1, - anon_sym_RBRACE, - STATE(1415), 1, - aux_sym_enum_statement_repeat1, - STATE(1911), 1, - sym_enum_member, - [59940] = 4, + ACTIONS(595), 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [49312] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_SEMI, - STATE(1115), 1, - aux_sym_script_block_repeat1, - ACTIONS(3419), 2, + ACTIONS(3341), 1, sym_simple_name, + ACTIONS(3343), 1, anon_sym_RBRACE, - [59954] = 5, + STATE(1373), 1, + aux_sym_enum_statement_repeat1, + STATE(1692), 1, + sym_enum_member, + [49328] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3341), 1, sym_simple_name, - ACTIONS(3421), 1, + ACTIONS(3345), 1, anon_sym_RBRACE, - STATE(1401), 1, + STATE(1381), 1, aux_sym_enum_statement_repeat1, - STATE(1911), 1, + STATE(1692), 1, sym_enum_member, - [59970] = 4, + [49344] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_SEMI, - STATE(1414), 1, - aux_sym_script_block_repeat1, - ACTIONS(3391), 2, + ACTIONS(3341), 1, sym_simple_name, + ACTIONS(3347), 1, anon_sym_RBRACE, - [59984] = 5, + STATE(1367), 1, + aux_sym_enum_statement_repeat1, + STATE(1692), 1, + sym_enum_member, + [49360] = 5, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3384), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(401), 1, sym_statement_block, - STATE(1687), 1, + STATE(1531), 1, sym_type_literal, - [60000] = 5, + [49376] = 5, ACTIONS(81), 1, sym_comment, ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1720), 1, + STATE(1675), 1, sym_type_literal, - STATE(1920), 1, + STATE(2104), 1, sym_statement_block, - [60016] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3411), 1, - anon_sym_EQ, - STATE(1580), 1, - sym_script_parameter_default, - ACTIONS(3425), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60030] = 5, + [49392] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3341), 1, sym_simple_name, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_RBRACE, - STATE(1401), 1, + STATE(1383), 1, aux_sym_enum_statement_repeat1, - STATE(1911), 1, + STATE(1692), 1, sym_enum_member, - [60046] = 5, + [49408] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LBRACE, - ACTIONS(3386), 1, + ACTIONS(3264), 1, aux_sym_data_commands_allowed_token1, - STATE(1550), 1, + ACTIONS(3266), 1, + anon_sym_LBRACE, + STATE(1516), 1, sym_data_commands_allowed, - STATE(1797), 1, + STATE(2096), 1, sym_statement_block, - [60062] = 5, + [49424] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2609), 1, + anon_sym_SEMI, + STATE(1097), 1, + aux_sym_script_block_repeat1, + ACTIONS(3351), 2, + sym_simple_name, + anon_sym_RBRACE, + [49438] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2507), 1, + sym__statement_terminator, + ACTIONS(3353), 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [49450] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(601), 4, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3386), 1, - aux_sym_data_commands_allowed_token1, - STATE(1602), 1, - sym_data_commands_allowed, - STATE(2043), 1, - sym_statement_block, - [60078] = 5, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [49460] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3341), 1, sym_simple_name, - ACTIONS(3429), 1, + ACTIONS(3355), 1, anon_sym_RBRACE, - STATE(1407), 1, + STATE(1367), 1, aux_sym_enum_statement_repeat1, - STATE(1911), 1, + STATE(1692), 1, sym_enum_member, - [60094] = 5, + [49476] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3341), 1, sym_simple_name, - ACTIONS(3431), 1, + ACTIONS(3357), 1, anon_sym_RBRACE, - STATE(1420), 1, + STATE(1385), 1, aux_sym_enum_statement_repeat1, - STATE(1911), 1, + STATE(1692), 1, sym_enum_member, - [60110] = 5, + [49492] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3386), 1, - aux_sym_data_commands_allowed_token1, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(514), 1, - sym_statement_block, - STATE(1604), 1, - sym_data_commands_allowed, - [60126] = 2, + ACTIONS(3341), 1, + sym_simple_name, + ACTIONS(3359), 1, + anon_sym_RBRACE, + STATE(1367), 1, + aux_sym_enum_statement_repeat1, + STATE(1692), 1, + sym_enum_member, + [49508] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1513), 3, - anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [60135] = 4, + ACTIONS(2507), 1, + anon_sym_RBRACK, + ACTIONS(3361), 3, + aux_sym_logical_expression_token1, + aux_sym_logical_expression_token2, + aux_sym_logical_expression_token3, + [49520] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_DOLLAR2, - ACTIONS(3435), 1, - anon_sym_DQUOTE, - STATE(1507), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - [60148] = 4, + ACTIONS(3341), 1, + sym_simple_name, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(1367), 1, + aux_sym_enum_statement_repeat1, + STATE(1692), 1, + sym_enum_member, + [49536] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(595), 4, + sym__statement_terminator, anon_sym_LBRACE, - STATE(1428), 1, - aux_sym_class_statement_repeat1, - [60161] = 2, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [49546] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(3337), 1, + anon_sym_EQ, + STATE(1586), 1, + sym_script_parameter_default, + ACTIONS(3365), 2, anon_sym_RPAREN, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [60170] = 2, + anon_sym_COMMA, + [49560] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3442), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [60179] = 4, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_statement_block, + STATE(1632), 1, + sym_data_commands_allowed, + [49576] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, - aux_sym_else_clause_token1, - STATE(1975), 1, - sym_else_clause, - [60192] = 4, + ACTIONS(3262), 1, + anon_sym_LBRACE, + ACTIONS(3264), 1, + aux_sym_data_commands_allowed_token1, + STATE(369), 1, + sym_statement_block, + STATE(1597), 1, + sym_data_commands_allowed, + [49592] = 5, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_LPAREN, - ACTIONS(3167), 1, - aux_sym_switch_condition_token1, - STATE(1688), 1, - sym_switch_condition, - [60205] = 4, + ACTIONS(3367), 1, + anon_sym_COMMA, + ACTIONS(3369), 1, + anon_sym_RBRACK, + STATE(1483), 1, + aux_sym_dimension_repeat1, + STATE(1919), 1, + sym_dimension, + [49608] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1311), 1, + aux_sym__verbatim_command_argument_chars, + ACTIONS(3371), 3, + aux_sym__verbatim_command_argument_chars_token1, + aux_sym__verbatim_command_argument_chars_token2, + aux_sym__verbatim_command_argument_chars_token3, + [49620] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1302), 1, + aux_sym__verbatim_command_argument_chars, + ACTIONS(3373), 3, + aux_sym__verbatim_command_argument_chars_token1, + aux_sym__verbatim_command_argument_chars_token2, + aux_sym__verbatim_command_argument_chars_token3, + [49632] = 5, + ACTIONS(81), 1, + sym_comment, + ACTIONS(131), 1, + anon_sym_LBRACK, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(1681), 1, + sym_type_literal, + STATE(1760), 1, + sym_statement_block, + [49648] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3375), 1, anon_sym_RPAREN, - ACTIONS(3448), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - STATE(1433), 1, + STATE(1394), 1, aux_sym_argument_expression_list_repeat1, - [60218] = 4, + [49661] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3380), 1, anon_sym_DOLLAR2, - ACTIONS(3451), 1, + ACTIONS(3383), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60231] = 4, + [49674] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(1386), 1, + aux_sym_else_clause_token1, + ACTIONS(1404), 2, anon_sym_RPAREN, - ACTIONS(3455), 1, - anon_sym_COMMA, - STATE(1435), 1, - aux_sym_parameter_list_repeat1, - [60244] = 4, - ACTIONS(81), 1, + aux_sym_elseif_clause_token1, + [49685] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - aux_sym_switch_parameter_token5, - STATE(2050), 1, - sym_foreach_parameter, - [60257] = 4, + ACTIONS(3385), 1, + anon_sym_SEMI, + ACTIONS(3387), 1, + anon_sym_RPAREN, + ACTIONS(3389), 1, + aux_sym_for_statement_token2, + [49698] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2417), 1, - anon_sym_PIPE, - ACTIONS(3462), 1, - anon_sym_RPAREN, - STATE(1463), 1, - aux_sym__pipeline_tail, - [60270] = 4, + ACTIONS(3391), 1, + anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_LBRACE, + STATE(1425), 1, + aux_sym_catch_type_list_repeat1, + [49711] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2417), 1, - anon_sym_PIPE, - ACTIONS(3462), 1, - anon_sym_RPAREN, - STATE(1464), 1, - aux_sym__pipeline_tail, - [60283] = 4, + ACTIONS(3395), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, + anon_sym_LBRACE, + STATE(1399), 1, + aux_sym_data_commands_list_repeat1, + [49724] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3400), 1, + anon_sym_RPAREN, + ACTIONS(3402), 1, anon_sym_PIPE, - ACTIONS(3467), 1, - sym__statement_terminator, - STATE(1439), 1, + STATE(1400), 1, aux_sym__pipeline_tail, - [60296] = 4, + [49737] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2433), 1, + ACTIONS(2383), 1, anon_sym_PIPE, - ACTIONS(3469), 1, - sym__statement_terminator, - STATE(1439), 1, + ACTIONS(3405), 1, + anon_sym_RPAREN, + STATE(1400), 1, aux_sym__pipeline_tail, - [60309] = 2, + [49750] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3471), 3, + ACTIONS(3407), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [60318] = 2, + [49759] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3473), 3, - sym__statement_terminator, + ACTIONS(2369), 1, anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [60327] = 3, + ACTIONS(3409), 1, + sym__statement_terminator, + STATE(1420), 1, + aux_sym__pipeline_tail, + [49772] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3475), 1, - sym_type_identifier, - ACTIONS(3477), 2, + ACTIONS(3411), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [60338] = 3, + ACTIONS(3413), 1, + anon_sym_LBRACE, + STATE(1507), 1, + aux_sym_data_commands_list_repeat1, + [49785] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1480), 1, - aux_sym_else_clause_token1, - ACTIONS(1528), 2, - anon_sym_RPAREN, - aux_sym_elseif_clause_token1, - [60349] = 2, + ACTIONS(2369), 1, + anon_sym_PIPE, + ACTIONS(3409), 1, + sym__statement_terminator, + STATE(1421), 1, + aux_sym__pipeline_tail, + [49798] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3479), 3, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [60358] = 4, + ACTIONS(3415), 1, + anon_sym_DOLLAR2, + ACTIONS(3417), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + [49811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2814), 1, aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60371] = 4, + [49824] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3270), 1, + anon_sym_LBRACE, + STATE(1310), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [49835] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - STATE(1521), 1, - aux_sym_catch_type_list_repeat1, - [60384] = 4, + STATE(1430), 1, + aux_sym_class_statement_repeat1, + [49848] = 4, + ACTIONS(5), 1, + sym_decimal_integer_literal, + ACTIONS(81), 1, + sym_comment, + ACTIONS(83), 1, + sym_hexadecimal_integer_literal, + STATE(2050), 1, + sym_integer_literal, + [49861] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_DOLLAR2, + ACTIONS(3425), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + [49874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3487), 1, + ACTIONS(3427), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60397] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3489), 1, - anon_sym_COMMA, - ACTIONS(3491), 1, - anon_sym_RBRACK, - STATE(1460), 1, - aux_sym_dimension_repeat1, - [60410] = 4, + [49887] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym_COMMA, - ACTIONS(3495), 1, - anon_sym_RBRACK, - STATE(1462), 1, - aux_sym_generic_type_arguments_repeat1, - [60423] = 2, - ACTIONS(81), 1, + ACTIONS(3429), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [49896] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 3, - sym__statement_terminator, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [60432] = 4, + ACTIONS(2838), 1, + aux_sym_expandable_string_literal_token5, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + STATE(1469), 1, + aux_sym_expandable_string_literal_repeat2, + [49909] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3497), 1, + ACTIONS(3431), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60445] = 4, + [49922] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3433), 1, + anon_sym_RPAREN, + ACTIONS(3435), 1, anon_sym_COMMA, - ACTIONS(3501), 1, - anon_sym_LBRACE, - STATE(1522), 1, - aux_sym_data_commands_list_repeat1, - [60458] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3503), 1, - anon_sym_LPAREN, - ACTIONS(3505), 1, - anon_sym_LBRACE, - STATE(1829), 1, - sym_function_parameter_declaration, - [60471] = 4, + STATE(1394), 1, + aux_sym_argument_expression_list_repeat1, + [49935] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3507), 1, + ACTIONS(3437), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60484] = 2, + [49948] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(3429), 3, sym__statement_terminator, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - [60493] = 2, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [49957] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3471), 3, + ACTIONS(3439), 1, + anon_sym_RPAREN, + ACTIONS(3441), 1, + anon_sym_COMMA, + STATE(1419), 1, + aux_sym_attribute_arguments_repeat1, + [49970] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3400), 1, sym__statement_terminator, + ACTIONS(3444), 1, anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [60502] = 2, + STATE(1420), 1, + aux_sym__pipeline_tail, + [49983] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_PIPE, + ACTIONS(3405), 1, + sym__statement_terminator, + STATE(1420), 1, + aux_sym__pipeline_tail, + [49996] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3442), 3, + ACTIONS(3407), 3, sym__statement_terminator, anon_sym_PIPE, anon_sym_DASH_DASH_PERCENT, - [60511] = 2, + [50005] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3509), 3, + ACTIONS(3447), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [60520] = 4, + ACTIONS(3449), 1, + aux_sym_switch_parameter_token5, + STATE(1910), 1, + sym_foreach_parameter, + [50018] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_RBRACK, - STATE(1460), 1, - aux_sym_dimension_repeat1, - [60533] = 4, + ACTIONS(3099), 1, + anon_sym_LPAREN, + ACTIONS(3103), 1, + aux_sym_switch_condition_token1, + STATE(1563), 1, + sym_switch_condition, + [50031] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1530), 1, - sym__statement_terminator, - ACTIONS(3516), 1, - aux_sym_else_clause_token1, - STATE(2135), 1, - sym_else_clause, - [60546] = 4, + ACTIONS(3451), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_LBRACE, + STATE(1425), 1, + aux_sym_catch_type_list_repeat1, + [50044] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3456), 1, + anon_sym_RPAREN, + ACTIONS(3458), 1, anon_sym_COMMA, - ACTIONS(3518), 1, - anon_sym_RBRACK, - STATE(1509), 1, - aux_sym_generic_type_arguments_repeat1, - [60559] = 4, + STATE(1447), 1, + aux_sym_class_method_parameter_list_repeat1, + [50057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 1, + aux_sym_expandable_string_literal_token5, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + STATE(1469), 1, + aux_sym_expandable_string_literal_repeat2, + [50070] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3467), 1, - anon_sym_RPAREN, - ACTIONS(3520), 1, - anon_sym_PIPE, - STATE(1463), 1, - aux_sym__pipeline_tail, - [60572] = 4, + ACTIONS(3460), 1, + anon_sym_LPAREN, + ACTIONS(3462), 1, + anon_sym_LBRACE, + STATE(1854), 1, + sym_function_parameter_declaration, + [50083] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2417), 1, + ACTIONS(2383), 1, anon_sym_PIPE, - ACTIONS(3469), 1, + ACTIONS(3409), 1, anon_sym_RPAREN, - STATE(1463), 1, + STATE(1400), 1, aux_sym__pipeline_tail, - [60585] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3473), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH_PERCENT, - [60594] = 3, + [50096] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3525), 2, - anon_sym_RPAREN, + ACTIONS(3464), 1, anon_sym_COMMA, - [60605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2898), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - STATE(1538), 1, - aux_sym_expandable_string_literal_repeat2, - [60618] = 4, + ACTIONS(3467), 1, + anon_sym_LBRACE, + STATE(1430), 1, + aux_sym_class_statement_repeat1, + [50109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3527), 1, + ACTIONS(3469), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_SEMI, - ACTIONS(3531), 1, - anon_sym_RPAREN, - ACTIONS(3533), 1, - anon_sym_LF, - [60644] = 4, + [50122] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3471), 1, anon_sym_COMMA, - ACTIONS(3537), 1, - anon_sym_LBRACE, - STATE(1428), 1, - aux_sym_class_statement_repeat1, - [60657] = 4, + ACTIONS(3474), 1, + anon_sym_RBRACK, + STATE(1432), 1, + aux_sym_generic_type_arguments_repeat1, + [50135] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(2383), 1, + anon_sym_PIPE, + ACTIONS(3409), 1, + anon_sym_RPAREN, + STATE(1401), 1, + aux_sym__pipeline_tail, + [50148] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3539), 1, + ACTIONS(3476), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60670] = 4, - ACTIONS(5), 1, - sym_decimal_integer_literal, + [50161] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(83), 1, - sym_hexadecimal_integer_literal, - STATE(1961), 1, - sym_integer_literal, - [60683] = 4, + ACTIONS(3249), 1, + anon_sym_LBRACE, + STATE(1303), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [50172] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3449), 1, + aux_sym_switch_parameter_token5, + ACTIONS(3478), 1, + anon_sym_LPAREN, + STATE(2114), 1, + sym_foreach_parameter, + [50185] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3480), 1, anon_sym_RPAREN, - ACTIONS(3543), 1, + ACTIONS(3482), 1, anon_sym_COMMA, - STATE(1477), 1, - aux_sym_parameter_list_repeat1, - [60696] = 4, + STATE(1419), 1, + aux_sym_attribute_arguments_repeat1, + [50198] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3545), 1, + ACTIONS(3484), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60709] = 4, + [50211] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3486), 1, anon_sym_RPAREN, - ACTIONS(3549), 1, + ACTIONS(3488), 1, anon_sym_COMMA, - STATE(1494), 1, - aux_sym_class_method_parameter_list_repeat1, - [60722] = 4, + STATE(1439), 1, + aux_sym_parameter_list_repeat1, + [50224] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3435), 1, + anon_sym_COMMA, + ACTIONS(3491), 1, anon_sym_RPAREN, - ACTIONS(3553), 1, + STATE(1416), 1, + aux_sym_argument_expression_list_repeat1, + [50237] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3493), 3, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(1536), 1, - aux_sym_attribute_arguments_repeat1, - [60735] = 4, + anon_sym_RBRACK, + [50246] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3543), 1, + ACTIONS(3495), 1, anon_sym_COMMA, - ACTIONS(3555), 1, - anon_sym_RPAREN, - STATE(1435), 1, - aux_sym_parameter_list_repeat1, - [60748] = 4, + ACTIONS(3498), 1, + anon_sym_RBRACK, + STATE(1442), 1, + aux_sym_dimension_repeat1, + [50259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(3500), 1, anon_sym_SEMI, - ACTIONS(3559), 1, + ACTIONS(3502), 1, anon_sym_RPAREN, - ACTIONS(3561), 1, - anon_sym_LF, - [60761] = 4, + ACTIONS(3504), 1, + aux_sym_for_statement_token2, + [50272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2840), 1, aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60774] = 4, + [50285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + ACTIONS(3506), 1, + aux_sym_expandable_string_literal_token5, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60787] = 4, + [50298] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_COMMA, + ACTIONS(3510), 1, + anon_sym_RBRACK, + STATE(1432), 1, + aux_sym_generic_type_arguments_repeat1, + [50311] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_COMMA, + ACTIONS(3512), 1, + anon_sym_RPAREN, + STATE(1463), 1, + aux_sym_class_method_parameter_list_repeat1, + [50324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3563), 1, + ACTIONS(3514), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60800] = 4, + [50337] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3565), 1, + ACTIONS(3516), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60813] = 4, + [50350] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3415), 1, anon_sym_DOLLAR2, - ACTIONS(3567), 1, + ACTIONS(3518), 1, anon_sym_DQUOTE, - STATE(1507), 1, + STATE(1395), 1, aux_sym__expandable_string_literal_immediate_repeat2, - [60826] = 4, + [50363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 1, + aux_sym_expandable_string_literal_token5, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + STATE(1469), 1, + aux_sym_expandable_string_literal_repeat2, + [50376] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3520), 1, + anon_sym_EQ, + ACTIONS(3522), 2, anon_sym_RPAREN, - ACTIONS(3571), 1, anon_sym_COMMA, - STATE(1433), 1, - aux_sym_argument_expression_list_repeat1, - [60839] = 4, + [50387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + ACTIONS(3524), 1, + aux_sym_expandable_string_literal_token5, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60852] = 4, + [50400] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3460), 1, - aux_sym_switch_parameter_token5, - ACTIONS(3573), 1, - anon_sym_LPAREN, - STATE(2138), 1, - sym_foreach_parameter, - [60865] = 4, + ACTIONS(1396), 1, + anon_sym_RPAREN, + ACTIONS(3526), 1, + aux_sym_else_clause_token1, + STATE(1885), 1, + sym_else_clause, + [50413] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3482), 1, + anon_sym_COMMA, + ACTIONS(3528), 1, + anon_sym_RPAREN, + STATE(1437), 1, + aux_sym_attribute_arguments_repeat1, + [50426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(2798), 1, aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60878] = 4, + [50439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3575), 1, + ACTIONS(3530), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60891] = 4, + [50452] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1523), 1, - anon_sym_RPAREN, - ACTIONS(3273), 1, - aux_sym_finally_clause_token1, - STATE(2047), 1, - sym_finally_clause, - [60904] = 4, + ACTIONS(3532), 3, + sym__statement_terminator, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [50461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - anon_sym_SEMI, - ACTIONS(3579), 1, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3534), 1, + aux_sym_expandable_string_literal_token5, + STATE(1469), 1, + aux_sym_expandable_string_literal_repeat2, + [50474] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3536), 1, anon_sym_RPAREN, - ACTIONS(3581), 1, - anon_sym_LF, - [60917] = 4, + ACTIONS(3538), 1, + anon_sym_COMMA, + STATE(1439), 1, + aux_sym_parameter_list_repeat1, + [50487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, + ACTIONS(2822), 1, aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60930] = 4, + [50500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3583), 1, + ACTIONS(3540), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [60943] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_LBRACE, - STATE(1342), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [60954] = 4, + [50513] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3542), 1, anon_sym_RPAREN, - ACTIONS(3587), 1, + ACTIONS(3544), 1, anon_sym_COMMA, - STATE(1494), 1, + STATE(1463), 1, aux_sym_class_method_parameter_list_repeat1, - [60967] = 3, + [50526] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(1480), 1, - aux_sym_else_clause_token1, - ACTIONS(1528), 2, - sym__statement_terminator, - aux_sym_elseif_clause_token1, - [60978] = 4, + ACTIONS(3415), 1, + anon_sym_DOLLAR2, + ACTIONS(3547), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + [50539] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(1398), 3, anon_sym_RPAREN, - ACTIONS(3592), 1, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + [50548] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3421), 1, anon_sym_COMMA, - STATE(1496), 1, - aux_sym_attribute_arguments_repeat1, - [60991] = 3, + ACTIONS(3549), 1, + anon_sym_LBRACE, + STATE(1409), 1, + aux_sym_class_statement_repeat1, + [50561] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1400), 1, + anon_sym_RPAREN, + ACTIONS(3203), 1, + aux_sym_finally_clause_token1, + STATE(1705), 1, + sym_finally_clause, + [50574] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_DOLLAR2, + ACTIONS(3551), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym__expandable_string_literal_immediate_repeat2, + [50587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3553), 1, + anon_sym_DOLLAR, + ACTIONS(3556), 1, + aux_sym_expandable_string_literal_token5, + STATE(1469), 1, + aux_sym_expandable_string_literal_repeat2, + [50600] = 3, ACTIONS(81), 1, sym_comment, ACTIONS(107), 1, anon_sym_LBRACE, - STATE(1349), 2, + STATE(1317), 2, sym_script_block_expression, aux_sym_foreach_command_repeat1, - [61002] = 4, + [50611] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3483), 1, - anon_sym_COMMA, - ACTIONS(3595), 1, - anon_sym_LBRACE, - STATE(1447), 1, - aux_sym_catch_type_list_repeat1, - [61015] = 4, + ACTIONS(1400), 1, + sym__statement_terminator, + ACTIONS(3207), 1, + aux_sym_finally_clause_token1, + STATE(1945), 1, + sym_finally_clause, + [50624] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - ACTIONS(3167), 1, + ACTIONS(3103), 1, aux_sym_switch_condition_token1, - STATE(1697), 1, + STATE(1564), 1, sym_switch_condition, - [61028] = 4, + [50637] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3460), 1, anon_sym_LPAREN, - ACTIONS(3597), 1, + ACTIONS(3558), 1, anon_sym_LBRACE, - STATE(1872), 1, + STATE(1884), 1, sym_function_parameter_declaration, - [61041] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_COMMA, - ACTIONS(3599), 1, - anon_sym_LBRACE, - STATE(1453), 1, - aux_sym_data_commands_list_repeat1, - [61054] = 4, + [50650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3560), 1, anon_sym_SEMI, - ACTIONS(3603), 1, + ACTIONS(3562), 1, anon_sym_RPAREN, - ACTIONS(3605), 1, - anon_sym_LF, - [61067] = 4, + ACTIONS(3564), 1, + aux_sym_for_statement_token2, + [50663] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3607), 1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1506), 1, + STATE(1477), 1, aux_sym_class_statement_repeat1, - [61080] = 4, + [50676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 1, + ACTIONS(3568), 1, anon_sym_SEMI, - ACTIONS(3611), 1, + ACTIONS(3570), 1, anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_LF, - [61093] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3433), 1, - anon_sym_DOLLAR2, - ACTIONS(3615), 1, - anon_sym_DQUOTE, - STATE(1507), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - [61106] = 4, + ACTIONS(3572), 1, + aux_sym_for_statement_token2, + [50689] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3617), 1, + ACTIONS(3574), 1, anon_sym_LBRACE, - STATE(1428), 1, + STATE(1430), 1, aux_sym_class_statement_repeat1, - [61119] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3619), 1, - anon_sym_DOLLAR2, - ACTIONS(3622), 1, - anon_sym_DQUOTE, - STATE(1507), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - [61132] = 4, + [50702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3576), 1, anon_sym_SEMI, - ACTIONS(3626), 1, + ACTIONS(3578), 1, anon_sym_RPAREN, - ACTIONS(3628), 1, - anon_sym_LF, - [61145] = 4, + ACTIONS(3580), 1, + aux_sym_for_statement_token2, + [50715] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3582), 1, + sym_type_identifier, + ACTIONS(3584), 2, anon_sym_COMMA, - ACTIONS(3633), 1, anon_sym_RBRACK, - STATE(1509), 1, - aux_sym_generic_type_arguments_repeat1, - [61158] = 4, + [50726] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3586), 3, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3635), 1, - anon_sym_LBRACE, - STATE(1470), 1, - aux_sym_class_statement_repeat1, - [61171] = 4, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2433), 1, - anon_sym_PIPE, - ACTIONS(3462), 1, - sym__statement_terminator, - STATE(1439), 1, - aux_sym__pipeline_tail, - [61184] = 4, + anon_sym_RBRACK, + [50735] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - ACTIONS(3167), 1, + ACTIONS(3103), 1, aux_sym_switch_condition_token1, - STATE(1591), 1, + STATE(1521), 1, sym_switch_condition, - [61197] = 4, + [50748] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3460), 1, anon_sym_LPAREN, - ACTIONS(3637), 1, + ACTIONS(3588), 1, anon_sym_LBRACE, STATE(1933), 1, sym_function_parameter_declaration, - [61210] = 4, + [50761] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_PIPE, - ACTIONS(3462), 1, - sym__statement_terminator, - STATE(1440), 1, - aux_sym__pipeline_tail, - [61223] = 4, + ACTIONS(3590), 1, + anon_sym_COMMA, + ACTIONS(3592), 1, + anon_sym_RBRACK, + STATE(1442), 1, + aux_sym_dimension_repeat1, + [50774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 1, + ACTIONS(3594), 1, anon_sym_SEMI, - ACTIONS(3641), 1, + ACTIONS(3596), 1, anon_sym_RPAREN, - ACTIONS(3643), 1, - anon_sym_LF, - [61236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(3645), 1, - aux_sym_expandable_string_literal_token5, - STATE(1538), 1, - aux_sym_expandable_string_literal_repeat2, - [61249] = 4, + ACTIONS(3598), 1, + aux_sym_for_statement_token2, + [50787] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3647), 1, + ACTIONS(3600), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(1488), 1, aux_sym_class_statement_repeat1, - [61262] = 4, + [50800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3602), 1, anon_sym_SEMI, - ACTIONS(3651), 1, + ACTIONS(3604), 1, anon_sym_RPAREN, - ACTIONS(3653), 1, - anon_sym_LF, - [61275] = 4, + ACTIONS(3606), 1, + aux_sym_for_statement_token2, + [50813] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(1398), 3, + sym__statement_terminator, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + [50822] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3655), 1, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(1428), 1, + STATE(1430), 1, aux_sym_class_statement_repeat1, - [61288] = 4, + [50835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3657), 1, + ACTIONS(3610), 1, anon_sym_SEMI, - ACTIONS(3659), 1, + ACTIONS(3612), 1, anon_sym_RPAREN, - ACTIONS(3661), 1, - anon_sym_LF, - [61301] = 4, + ACTIONS(3614), 1, + aux_sym_for_statement_token2, + [50848] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3663), 1, + ACTIONS(3508), 1, anon_sym_COMMA, - ACTIONS(3666), 1, - anon_sym_LBRACE, - STATE(1521), 1, - aux_sym_catch_type_list_repeat1, - [61314] = 4, + ACTIONS(3616), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_generic_type_arguments_repeat1, + [50861] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3668), 1, - anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_LBRACE, - STATE(1522), 1, - aux_sym_data_commands_list_repeat1, - [61327] = 4, + ACTIONS(1402), 3, + sym__statement_terminator, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + [50870] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - ACTIONS(3167), 1, + ACTIONS(3103), 1, aux_sym_switch_condition_token1, - STATE(1546), 1, + STATE(1607), 1, sym_switch_condition, - [61340] = 4, + [50883] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3460), 1, anon_sym_LPAREN, - ACTIONS(3673), 1, + ACTIONS(3618), 1, anon_sym_LBRACE, - STATE(1977), 1, + STATE(1976), 1, sym_function_parameter_declaration, - [61353] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_LBRACE, - STATE(1346), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [61364] = 4, - ACTIONS(81), 1, + [50896] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_COMMA, - ACTIONS(3675), 1, + ACTIONS(3620), 1, + anon_sym_SEMI, + ACTIONS(3622), 1, anon_sym_RPAREN, - STATE(1475), 1, - aux_sym_class_method_parameter_list_repeat1, - [61377] = 4, + ACTIONS(3624), 1, + aux_sym_for_statement_token2, + [50909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, + ACTIONS(3626), 1, anon_sym_SEMI, - ACTIONS(3679), 1, + ACTIONS(3628), 1, anon_sym_RPAREN, - ACTIONS(3681), 1, - anon_sym_LF, - [61390] = 4, + ACTIONS(3630), 1, + aux_sym_for_statement_token2, + [50922] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3683), 1, + ACTIONS(3632), 1, anon_sym_LBRACE, - STATE(1530), 1, + STATE(1499), 1, aux_sym_class_statement_repeat1, - [61403] = 4, + [50935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3634), 1, anon_sym_SEMI, - ACTIONS(3687), 1, + ACTIONS(3636), 1, anon_sym_RPAREN, - ACTIONS(3689), 1, - anon_sym_LF, - [61416] = 4, + ACTIONS(3638), 1, + aux_sym_for_statement_token2, + [50948] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3535), 1, - anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_LBRACE, - STATE(1428), 1, - aux_sym_class_statement_repeat1, - [61429] = 4, + ACTIONS(1396), 1, + sym__statement_terminator, + ACTIONS(3640), 1, + aux_sym_else_clause_token1, + STATE(2001), 1, + sym_else_clause, + [50961] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3571), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_RPAREN, - STATE(1484), 1, - aux_sym_argument_expression_list_repeat1, - [61442] = 4, + ACTIONS(3642), 1, + anon_sym_LBRACE, + STATE(1430), 1, + aux_sym_class_statement_repeat1, + [50974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3644), 1, anon_sym_SEMI, - ACTIONS(3697), 1, + ACTIONS(3646), 1, anon_sym_RPAREN, - ACTIONS(3699), 1, - anon_sym_LF, - [61455] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2906), 1, - aux_sym_expandable_string_literal_token5, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - STATE(1538), 1, - aux_sym_expandable_string_literal_repeat2, - [61468] = 4, + ACTIONS(3648), 1, + aux_sym_for_statement_token2, + [50987] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(1386), 1, + aux_sym_else_clause_token1, + ACTIONS(1404), 2, sym__statement_terminator, - ACTIONS(3249), 1, + aux_sym_elseif_clause_token1, + [50998] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(141), 1, + anon_sym_LBRACE, + STATE(1361), 2, + sym_script_block_expression, + aux_sym_foreach_command_repeat1, + [51009] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3532), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH_PERCENT, + [51018] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1402), 3, + anon_sym_RPAREN, + aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, - STATE(1924), 1, - sym_finally_clause, - [61481] = 4, - ACTIONS(3), 1, + [51027] = 4, + ACTIONS(81), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(3701), 1, - aux_sym_expandable_string_literal_token5, - STATE(1538), 1, - aux_sym_expandable_string_literal_repeat2, - [61494] = 4, + ACTIONS(3391), 1, + anon_sym_COMMA, + ACTIONS(3650), 1, + anon_sym_LBRACE, + STATE(1398), 1, + aux_sym_catch_type_list_repeat1, + [51040] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(3538), 1, anon_sym_COMMA, - ACTIONS(3703), 1, + ACTIONS(3652), 1, anon_sym_RPAREN, - STATE(1496), 1, - aux_sym_attribute_arguments_repeat1, - [61507] = 4, + STATE(1460), 1, + aux_sym_parameter_list_repeat1, + [51053] = 4, ACTIONS(81), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(3411), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, + anon_sym_LBRACE, + STATE(1399), 1, + aux_sym_data_commands_list_repeat1, + [51066] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3449), 1, + aux_sym_switch_parameter_token5, + ACTIONS(3656), 1, + anon_sym_LPAREN, + STATE(2110), 1, + sym_foreach_parameter, + [51079] = 4, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3449), 1, aux_sym_switch_parameter_token5, - ACTIONS(3705), 1, + ACTIONS(3658), 1, anon_sym_LPAREN, - STATE(2140), 1, + STATE(2112), 1, sym_foreach_parameter, - [61520] = 4, + [51092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - ACTIONS(3710), 1, + ACTIONS(2806), 1, aux_sym_expandable_string_literal_token5, - STATE(1538), 1, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + STATE(1469), 1, aux_sym_expandable_string_literal_repeat2, - [61533] = 4, + [51105] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_DOLLAR2, - ACTIONS(3712), 1, - anon_sym_DQUOTE, - STATE(1507), 1, - aux_sym__expandable_string_literal_immediate_repeat2, - [61546] = 3, + ACTIONS(3660), 2, + aux_sym_while_statement_token1, + aux_sym_do_statement_token2, + [51113] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1368), 2, - sym_script_block_expression, - aux_sym_foreach_command_repeat1, - [61557] = 4, + STATE(2100), 1, + sym_statement_block, + [51123] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3460), 1, - aux_sym_switch_parameter_token5, - ACTIONS(3714), 1, - anon_sym_LPAREN, - STATE(2136), 1, - sym_foreach_parameter, - [61570] = 4, - ACTIONS(3), 1, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(1878), 1, + sym_statement_block, + [51133] = 3, + ACTIONS(81), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(3716), 1, - aux_sym_expandable_string_literal_token5, - STATE(1538), 1, - aux_sym_expandable_string_literal_repeat2, - [61583] = 3, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(392), 1, + sym_statement_block, + [51143] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(475), 1, + STATE(1704), 1, sym_statement_block, - [61593] = 3, + [51153] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_script_block_expression, - [61603] = 3, + STATE(1711), 1, + sym_statement_block, + [51163] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3298), 1, anon_sym_LBRACE, - STATE(1317), 1, + STATE(289), 1, sym_statement_block, - [61613] = 3, + [51173] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(1167), 1, anon_sym_LBRACE, - STATE(2002), 1, - sym_switch_body, - [61623] = 3, + STATE(985), 1, + sym_script_block_expression, + [51183] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3375), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51191] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(349), 1, sym_statement_block, - [61633] = 3, + [51201] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3662), 1, anon_sym_LBRACE, - STATE(1962), 1, - sym_statement_block, - [61643] = 3, + STATE(1922), 1, + sym_switch_body, + [51211] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(2045), 1, + STATE(1283), 1, sym_statement_block, - [61653] = 3, + [51221] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(2060), 1, + STATE(1809), 1, sym_statement_block, - [61663] = 3, + [51231] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1963), 1, + STATE(1826), 1, sym_statement_block, - [61673] = 3, + [51241] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1966), 1, + STATE(1928), 1, sym_statement_block, - [61683] = 3, + [51251] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(470), 1, + STATE(1504), 1, sym_statement_block, - [61693] = 2, + [51261] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61701] = 2, + ACTIONS(131), 1, + anon_sym_LBRACK, + STATE(1643), 1, + sym_type_literal, + [51271] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3525), 2, + ACTIONS(3664), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61709] = 3, + [51279] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1330), 1, + STATE(1871), 1, sym_statement_block, - [61719] = 3, + [51289] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1905), 1, + STATE(1872), 1, sym_statement_block, - [61729] = 3, + [51299] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(2058), 1, + STATE(423), 1, sym_statement_block, - [61739] = 3, + [51309] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1429), 1, + STATE(1880), 1, sym_statement_block, - [61749] = 3, + [51319] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_RBRACK, - [61759] = 3, + ACTIONS(3266), 1, + anon_sym_LBRACE, + STATE(1890), 1, + sym_statement_block, + [51329] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1880), 1, + STATE(1893), 1, sym_statement_block, - [61769] = 3, + [51339] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1941), 1, + STATE(1899), 1, sym_statement_block, - [61779] = 3, + [51349] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_type_literal, - [61789] = 3, + ACTIONS(3486), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51357] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3666), 2, anon_sym_LBRACE, - STATE(1971), 1, - sym_statement_block, - [61799] = 3, + aux_sym_data_commands_allowed_token1, + [51365] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1988), 1, + STATE(1915), 1, sym_statement_block, - [61809] = 3, + [51375] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(2007), 1, + STATE(1923), 1, sym_statement_block, - [61819] = 3, + [51385] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(2042), 1, + STATE(1925), 1, sym_statement_block, - [61829] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3726), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61837] = 3, + [51395] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(2134), 1, + STATE(1937), 1, sym_statement_block, - [61847] = 3, + [51405] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1727), 1, + STATE(1941), 1, sym_statement_block, - [61857] = 3, + [51415] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1763), 1, + STATE(1396), 1, sym_statement_block, - [61867] = 3, + [51425] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1764), 1, + STATE(1950), 1, sym_statement_block, - [61877] = 3, + [51435] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1792), 1, + STATE(1957), 1, sym_statement_block, - [61887] = 3, + [51445] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1444), 1, + STATE(1966), 1, sym_statement_block, - [61897] = 3, + [51455] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1838), 1, + STATE(1967), 1, sym_statement_block, - [61907] = 3, + [51465] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(107), 1, anon_sym_LBRACE, - STATE(1840), 1, - sym_statement_block, - [61917] = 3, + STATE(145), 1, + sym_script_block_expression, + [51475] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3668), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1847), 1, - sym_statement_block, - [61927] = 3, + [51483] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1856), 1, + STATE(406), 1, sym_statement_block, - [61937] = 3, + [51493] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3670), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51501] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(479), 1, + STATE(381), 1, sym_statement_block, - [61947] = 2, + [51511] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3413), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61955] = 3, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(1944), 1, + sym_statement_block, + [51521] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(2026), 1, - sym_switch_body, - [61965] = 3, + STATE(400), 1, + sym_statement_block, + [51531] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - ACTIONS(3732), 1, - anon_sym_COLON, - [61975] = 2, + STATE(378), 1, + sym_statement_block, + [51541] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3734), 2, - aux_sym_while_statement_token1, - aux_sym_do_statement_token2, - [61983] = 3, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_statement_block, + [51551] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(317), 1, + STATE(1953), 1, sym_statement_block, - [61993] = 3, + [51561] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(380), 1, sym_statement_block, - [62003] = 2, + [51571] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3738), 2, - anon_sym_LPAREN, + ACTIONS(3266), 1, anon_sym_LBRACE, - [62011] = 3, + STATE(1318), 1, + sym_statement_block, + [51581] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3740), 1, - anon_sym_EQ, - ACTIONS(3742), 1, - sym__statement_terminator, - [62021] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_statement_block, + [51591] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1957), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - STATE(815), 1, + STATE(102), 1, sym_script_block_expression, - [62031] = 3, + [51601] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_LBRACE, - STATE(1038), 1, - sym_script_block_expression, - [62041] = 3, + ACTIONS(3672), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_RBRACK, + [51611] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3676), 1, anon_sym_LBRACE, - STATE(426), 1, - sym_statement_block, - [62051] = 3, + STATE(386), 1, + sym_switch_body, + [51621] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(2100), 1, + STATE(330), 1, sym_switch_body, - [62061] = 3, + [51631] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1846), 1, + STATE(1288), 1, sym_statement_block, - [62071] = 3, + [51641] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(535), 1, + STATE(1286), 1, sym_statement_block, - [62081] = 3, + [51651] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1961), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_script_block_expression, + [51661] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1583), 1, + STATE(1963), 1, sym_statement_block, - [62091] = 3, + [51671] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(2040), 1, + STATE(1964), 1, sym_statement_block, - [62101] = 3, + [51681] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(813), 1, - sym_script_block_expression, - [62111] = 2, + STATE(1491), 1, + sym_statement_block, + [51691] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3680), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62119] = 3, + [51699] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3682), 1, + anon_sym_EQ, + ACTIONS(3684), 1, + sym__statement_terminator, + [51709] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(486), 1, + STATE(333), 1, sym_statement_block, - [62129] = 3, + [51719] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(437), 1, + STATE(1657), 1, sym_statement_block, - [62139] = 3, + [51729] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(1991), 1, anon_sym_LBRACE, - STATE(861), 1, + STATE(775), 1, sym_script_block_expression, - [62149] = 3, + [51739] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3678), 1, anon_sym_LBRACE, - STATE(1900), 1, - sym_statement_block, - [62159] = 3, + STATE(364), 1, + sym_switch_body, + [51749] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_LBRACE, - STATE(2127), 1, - sym_statement_block, - [62169] = 3, + ACTIONS(3686), 1, + anon_sym_EQ, + ACTIONS(3688), 1, + sym__statement_terminator, + [51759] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3744), 1, + ACTIONS(3522), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51767] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2401), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(540), 1, - sym_switch_body, - [62179] = 3, + [51775] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(537), 1, + STATE(1993), 1, sym_statement_block, - [62189] = 3, + [51785] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(508), 1, + STATE(1996), 1, sym_statement_block, - [62199] = 3, + [51795] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(1927), 1, + ACTIONS(3690), 1, + anon_sym_EQ, + ACTIONS(3692), 1, + sym__statement_terminator, + [51805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + sym__command_token, + STATE(1428), 1, + sym_function_name, + [51815] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(2033), 1, anon_sym_LBRACE, - STATE(880), 1, + STATE(831), 1, sym_script_block_expression, - [62209] = 3, + [51825] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(2000), 1, sym_statement_block, - [62219] = 3, + [51835] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(487), 1, - sym_statement_block, - [62229] = 3, + ACTIONS(3339), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51843] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(488), 1, + STATE(2003), 1, sym_statement_block, - [62239] = 3, + [51853] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3746), 1, - anon_sym_RBRACK, - [62249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 1, - sym__command_token, - STATE(1454), 1, - sym_function_name, - [62259] = 2, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(2004), 1, + sym_statement_block, + [51863] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3750), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62267] = 3, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(384), 1, + sym_statement_block, + [51873] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1329), 1, + STATE(2005), 1, sym_statement_block, - [62277] = 2, + [51883] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3585), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62285] = 3, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(2007), 1, + sym_statement_block, + [51893] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1737), 1, + STATE(360), 1, sym_statement_block, - [62295] = 2, + [51903] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3590), 2, + ACTIONS(3542), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62303] = 3, + [51911] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(1931), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_script_block_expression, + [51921] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1748), 1, + STATE(2008), 1, sym_statement_block, - [62313] = 3, + [51931] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1451), 1, + STATE(2009), 1, sym_statement_block, - [62323] = 3, + [51941] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3752), 1, - sym_simple_name, - STATE(1398), 1, - sym_data_name, - [62333] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(370), 1, + sym_statement_block, + [51951] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(441), 1, + STATE(2010), 1, sym_statement_block, - [62343] = 3, + [51961] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(2012), 1, sym_statement_block, - [62353] = 3, + [51971] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(133), 1, - sym_script_block_expression, - [62363] = 3, + STATE(1501), 1, + sym_statement_block, + [51981] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(410), 1, + STATE(2015), 1, sym_statement_block, - [62373] = 3, + [51991] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3696), 1, anon_sym_LBRACE, - STATE(446), 1, + STATE(288), 1, sym_statement_block, - [62383] = 3, + [52001] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1899), 1, + STATE(327), 1, sym_statement_block, - [62393] = 3, + [52011] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1902), 1, + STATE(328), 1, sym_statement_block, - [62403] = 3, + [52021] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3754), 1, + ACTIONS(3290), 1, anon_sym_LBRACE, - ACTIONS(3756), 1, - anon_sym_COLON, - [62413] = 3, + STATE(309), 1, + sym_statement_block, + [52031] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(2071), 1, + STATE(2016), 1, sym_statement_block, - [62423] = 2, + [52041] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3758), 2, - anon_sym_COMMA, + ACTIONS(3698), 1, anon_sym_LBRACE, - [62431] = 3, + STATE(2051), 1, + sym_switch_body, + [52051] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(494), 1, + STATE(336), 1, sym_statement_block, - [62441] = 3, + [52061] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1724), 1, + STATE(2017), 1, sym_statement_block, - [62451] = 3, + [52071] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(1728), 1, + STATE(2018), 1, sym_statement_block, - [62461] = 3, + [52081] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1753), 1, + STATE(337), 1, sym_statement_block, - [62471] = 3, + [52091] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1794), 1, + STATE(407), 1, sym_statement_block, - [62481] = 3, + [52101] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3700), 1, anon_sym_LBRACE, - STATE(1800), 1, + STATE(323), 1, sym_statement_block, - [62491] = 3, + [52111] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1803), 1, + STATE(342), 1, sym_statement_block, - [62501] = 3, + [52121] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1819), 1, + STATE(390), 1, sym_statement_block, - [62511] = 3, + [52131] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3760), 1, - anon_sym_EQ, - ACTIONS(3762), 1, + ACTIONS(3400), 2, sym__statement_terminator, - [62521] = 3, + anon_sym_PIPE, + [52139] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3702), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52147] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(397), 1, + STATE(1763), 1, sym_statement_block, - [62531] = 3, + [52157] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(496), 1, + STATE(346), 1, sym_statement_block, - [62541] = 3, + [52167] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_LBRACE, + ACTIONS(3706), 1, + anon_sym_COLON, + [52177] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1839), 1, + STATE(391), 1, sym_statement_block, - [62551] = 3, + [52187] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(393), 1, sym_statement_block, - [62561] = 3, + [52197] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(523), 1, + STATE(351), 1, sym_statement_block, - [62571] = 3, + [52207] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3764), 1, - anon_sym_EQ, - ACTIONS(3766), 1, - sym__statement_terminator, - [62581] = 3, + ACTIONS(3439), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [52215] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1842), 1, + STATE(352), 1, sym_statement_block, - [62591] = 3, + [52225] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(416), 1, + STATE(1764), 1, sym_statement_block, - [62601] = 3, + [52235] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(510), 1, + STATE(389), 1, sym_statement_block, - [62611] = 3, + [52245] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3752), 1, - sym_simple_name, - STATE(1422), 1, - sym_data_name, - [62621] = 3, + ACTIONS(3700), 1, + anon_sym_LBRACE, + STATE(290), 1, + sym_statement_block, + [52255] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(511), 1, + STATE(1765), 1, sym_statement_block, - [62631] = 3, + [52265] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1853), 1, + STATE(422), 1, sym_statement_block, - [62641] = 3, + [52275] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(1863), 1, + STATE(354), 1, sym_statement_block, - [62651] = 3, + [52285] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3768), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - ACTIONS(3770), 1, - anon_sym_COLON, - [62661] = 3, + STATE(403), 1, + sym_statement_block, + [52295] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(543), 1, + STATE(1741), 1, sym_statement_block, - [62671] = 3, + [52305] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3398), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1873), 1, + [52313] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3280), 1, + anon_sym_LBRACE, + STATE(399), 1, sym_statement_block, - [62681] = 3, + [52323] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(484), 1, + STATE(425), 1, sym_statement_block, - [62691] = 3, + [52333] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_EQ, - ACTIONS(3774), 1, - sym__statement_terminator, - [62701] = 2, + ACTIONS(3400), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [52341] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3776), 2, + ACTIONS(3708), 1, anon_sym_LBRACE, - aux_sym_data_commands_allowed_token1, - [62709] = 3, + ACTIONS(3710), 1, + anon_sym_COLON, + [52351] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3676), 1, anon_sym_LBRACE, - STATE(447), 1, - sym_statement_block, - [62719] = 3, + STATE(395), 1, + sym_switch_body, + [52361] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(402), 1, sym_statement_block, - [62729] = 2, + [52371] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3666), 2, - anon_sym_COMMA, + ACTIONS(3280), 1, anon_sym_LBRACE, - [62737] = 2, + STATE(409), 1, + sym_statement_block, + [52381] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3633), 2, + ACTIONS(3474), 2, anon_sym_COMMA, anon_sym_RBRACK, - [62745] = 3, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_statement_block, - [62755] = 2, + [52389] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3671), 2, + ACTIONS(3454), 2, anon_sym_COMMA, anon_sym_LBRACE, - [62763] = 3, + [52397] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_statement_block, - [62773] = 2, + ACTIONS(3672), 1, + anon_sym_LPAREN, + ACTIONS(3712), 1, + anon_sym_RBRACK, + [52407] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3778), 2, + ACTIONS(3714), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62781] = 3, + [52415] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(300), 1, + STATE(355), 1, sym_statement_block, - [62791] = 3, + [52425] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(433), 1, + STATE(356), 1, sym_statement_block, - [62801] = 3, + [52435] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3752), 1, - sym_simple_name, - STATE(1421), 1, - sym_data_name, - [62811] = 3, + ACTIONS(3290), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_statement_block, + [52445] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(377), 1, sym_statement_block, - [62821] = 2, + [52455] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3467), 2, - sym__statement_terminator, - anon_sym_PIPE, - [62829] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_statement_block, + [52465] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(435), 1, + STATE(1287), 1, sym_statement_block, - [62839] = 2, + [52475] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62847] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(357), 1, + sym_statement_block, + [52485] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3780), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - ACTIONS(3782), 1, + STATE(2108), 1, + sym_statement_block, + [52495] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_LBRACE, + ACTIONS(3718), 1, anon_sym_COLON, - [62857] = 3, + [52505] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(500), 1, + STATE(2062), 1, sym_statement_block, - [62867] = 3, + [52515] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(1927), 1, sym_statement_block, - [62877] = 3, + [52525] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3720), 2, + aux_sym_while_statement_token1, + aux_sym_do_statement_token2, + [52533] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_EQ, + ACTIONS(3724), 1, + sym__statement_terminator, + [52543] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3726), 2, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(454), 1, - sym_statement_block, - [62887] = 2, + [52551] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3467), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [62895] = 3, + anon_sym_COMMA, + anon_sym_LBRACE, + [52559] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(504), 1, + STATE(359), 1, sym_statement_block, - [62905] = 3, + [52569] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3784), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(391), 1, + STATE(348), 1, sym_statement_block, - [62915] = 2, + [52579] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(2445), 2, - anon_sym_COMMA, + ACTIONS(3696), 1, anon_sym_LBRACE, - [62923] = 3, + STATE(313), 1, + sym_statement_block, + [52589] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3662), 1, anon_sym_LBRACE, - STATE(1327), 1, - sym_statement_block, - [62933] = 3, + STATE(1867), 1, + sym_switch_body, + [52599] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(2001), 1, + STATE(417), 1, sym_statement_block, - [62943] = 3, + [52609] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(2020), 1, + STATE(361), 1, sym_statement_block, - [62953] = 3, - ACTIONS(81), 1, + [52619] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_RBRACK, - [62963] = 3, + ACTIONS(3694), 1, + sym__command_token, + STATE(1473), 1, + sym_function_name, + [52629] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(319), 1, + STATE(362), 1, sym_statement_block, - [62973] = 3, + [52639] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(449), 1, - sym_switch_body, - [62983] = 3, + STATE(363), 1, + sym_statement_block, + [52649] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(365), 1, sym_statement_block, - [62993] = 3, + [52659] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3744), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(524), 1, - sym_switch_body, - [63003] = 3, + STATE(410), 1, + sym_statement_block, + [52669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 1, + ACTIONS(3694), 1, sym__command_token, - STATE(1500), 1, + STATE(1482), 1, sym_function_name, - [63013] = 3, + [52679] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3752), 1, - sym_simple_name, - STATE(1425), 1, - sym_data_name, - [63023] = 3, + ACTIONS(3728), 1, + anon_sym_LBRACE, + ACTIONS(3730), 1, + anon_sym_COLON, + [52689] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3698), 1, anon_sym_LBRACE, - STATE(2062), 1, - sym_statement_block, - [63033] = 3, + STATE(1946), 1, + sym_switch_body, + [52699] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(1363), 1, + STATE(1983), 1, sym_statement_block, - [63043] = 3, + [52709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3694), 1, + sym__command_token, + STATE(1493), 1, + sym_function_name, + [52719] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3298), 1, anon_sym_LBRACE, - STATE(513), 1, + STATE(322), 1, sym_statement_block, - [63053] = 3, + [52729] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(369), 1, sym_statement_block, - [63063] = 3, + [52739] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(89), 1, - sym_script_block_expression, - [63073] = 3, + STATE(2096), 1, + sym_statement_block, + [52749] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3732), 2, + aux_sym_while_statement_token1, + aux_sym_do_statement_token2, + [52757] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(1870), 1, sym_statement_block, - [63083] = 3, + [52767] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym_switch_body, - [63093] = 3, + ACTIONS(3734), 2, + aux_sym_while_statement_token1, + aux_sym_do_statement_token2, + [52775] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(469), 1, + STATE(1680), 1, sym_statement_block, - [63103] = 3, + [52785] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(460), 1, + STATE(408), 1, sym_statement_block, - [63113] = 3, + [52795] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(472), 1, + STATE(1511), 1, sym_statement_block, - [63123] = 3, + [52805] = 3, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3672), 1, + anon_sym_LPAREN, + ACTIONS(3736), 1, + anon_sym_RBRACK, + [52815] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3266), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(1682), 1, sym_statement_block, - [63133] = 3, + [52825] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(1203), 1, anon_sym_LBRACE, - STATE(466), 1, - sym_statement_block, - [63143] = 3, + STATE(927), 1, + sym_script_block_expression, + [52835] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3718), 1, + ACTIONS(3280), 1, anon_sym_LBRACE, - STATE(1771), 1, - sym_switch_body, - [63153] = 3, + STATE(397), 1, + sym_statement_block, + [52845] = 3, ACTIONS(81), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3738), 1, anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(3740), 1, sym__statement_terminator, - [63163] = 3, + [52855] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(505), 1, - sym_statement_block, - [63173] = 3, - ACTIONS(3), 1, + ACTIONS(3742), 1, + sym__statement_terminator, + [52862] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3744), 1, + sym__statement_terminator, + [52869] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_LPAREN, + [52876] = 2, + ACTIONS(81), 1, sym_comment, ACTIONS(3748), 1, - sym__command_token, - STATE(1513), 1, - sym_function_name, - [63183] = 2, + anon_sym_RBRACE, + [52883] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [63191] = 3, + ACTIONS(2371), 1, + sym__statement_terminator, + [52890] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(529), 1, - sym_statement_block, - [63201] = 3, - ACTIONS(3), 1, + ACTIONS(3750), 1, + sym__statement_terminator, + [52897] = 2, + ACTIONS(81), 1, sym_comment, - ACTIONS(3748), 1, - sym__command_token, - STATE(1524), 1, - sym_function_name, - [63211] = 2, + ACTIONS(3752), 1, + anon_sym_RPAREN, + [52904] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3794), 2, + ACTIONS(1534), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [63219] = 2, + [52911] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3796), 2, - aux_sym_while_statement_token1, - aux_sym_do_statement_token2, - [63227] = 2, + ACTIONS(3754), 1, + anon_sym_RBRACK, + [52918] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3798), 2, - aux_sym_while_statement_token1, - aux_sym_do_statement_token2, - [63235] = 2, + ACTIONS(3756), 1, + anon_sym_RPAREN, + [52925] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3800), 2, - aux_sym_while_statement_token1, - aux_sym_do_statement_token2, - [63243] = 3, + ACTIONS(3758), 1, + anon_sym_RBRACE, + [52932] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3760), 1, + anon_sym_LPAREN, + [52939] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3762), 1, + aux_sym_foreach_statement_token2, + [52946] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1540), 1, + anon_sym_RPAREN, + [52953] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1542), 1, + anon_sym_RPAREN, + [52960] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3764), 1, + anon_sym_RBRACE, + [52967] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3766), 1, + sym_simple_name, + [52974] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3768), 1, + anon_sym_RBRACE, + [52981] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3770), 1, + sym__statement_terminator, + [52988] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3772), 1, + sym_simple_name, + [52995] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1552), 1, + anon_sym_RPAREN, + [53002] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3774), 1, + anon_sym_RBRACE, + [53009] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LBRACE, - STATE(1711), 1, - sym_statement_block, - [63253] = 3, + ACTIONS(3776), 1, + anon_sym_RBRACK, + [53016] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LBRACE, - STATE(1712), 1, - sym_statement_block, - [63263] = 3, + ACTIONS(3778), 1, + anon_sym_RBRACE, + [53023] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_statement_block, - [63273] = 3, + ACTIONS(1568), 1, + anon_sym_RPAREN, + [53030] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LBRACE, - STATE(1713), 1, - sym_statement_block, - [63283] = 3, + ACTIONS(1572), 1, + anon_sym_RPAREN, + [53037] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_statement_block, - [63293] = 3, + ACTIONS(3780), 1, + anon_sym_RPAREN, + [53044] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_statement_block, - [63303] = 3, + ACTIONS(3782), 1, + anon_sym_RBRACE, + [53051] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LBRACE, - STATE(1777), 1, - sym_statement_block, - [63313] = 3, + ACTIONS(3784), 1, + anon_sym_LPAREN, + [53058] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_statement_block, - [63323] = 3, + ACTIONS(3786), 1, + anon_sym_RBRACK, + [53065] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_LBRACE, - STATE(495), 1, - sym_statement_block, - [63333] = 2, + ACTIONS(3788), 1, + anon_sym_RBRACK, + [53072] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3802), 1, - anon_sym_RPAREN, - [63340] = 2, + ACTIONS(3790), 1, + ts_builtin_sym_end, + [53079] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1680), 1, - sym__statement_terminator, - [63347] = 2, + ACTIONS(3792), 1, + anon_sym_LPAREN, + [53086] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_LBRACE, - [63354] = 2, + ACTIONS(3794), 1, + anon_sym_LPAREN, + [53093] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3796), 1, anon_sym_RBRACK, - [63361] = 2, + [53100] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1694), 1, - anon_sym_RPAREN, - [63368] = 2, + ACTIONS(3798), 1, + anon_sym_EQ, + [53107] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1682), 1, + ACTIONS(3800), 1, + anon_sym_RBRACE, + [53114] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1566), 1, sym__statement_terminator, - [63375] = 2, + [53121] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3802), 1, + anon_sym_RPAREN, + [53128] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3804), 1, - anon_sym_RBRACE, - [63382] = 2, + anon_sym_RPAREN, + [53135] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3806), 1, - anon_sym_RPAREN, - [63389] = 2, + anon_sym_RBRACE, + [53142] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3808), 1, anon_sym_RBRACE, - [63396] = 2, + [53149] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3810), 1, - anon_sym_LPAREN, - [63403] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3746), 1, - anon_sym_RBRACK, - [63410] = 2, + sym__statement_terminator, + [53156] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3812), 1, - anon_sym_RPAREN, - [63417] = 2, + sym__statement_terminator, + [53163] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3814), 1, anon_sym_RPAREN, - [63424] = 2, + [53170] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3816), 1, - anon_sym_RBRACE, - [63431] = 2, + sym__statement_terminator, + [53177] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1666), 1, - sym__statement_terminator, - [63438] = 2, + ACTIONS(2993), 1, + anon_sym_RPAREN, + [53184] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3818), 1, anon_sym_RBRACE, - [63445] = 2, + [53191] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3820), 1, anon_sym_RBRACE, - [63452] = 2, + [53198] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3822), 1, - anon_sym_RBRACE, - [63459] = 2, + anon_sym_RBRACK, + [53205] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3824), 1, - anon_sym_RBRACE, - [63466] = 2, + sym__statement_terminator, + [53212] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3826), 1, - sym_type_identifier, - [63473] = 2, + anon_sym_RBRACE, + [53219] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3828), 1, - anon_sym_RBRACE, - [63480] = 2, + anon_sym_RPAREN, + [53226] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3830), 1, - anon_sym_RBRACK, - [63487] = 2, + anon_sym_RBRACE, + [53233] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3832), 1, anon_sym_RPAREN, - [63494] = 2, + [53240] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3834), 1, - anon_sym_RPAREN, - [63501] = 2, + anon_sym_RBRACK, + [53247] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3836), 1, - anon_sym_LPAREN, - [63508] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1670), 1, - sym__statement_terminator, - [63515] = 2, + anon_sym_RPAREN, + [53254] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3838), 1, anon_sym_RPAREN, - [63522] = 2, + [53261] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3840), 1, - sym_simple_name, - [63529] = 2, + anon_sym_RBRACE, + [53268] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3842), 1, - anon_sym_RPAREN, - [63536] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1686), 1, - anon_sym_RPAREN, - [63543] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1684), 1, - sym__statement_terminator, - [63550] = 2, + sym_simple_name, + [53275] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3844), 1, - ts_builtin_sym_end, - [63557] = 2, + sym__statement_terminator, + [53282] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3846), 1, anon_sym_RBRACE, - [63564] = 2, + [53289] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3848), 1, anon_sym_RBRACE, - [63571] = 2, + [53296] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3850), 1, - anon_sym_RPAREN, - [63578] = 2, + anon_sym_LBRACE, + [53303] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3852), 1, - anon_sym_RBRACE, - [63585] = 2, + anon_sym_RPAREN, + [53310] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1538), 1, + sym__statement_terminator, + [53317] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3854), 1, - aux_sym_foreach_statement_token2, - [63592] = 2, + anon_sym_RBRACK, + [53324] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3856), 1, anon_sym_RPAREN, - [63599] = 2, + [53331] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3858), 1, anon_sym_RPAREN, - [63606] = 2, + [53338] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1548), 1, + sym__statement_terminator, + [53345] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3860), 1, - anon_sym_RBRACE, - [63613] = 2, + sym_simple_name, + [53352] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1696), 1, - anon_sym_RPAREN, - [63620] = 2, + ACTIONS(1554), 1, + sym__statement_terminator, + [53359] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1698), 1, - anon_sym_RPAREN, - [63627] = 2, + ACTIONS(1556), 1, + sym__statement_terminator, + [53366] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3862), 1, - anon_sym_RBRACE, - [63634] = 2, + ACTIONS(1558), 1, + sym__statement_terminator, + [53373] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3864), 1, - anon_sym_RBRACE, - [63641] = 2, + ACTIONS(1560), 1, + sym__statement_terminator, + [53380] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3866), 1, + ACTIONS(3034), 1, anon_sym_RPAREN, - [63648] = 2, + [53387] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3862), 1, anon_sym_RBRACK, - [63655] = 2, + [53394] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_RPAREN, - [63662] = 2, + ACTIONS(3688), 1, + sym__statement_terminator, + [53401] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_RBRACK, - [63669] = 2, + ACTIONS(3864), 1, + anon_sym_EQ, + [53408] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1813), 1, + ACTIONS(3866), 1, anon_sym_RPAREN, - [63676] = 2, + [53415] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1700), 1, - anon_sym_RPAREN, - [63683] = 2, + ACTIONS(3868), 1, + anon_sym_RBRACE, + [53422] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1688), 1, - sym__statement_terminator, - [63690] = 2, + ACTIONS(3870), 1, + anon_sym_RBRACK, + [53429] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_RPAREN, + [53436] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3874), 1, - sym__statement_terminator, - [63697] = 2, + anon_sym_RPAREN, + [53443] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3876), 1, - anon_sym_RPAREN, - [63704] = 2, + anon_sym_RBRACE, + [53450] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3878), 1, + ACTIONS(213), 1, sym__statement_terminator, - [63711] = 2, + [53457] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1662), 1, + ACTIONS(3878), 1, anon_sym_RPAREN, - [63718] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(213), 1, - sym__statement_terminator, - [63725] = 2, + [53464] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3880), 1, - anon_sym_RPAREN, - [63732] = 2, + anon_sym_RBRACE, + [53471] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3882), 1, anon_sym_RBRACE, - [63739] = 2, + [53478] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3884), 1, - sym__statement_terminator, - [63746] = 2, + anon_sym_RBRACK, + [53485] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3886), 1, - anon_sym_RPAREN, - [63753] = 2, + anon_sym_RBRACK, + [53492] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3888), 1, anon_sym_RPAREN, - [63760] = 2, + [53499] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3890), 1, - anon_sym_RBRACE, - [63767] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1686), 1, - sym__statement_terminator, - [63774] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(2415), 1, - sym__statement_terminator, - [63781] = 2, + anon_sym_LPAREN, + [53506] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3892), 1, anon_sym_RBRACE, - [63788] = 2, + [53513] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3894), 1, anon_sym_RBRACE, - [63795] = 2, + [53520] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3896), 1, anon_sym_RPAREN, - [63802] = 2, + [53527] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3898), 1, - anon_sym_RBRACK, - [63809] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3900), 1, - anon_sym_RPAREN, - [63816] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1702), 1, anon_sym_RPAREN, - [63823] = 2, + [53534] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(3900), 1, anon_sym_RPAREN, - [63830] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1690), 1, - sym__statement_terminator, - [63837] = 2, + [53541] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3902), 1, - anon_sym_EQ, - [63844] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1692), 1, - anon_sym_RPAREN, - [63851] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1712), 1, - anon_sym_RPAREN, - [63858] = 2, + anon_sym_RBRACE, + [53548] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3904), 1, - anon_sym_LPAREN, - [63865] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3786), 1, - anon_sym_RBRACK, - [63872] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1694), 1, - sym__statement_terminator, - [63879] = 2, + anon_sym_RBRACE, + [53555] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3906), 1, - anon_sym_RPAREN, - [63886] = 2, + sym__statement_terminator, + [53562] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3908), 1, - anon_sym_RBRACE, - [63893] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1696), 1, - sym__statement_terminator, - [63900] = 2, + anon_sym_RPAREN, + [53569] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3910), 1, - anon_sym_RPAREN, - [63907] = 2, + anon_sym_RBRACE, + [53576] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3912), 1, anon_sym_RPAREN, - [63914] = 2, + [53583] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3914), 1, - anon_sym_RBRACE, - [63921] = 2, + anon_sym_RPAREN, + [53590] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3916), 1, - anon_sym_RBRACK, - [63928] = 2, + anon_sym_RPAREN, + [53597] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3918), 1, anon_sym_RBRACE, - [63935] = 2, + [53604] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3920), 1, - anon_sym_RBRACE, - [63942] = 2, + anon_sym_RPAREN, + [53611] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3922), 1, anon_sym_RBRACE, - [63949] = 2, + [53618] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3924), 1, - anon_sym_LPAREN, - [63956] = 2, + anon_sym_RBRACE, + [53625] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3926), 1, - anon_sym_RBRACK, - [63963] = 2, + anon_sym_RBRACE, + [53632] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3928), 1, anon_sym_RPAREN, - [63970] = 2, + [53639] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3930), 1, - anon_sym_LPAREN, - [63977] = 2, + anon_sym_RBRACK, + [53646] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3932), 1, - anon_sym_RBRACK, - [63984] = 2, + anon_sym_RPAREN, + [53653] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3934), 1, - anon_sym_RBRACE, - [63991] = 2, + anon_sym_RPAREN, + [53660] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3936), 1, anon_sym_RPAREN, - [63998] = 2, + [53667] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3938), 1, - anon_sym_RBRACE, - [64005] = 2, + anon_sym_RPAREN, + [53674] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1698), 1, - sym__statement_terminator, - [64012] = 2, + ACTIONS(1500), 1, + anon_sym_RPAREN, + [53681] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(1502), 1, anon_sym_RPAREN, - [64019] = 2, + [53688] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1692), 1, - sym__statement_terminator, - [64026] = 2, + ACTIONS(3940), 1, + anon_sym_RPAREN, + [53695] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3942), 1, - anon_sym_RBRACK, - [64033] = 2, + anon_sym_RBRACE, + [53702] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3944), 1, anon_sym_RBRACE, - [64040] = 2, + [53709] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3946), 1, - anon_sym_RPAREN, - [64047] = 2, + anon_sym_RBRACK, + [53716] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3948), 1, - anon_sym_RBRACE, - [64054] = 2, + anon_sym_RPAREN, + [53723] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3950), 1, - anon_sym_LBRACE, - [64061] = 2, + anon_sym_RBRACE, + [53730] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3952), 1, - anon_sym_RPAREN, - [64068] = 2, + sym__statement_terminator, + [53737] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3954), 1, anon_sym_RPAREN, - [64075] = 2, + [53744] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3956), 1, - anon_sym_LBRACE, - [64082] = 2, + anon_sym_RPAREN, + [53751] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3958), 1, anon_sym_RBRACE, - [64089] = 2, + [53758] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3960), 1, - anon_sym_RBRACE, - [64096] = 2, + anon_sym_RPAREN, + [53765] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3962), 1, - anon_sym_RPAREN, - [64103] = 2, + anon_sym_RBRACK, + [53772] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3964), 1, anon_sym_RBRACE, - [64110] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1700), 1, - sym__statement_terminator, - [64117] = 2, + [53779] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3966), 1, - anon_sym_RPAREN, - [64124] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1795), 1, - anon_sym_RPAREN, - [64131] = 2, + anon_sym_RBRACE, + [53786] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1408), 1, - sym__statement_terminator, - [64138] = 2, + ACTIONS(3968), 1, + anon_sym_RBRACK, + [53793] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(3970), 1, anon_sym_RPAREN, - [64145] = 2, + [53800] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1702), 1, - sym__statement_terminator, - [64152] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1706), 1, + ACTIONS(1578), 1, anon_sym_RPAREN, - [64159] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_LBRACE, - [64166] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1704), 1, - sym__statement_terminator, - [64173] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3970), 1, - anon_sym_LPAREN, - [64180] = 2, + [53807] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3972), 1, - anon_sym_RBRACE, - [64187] = 2, + anon_sym_LPAREN, + [53814] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3974), 1, - anon_sym_EQ, - [64194] = 2, + anon_sym_RPAREN, + [53821] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3976), 1, - sym__statement_terminator, - [64201] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_RPAREN, - [64208] = 2, + anon_sym_RBRACE, + [53828] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3978), 1, - sym__statement_terminator, - [64215] = 2, + anon_sym_RPAREN, + [53835] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3980), 1, - anon_sym_LPAREN, - [64222] = 2, + anon_sym_RBRACE, + [53842] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3982), 1, anon_sym_RBRACK, - [64229] = 2, + [53849] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3984), 1, - anon_sym_RBRACK, - [64236] = 2, + anon_sym_RPAREN, + [53856] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3986), 1, - anon_sym_LBRACE, - [64243] = 2, + anon_sym_LPAREN, + [53863] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1706), 1, - sym__statement_terminator, - [64250] = 2, + ACTIONS(3712), 1, + anon_sym_RBRACK, + [53870] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3988), 1, - sym__statement_terminator, - [64257] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3990), 1, anon_sym_RPAREN, - [64264] = 2, + [53877] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1710), 1, - anon_sym_RPAREN, - [64271] = 2, + ACTIONS(3990), 1, + anon_sym_RBRACE, + [53884] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3992), 1, - ts_builtin_sym_end, - [64278] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(3094), 1, anon_sym_RPAREN, - [64285] = 2, + [53891] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3994), 1, - anon_sym_LPAREN, - [64292] = 2, + anon_sym_RBRACE, + [53898] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3996), 1, - anon_sym_RBRACK, - [64299] = 2, + anon_sym_RPAREN, + [53905] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(3998), 1, - anon_sym_LBRACE, - [64306] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1795), 1, - sym__statement_terminator, - [64313] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1817), 1, - sym__statement_terminator, - [64320] = 2, + anon_sym_RPAREN, + [53912] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4000), 1, - anon_sym_LPAREN, - [64327] = 2, + anon_sym_RPAREN, + [53919] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4002), 1, - anon_sym_LBRACE, - [64334] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1674), 1, - sym__statement_terminator, - [64341] = 2, + anon_sym_RPAREN, + [53926] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4004), 1, - anon_sym_LPAREN, - [64348] = 2, + anon_sym_RPAREN, + [53933] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4006), 1, - sym__statement_terminator, - [64355] = 2, + anon_sym_RPAREN, + [53940] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4008), 1, anon_sym_RPAREN, - [64362] = 2, + [53947] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4010), 1, - anon_sym_LPAREN, - [64369] = 2, + anon_sym_RPAREN, + [53954] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4012), 1, anon_sym_RPAREN, - [64376] = 2, + [53961] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4014), 1, - anon_sym_LBRACE, - [64383] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1710), 1, sym__statement_terminator, - [64390] = 2, + [53968] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4016), 1, - anon_sym_RPAREN, - [64397] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1809), 1, - sym__statement_terminator, - [64404] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(1779), 1, - sym__statement_terminator, - [64411] = 2, + anon_sym_RBRACE, + [53975] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4018), 1, anon_sym_RPAREN, - [64418] = 2, + [53982] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4020), 1, + ACTIONS(1584), 1, anon_sym_RPAREN, - [64425] = 2, + [53989] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4020), 1, anon_sym_RPAREN, - [64432] = 2, + [53996] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1797), 1, - anon_sym_RPAREN, - [64439] = 2, + ACTIONS(4022), 1, + anon_sym_LBRACE, + [54003] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4024), 1, - anon_sym_RPAREN, - [64446] = 2, + anon_sym_LBRACE, + [54010] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4026), 1, - anon_sym_RBRACE, - [64453] = 2, + anon_sym_LPAREN, + [54017] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_RPAREN, + [54024] = 2, ACTIONS(81), 1, sym_comment, ACTIONS(4028), 1, + sym__statement_terminator, + [54031] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1574), 1, anon_sym_RPAREN, - [64460] = 2, + [54038] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4030), 1, + ACTIONS(1576), 1, anon_sym_RPAREN, - [64467] = 2, + [54045] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4032), 1, - ts_builtin_sym_end, - [64474] = 2, + ACTIONS(4030), 1, + anon_sym_RBRACE, + [54052] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4034), 1, - anon_sym_LPAREN, - [64481] = 2, + ACTIONS(3674), 1, + anon_sym_RBRACK, + [54059] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1779), 1, - anon_sym_RPAREN, - [64488] = 2, + ACTIONS(4032), 1, + anon_sym_RBRACK, + [54066] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_RPAREN, - [64495] = 2, + ACTIONS(1317), 1, + sym__statement_terminator, + [54073] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4038), 1, - anon_sym_RPAREN, - [64502] = 2, + ACTIONS(4034), 1, + anon_sym_RBRACK, + [54080] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4040), 1, + ACTIONS(1580), 1, anon_sym_RPAREN, - [64509] = 2, + [54087] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4042), 1, + ACTIONS(1536), 1, sym__statement_terminator, - [64516] = 2, + [54094] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_RPAREN, - [64523] = 2, + ACTIONS(4036), 1, + anon_sym_RBRACK, + [54101] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4046), 1, - anon_sym_RBRACK, - [64530] = 2, + ACTIONS(4038), 1, + anon_sym_LPAREN, + [54108] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_RPAREN, - [64537] = 2, + ACTIONS(1590), 1, + sym__statement_terminator, + [54115] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4050), 1, + ACTIONS(1588), 1, anon_sym_RPAREN, - [64544] = 2, + [54122] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(1564), 1, anon_sym_RPAREN, - [64551] = 2, + [54129] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4054), 1, + ACTIONS(1400), 1, sym__statement_terminator, - [64558] = 2, + [54136] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4056), 1, + ACTIONS(1570), 1, anon_sym_RPAREN, - [64565] = 2, + [54143] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1797), 1, - sym__statement_terminator, - [64572] = 2, + ACTIONS(1518), 1, + anon_sym_RPAREN, + [54150] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1803), 1, - sym__statement_terminator, - [64579] = 2, + ACTIONS(1582), 1, + anon_sym_RPAREN, + [54157] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4058), 1, - sym__statement_terminator, - [64586] = 2, + ACTIONS(4040), 1, + anon_sym_LBRACE, + [54164] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(1510), 1, sym__statement_terminator, - [64593] = 2, + [54171] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4060), 1, - sym__statement_terminator, - [64600] = 2, + ACTIONS(4042), 1, + anon_sym_LPAREN, + [54178] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - [64607] = 2, + ACTIONS(1524), 1, + anon_sym_RPAREN, + [54185] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1666), 1, + ACTIONS(4044), 1, anon_sym_RPAREN, - [64614] = 2, + [54192] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_RBRACK, - [64621] = 2, + ACTIONS(4046), 1, + anon_sym_RPAREN, + [54199] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1708), 1, - sym__statement_terminator, - [64628] = 2, + ACTIONS(4048), 1, + anon_sym_RPAREN, + [54206] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4066), 1, - sym_simple_name, - [64635] = 2, + ACTIONS(4050), 1, + anon_sym_LBRACE, + [54213] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1512), 1, anon_sym_RPAREN, - [64642] = 2, + [54220] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(4052), 1, anon_sym_RPAREN, - [64649] = 2, + [54227] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4054), 1, sym__statement_terminator, - [64656] = 2, + [54234] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4056), 1, anon_sym_RPAREN, - [64663] = 2, + [54241] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_RBRACK, - [64670] = 2, + ACTIONS(4058), 1, + anon_sym_RPAREN, + [54248] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4076), 1, + ACTIONS(1592), 1, anon_sym_RPAREN, - [64677] = 2, + [54255] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_RBRACE, - [64684] = 2, + ACTIONS(4060), 1, + anon_sym_RPAREN, + [54262] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_LPAREN, - [64691] = 2, + ACTIONS(4062), 1, + ts_builtin_sym_end, + [54269] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(1550), 1, anon_sym_RPAREN, - [64698] = 2, + [54276] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(4064), 1, sym__statement_terminator, - [64705] = 2, + [54283] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4082), 1, - anon_sym_RBRACK, - [64712] = 2, + ACTIONS(4066), 1, + anon_sym_RPAREN, + [54290] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1781), 1, + ACTIONS(4068), 1, anon_sym_RPAREN, - [64719] = 2, + [54297] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4084), 1, - anon_sym_RPAREN, - [64726] = 2, + ACTIONS(4070), 1, + anon_sym_RBRACE, + [54304] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4086), 1, - sym__statement_terminator, - [64733] = 2, + ACTIONS(4072), 1, + anon_sym_LBRACE, + [54311] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1664), 1, - sym__statement_terminator, - [64740] = 2, + ACTIONS(1562), 1, + anon_sym_RPAREN, + [54318] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1805), 1, - sym__statement_terminator, - [64747] = 2, + ACTIONS(4074), 1, + anon_sym_RPAREN, + [54325] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4076), 1, anon_sym_RPAREN, - [64754] = 2, + [54332] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4078), 1, anon_sym_RPAREN, - [64761] = 2, + [54339] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4092), 1, + ACTIONS(4080), 1, anon_sym_LBRACE, - [64768] = 2, + [54346] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4094), 1, + ACTIONS(4082), 1, anon_sym_RPAREN, - [64775] = 2, + [54353] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4096), 1, + ACTIONS(4084), 1, anon_sym_LPAREN, - [64782] = 2, + [54360] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4098), 1, + ACTIONS(4086), 1, anon_sym_RPAREN, - [64789] = 2, + [54367] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_RBRACE, - [64796] = 2, + ACTIONS(4088), 1, + sym__statement_terminator, + [54374] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_RPAREN, - [64803] = 2, + ACTIONS(4090), 1, + sym_type_identifier, + [54381] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4104), 1, + ACTIONS(3224), 1, anon_sym_LBRACE, - [64810] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4106), 1, - anon_sym_RBRACK, - [64817] = 2, + [54388] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4108), 1, - sym__statement_terminator, - [64824] = 2, + ACTIONS(4092), 1, + anon_sym_LPAREN, + [54395] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4110), 1, + ACTIONS(4094), 1, anon_sym_RBRACE, - [64831] = 2, + [54402] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4096), 1, anon_sym_RPAREN, - [64838] = 2, + [54409] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4114), 1, + ACTIONS(1586), 1, anon_sym_RPAREN, - [64845] = 2, + [54416] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4098), 1, anon_sym_RBRACE, - [64852] = 2, + [54423] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4118), 1, - sym__statement_terminator, - [64859] = 2, + ACTIONS(1546), 1, + anon_sym_RPAREN, + [54430] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1668), 1, - anon_sym_RPAREN, - [64866] = 2, + ACTIONS(4100), 1, + anon_sym_LBRACE, + [54437] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_RPAREN, - [64873] = 2, + ACTIONS(4102), 1, + anon_sym_LPAREN, + [54444] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4122), 1, - anon_sym_RPAREN, - [64880] = 2, + ACTIONS(4104), 1, + anon_sym_LBRACE, + [54451] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4106), 1, anon_sym_RBRACK, - [64887] = 2, + [54458] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_RPAREN, - [64894] = 2, + ACTIONS(1332), 1, + sym__statement_terminator, + [54465] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4108), 1, anon_sym_RBRACE, - [64901] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4128), 1, - anon_sym_RPAREN, - [64908] = 2, + [54472] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4130), 1, - anon_sym_RPAREN, - [64915] = 2, + ACTIONS(1520), 1, + sym__statement_terminator, + [54479] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(1504), 1, anon_sym_RPAREN, - [64922] = 2, + [54486] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1522), 1, sym__statement_terminator, - [64929] = 2, + [54493] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(1506), 1, anon_sym_RPAREN, - [64936] = 2, + [54500] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_RBRACE, - [64943] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4138), 1, - anon_sym_RBRACK, - [64950] = 2, + ACTIONS(3036), 1, + anon_sym_RPAREN, + [54507] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3049), 1, + ACTIONS(1560), 1, anon_sym_RPAREN, - [64957] = 2, + [54514] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(1530), 1, sym__statement_terminator, - [64964] = 2, + [54521] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(4110), 1, + anon_sym_LPAREN, + [54528] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(4112), 1, anon_sym_RPAREN, - [64971] = 2, + [54535] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1777), 1, - sym__statement_terminator, - [64978] = 2, + ACTIONS(4114), 1, + anon_sym_RBRACK, + [54542] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1781), 1, - sym__statement_terminator, - [64985] = 2, + ACTIONS(4116), 1, + anon_sym_RPAREN, + [54549] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4144), 1, + ACTIONS(4118), 1, anon_sym_LBRACE, - [64992] = 2, + [54556] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4146), 1, - anon_sym_RBRACE, - [64999] = 2, + ACTIONS(4120), 1, + ts_builtin_sym_end, + [54563] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(3724), 1, sym__statement_terminator, - [65006] = 2, + [54570] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(1534), 1, sym__statement_terminator, - [65013] = 2, + [54577] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1789), 1, - sym__statement_terminator, - [65020] = 2, + ACTIONS(1508), 1, + anon_sym_RPAREN, + [54584] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1708), 1, + ACTIONS(4122), 1, anon_sym_RPAREN, - [65027] = 2, + [54591] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1664), 1, + ACTIONS(1514), 1, anon_sym_RPAREN, - [65034] = 2, + [54598] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(4124), 1, sym__statement_terminator, - [65041] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4150), 1, - anon_sym_RBRACE, - [65048] = 2, + [54605] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1516), 1, anon_sym_RPAREN, - [65055] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4152), 1, - sym_simple_name, - [65062] = 2, + [54612] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4154), 1, - anon_sym_RBRACK, - [65069] = 2, + ACTIONS(4126), 1, + anon_sym_RPAREN, + [54619] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1676), 1, + ACTIONS(4128), 1, anon_sym_RPAREN, - [65076] = 2, + [54626] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - [65083] = 2, + ACTIONS(1540), 1, + sym__statement_terminator, + [54633] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_RBRACE, - [65090] = 2, + ACTIONS(1542), 1, + sym__statement_terminator, + [54640] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(1536), 1, anon_sym_RPAREN, - [65097] = 2, + [54647] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(4130), 1, anon_sym_RPAREN, - [65104] = 2, + [54654] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4132), 1, anon_sym_RPAREN, - [65111] = 2, + [54661] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4164), 1, - anon_sym_LBRACE, - [65118] = 2, + ACTIONS(4134), 1, + anon_sym_RPAREN, + [54668] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_RBRACE, - [65125] = 2, + ACTIONS(1526), 1, + anon_sym_RPAREN, + [54675] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4168), 1, + ACTIONS(4136), 1, anon_sym_RPAREN, - [65132] = 2, + [54682] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4170), 1, - anon_sym_LBRACE, - [65139] = 2, + ACTIONS(4138), 1, + aux_sym_param_block_token1, + [54689] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4172), 1, - anon_sym_RBRACE, - [65146] = 2, + ACTIONS(1552), 1, + sym__statement_terminator, + [54696] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4174), 1, - anon_sym_RPAREN, - [65153] = 2, + ACTIONS(4140), 1, + aux_sym_foreach_statement_token2, + [54703] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(1568), 1, sym__statement_terminator, - [65160] = 2, + [54710] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, - [65167] = 2, + ACTIONS(1572), 1, + sym__statement_terminator, + [54717] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4180), 1, + ACTIONS(1528), 1, anon_sym_RPAREN, - [65174] = 2, + [54724] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_RPAREN, - [65181] = 2, + ACTIONS(4142), 1, + anon_sym_RBRACE, + [54731] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4184), 1, - anon_sym_RPAREN, - [65188] = 2, + ACTIONS(4144), 1, + anon_sym_LPAREN, + [54738] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1680), 1, - anon_sym_RPAREN, - [65195] = 2, + ACTIONS(4146), 1, + sym__statement_terminator, + [54745] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4148), 1, sym__statement_terminator, - [65202] = 2, + [54752] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1500), 1, sym__statement_terminator, - [65209] = 2, + [54759] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_RPAREN, - [65216] = 2, + ACTIONS(1502), 1, + sym__statement_terminator, + [54766] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4190), 1, - anon_sym_RPAREN, - [65223] = 2, + ACTIONS(1578), 1, + sym__statement_terminator, + [54773] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4192), 1, - anon_sym_RPAREN, - [65230] = 2, + ACTIONS(1584), 1, + sym__statement_terminator, + [54780] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4194), 1, + ACTIONS(1532), 1, anon_sym_RPAREN, - [65237] = 2, + [54787] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(1544), 1, anon_sym_RPAREN, - [65244] = 2, + [54794] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4150), 1, sym__statement_terminator, - [65251] = 2, + [54801] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4152), 1, anon_sym_RBRACK, - [65258] = 2, + [54808] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4202), 1, - anon_sym_RBRACK, - [65265] = 2, + ACTIONS(4154), 1, + sym__statement_terminator, + [54815] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4204), 1, - anon_sym_RPAREN, - [65272] = 2, + ACTIONS(4156), 1, + anon_sym_LBRACE, + [54822] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1574), 1, + sym__statement_terminator, + [54829] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(4158), 1, anon_sym_RPAREN, - [65279] = 2, + [54836] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1576), 1, + sym__statement_terminator, + [54843] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(4160), 1, anon_sym_RPAREN, - [65286] = 2, + [54850] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(4162), 1, + anon_sym_LBRACE, + [54857] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(4164), 1, + sym__statement_terminator, + [54864] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(4166), 1, anon_sym_RPAREN, - [65293] = 2, + [54871] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4206), 1, + ACTIONS(1328), 1, sym__statement_terminator, - [65300] = 2, + [54878] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1787), 1, + ACTIONS(4168), 1, anon_sym_RPAREN, - [65307] = 2, + [54885] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4170), 1, anon_sym_RPAREN, - [65314] = 2, + [54892] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4210), 1, + ACTIONS(4172), 1, anon_sym_RBRACE, - [65321] = 2, + [54899] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1682), 1, + ACTIONS(1590), 1, anon_sym_RPAREN, - [65328] = 2, + [54906] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_RPAREN, - [65335] = 2, + ACTIONS(4174), 1, + sym__statement_terminator, + [54913] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(4176), 1, anon_sym_RPAREN, - [65342] = 2, + [54920] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_RBRACE, - [65349] = 2, + ACTIONS(4178), 1, + anon_sym_RPAREN, + [54927] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3792), 1, + ACTIONS(1580), 1, sym__statement_terminator, - [65356] = 2, + [54934] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(3232), 1, anon_sym_LBRACE, - [65363] = 2, + [54941] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4218), 1, + ACTIONS(1400), 1, anon_sym_RPAREN, - [65370] = 2, + [54948] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4180), 1, anon_sym_RPAREN, - [65377] = 2, + [54955] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4222), 1, - anon_sym_RBRACE, - [65384] = 2, + ACTIONS(4182), 1, + anon_sym_RPAREN, + [54962] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4224), 1, - anon_sym_RBRACK, - [65391] = 2, + ACTIONS(4184), 1, + anon_sym_RPAREN, + [54969] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1424), 1, + ACTIONS(1588), 1, sym__statement_terminator, - [65398] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4226), 1, - anon_sym_RBRACK, - [65405] = 2, + [54976] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4228), 1, - anon_sym_LPAREN, - [65412] = 2, + ACTIONS(4186), 1, + anon_sym_RPAREN, + [54983] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1789), 1, - anon_sym_RPAREN, - [65419] = 2, + ACTIONS(4188), 1, + anon_sym_RBRACK, + [54990] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4230), 1, - sym_simple_name, - [65426] = 2, + ACTIONS(1564), 1, + sym__statement_terminator, + [54997] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4232), 1, - sym_simple_name, - [65433] = 2, + ACTIONS(1570), 1, + sym__statement_terminator, + [55004] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4234), 1, - aux_sym_param_block_token1, - [65440] = 2, + ACTIONS(1518), 1, + sym__statement_terminator, + [55011] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4236), 1, - anon_sym_LPAREN, - [65447] = 2, + ACTIONS(1582), 1, + sym__statement_terminator, + [55018] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1801), 1, - anon_sym_RPAREN, - [65454] = 2, + ACTIONS(1524), 1, + sym__statement_terminator, + [55025] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1813), 1, + ACTIONS(1512), 1, sym__statement_terminator, - [65461] = 2, + [55032] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_LPAREN, - [65468] = 2, + ACTIONS(4190), 1, + anon_sym_LBRACE, + [55039] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4240), 1, + ACTIONS(1592), 1, sym__statement_terminator, - [65475] = 2, + [55046] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4242), 1, - anon_sym_LPAREN, - [65482] = 2, + ACTIONS(1550), 1, + sym__statement_terminator, + [55053] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4244), 1, - sym_simple_name, - [65489] = 2, + ACTIONS(1562), 1, + sym__statement_terminator, + [55060] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1662), 1, + ACTIONS(1586), 1, sym__statement_terminator, - [65496] = 2, + [55067] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4246), 1, + ACTIONS(1546), 1, sym__statement_terminator, - [65503] = 2, + [55074] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_RBRACE, - [65510] = 2, + ACTIONS(1504), 1, + sym__statement_terminator, + [55081] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(1506), 1, sym__statement_terminator, - [65517] = 2, + [55088] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(1508), 1, sym__statement_terminator, - [65524] = 2, + [55095] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1523), 1, + ACTIONS(1514), 1, sym__statement_terminator, - [65531] = 2, + [55102] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4254), 1, + ACTIONS(1516), 1, sym__statement_terminator, - [65538] = 2, + [55109] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4256), 1, - sym__statement_terminator, - [65545] = 2, + ACTIONS(4192), 1, + anon_sym_RBRACK, + [55116] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4258), 1, + ACTIONS(4194), 1, sym__statement_terminator, - [65552] = 2, + [55123] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1793), 1, + ACTIONS(1526), 1, sym__statement_terminator, - [65559] = 2, + [55130] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4260), 1, - anon_sym_RBRACE, - [65566] = 2, + ACTIONS(1528), 1, + sym__statement_terminator, + [55137] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1684), 1, - anon_sym_RPAREN, - [65573] = 2, + ACTIONS(1532), 1, + sym__statement_terminator, + [55144] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(1544), 1, sym__statement_terminator, - [65580] = 2, + [55151] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4196), 1, anon_sym_RPAREN, - [65587] = 2, + [55158] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1803), 1, + ACTIONS(4198), 1, anon_sym_RPAREN, - [65594] = 2, + [55165] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_RBRACE, - [65601] = 2, + ACTIONS(3736), 1, + anon_sym_RBRACK, + [55172] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_RPAREN, - [65608] = 2, + ACTIONS(4200), 1, + anon_sym_LPAREN, + [55179] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4266), 1, - anon_sym_LBRACE, - [65615] = 2, + ACTIONS(4202), 1, + anon_sym_RBRACE, + [55186] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4268), 1, - anon_sym_LBRACE, - [65622] = 2, + ACTIONS(4204), 1, + sym_simple_name, + [55193] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4270), 1, - anon_sym_LPAREN, - [65629] = 2, + ACTIONS(4206), 1, + sym_simple_name, + [55200] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_RBRACE, - [65636] = 2, + ACTIONS(4208), 1, + aux_sym_param_block_token1, + [55207] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4274), 1, - anon_sym_RBRACE, - [65643] = 2, + ACTIONS(4210), 1, + anon_sym_LPAREN, + [55214] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4276), 1, - sym__statement_terminator, - [65650] = 2, + ACTIONS(4212), 1, + anon_sym_LBRACE, + [55221] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(1566), 1, anon_sym_RPAREN, - [65657] = 2, + [55228] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4278), 1, - anon_sym_RBRACE, - [65664] = 2, + ACTIONS(4214), 1, + sym__statement_terminator, + [55235] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_RPAREN, - [65671] = 2, + ACTIONS(4216), 1, + anon_sym_LPAREN, + [55242] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4282), 1, - aux_sym_foreach_statement_token2, - [65678] = 2, + ACTIONS(4218), 1, + sym_simple_name, + [55249] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(2371), 1, anon_sym_RPAREN, - [65685] = 2, + [55256] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4284), 1, - anon_sym_RBRACE, - [65692] = 2, + ACTIONS(4220), 1, + sym__statement_terminator, + [55263] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(4222), 1, anon_sym_RPAREN, - [65699] = 2, + [55270] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3081), 1, - anon_sym_RPAREN, - [65706] = 2, + ACTIONS(4224), 1, + sym__statement_terminator, + [55277] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1791), 1, - anon_sym_RPAREN, - [65713] = 2, + ACTIONS(4226), 1, + sym__statement_terminator, + [55284] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(4228), 1, anon_sym_RPAREN, - [65720] = 2, + [55291] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4286), 1, - anon_sym_RPAREN, - [65727] = 2, + ACTIONS(4230), 1, + sym__statement_terminator, + [55298] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_RPAREN, - [65734] = 2, + ACTIONS(4232), 1, + sym__statement_terminator, + [55305] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LPAREN, - [65741] = 2, + ACTIONS(4234), 1, + sym__statement_terminator, + [55312] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3990), 1, - sym__statement_terminator, - [65748] = 2, + ACTIONS(4236), 1, + anon_sym_LBRACE, + [55319] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_RPAREN, - [65755] = 2, + ACTIONS(4238), 1, + anon_sym_LBRACE, + [55326] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1688), 1, - anon_sym_RPAREN, - [65762] = 2, + ACTIONS(4240), 1, + anon_sym_RBRACE, + [55333] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4242), 1, anon_sym_LPAREN, - [65769] = 2, + [55340] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1676), 1, - sym__statement_terminator, - [65776] = 2, + ACTIONS(4244), 1, + anon_sym_RBRACE, + [55347] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4246), 1, sym_simple_name, - [65783] = 2, + [55354] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4248), 1, sym_simple_name, - [65790] = 2, + [55361] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4250), 1, aux_sym_param_block_token1, - [65797] = 2, + [55368] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_RPAREN, - [65804] = 2, + ACTIONS(4252), 1, + sym__statement_terminator, + [55375] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4302), 1, - anon_sym_RBRACE, - [65811] = 2, + ACTIONS(1520), 1, + anon_sym_RPAREN, + [55382] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4254), 1, sym__statement_terminator, - [65818] = 2, + [55389] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4306), 1, + ACTIONS(4256), 1, anon_sym_LPAREN, - [65825] = 2, + [55396] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4308), 1, + ACTIONS(4258), 1, sym_simple_name, - [65832] = 2, + [55403] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_RPAREN, - [65839] = 2, + ACTIONS(4260), 1, + anon_sym_RBRACE, + [55410] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4262), 1, sym__statement_terminator, - [65846] = 2, + [55417] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4312), 1, + ACTIONS(4264), 1, anon_sym_RBRACE, - [65853] = 2, + [55424] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4314), 1, + ACTIONS(4266), 1, sym__statement_terminator, - [65860] = 2, + [55431] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4268), 1, sym__statement_terminator, - [65867] = 2, + [55438] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_RPAREN, - [65874] = 2, + ACTIONS(4270), 1, + anon_sym_RBRACK, + [55445] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4320), 1, + ACTIONS(4272), 1, sym__statement_terminator, - [65881] = 2, + [55452] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4322), 1, - sym__statement_terminator, - [65888] = 2, + ACTIONS(1558), 1, + anon_sym_RPAREN, + [55459] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4324), 1, + ACTIONS(4274), 1, sym__statement_terminator, - [65895] = 2, + [55466] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4276), 1, anon_sym_LPAREN, - [65902] = 2, + [55473] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4328), 1, - aux_sym_param_block_token1, - [65909] = 2, + ACTIONS(1522), 1, + anon_sym_RPAREN, + [55480] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4278), 1, sym_simple_name, - [65916] = 2, + [55487] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4280), 1, sym_simple_name, - [65923] = 2, + [55494] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4334), 1, - sym__statement_terminator, - [65930] = 2, + ACTIONS(2983), 1, + anon_sym_RPAREN, + [55501] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1435), 1, - sym__statement_terminator, - [65937] = 2, + ACTIONS(4282), 1, + anon_sym_RBRACK, + [55508] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4284), 1, sym__statement_terminator, - [65944] = 2, + [55515] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4286), 1, anon_sym_LPAREN, - [65951] = 2, + [55522] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4340), 1, + ACTIONS(4288), 1, sym_simple_name, - [65958] = 2, + [55529] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_RBRACE, - [65965] = 2, + ACTIONS(4290), 1, + anon_sym_LPAREN, + [55536] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4292), 1, sym__statement_terminator, - [65972] = 2, + [55543] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1785), 1, - sym__statement_terminator, - [65979] = 2, + ACTIONS(4014), 1, + anon_sym_RPAREN, + [55550] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4294), 1, sym__statement_terminator, - [65986] = 2, + [55557] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4296), 1, sym__statement_terminator, - [65993] = 2, + [55564] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1787), 1, - sym__statement_terminator, - [66000] = 2, + ACTIONS(4298), 1, + anon_sym_LBRACE, + [55571] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4350), 1, + ACTIONS(4300), 1, sym__statement_terminator, - [66007] = 2, + [55578] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4302), 1, sym__statement_terminator, - [66014] = 2, + [55585] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4304), 1, sym__statement_terminator, - [66021] = 2, + [55592] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4306), 1, anon_sym_LPAREN, - [66028] = 2, + [55599] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4308), 1, anon_sym_LPAREN, - [66035] = 2, + [55606] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3742), 1, - sym__statement_terminator, - [66042] = 2, + ACTIONS(2987), 1, + anon_sym_RPAREN, + [55613] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4360), 1, + ACTIONS(4310), 1, aux_sym_foreach_statement_token2, - [66049] = 2, + [55620] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4362), 1, + ACTIONS(4312), 1, aux_sym_foreach_statement_token2, - [66056] = 2, + [55627] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(4314), 1, anon_sym_LPAREN, - [66063] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4366), 1, - anon_sym_RBRACK, - [66070] = 2, + [55634] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4316), 1, anon_sym_LPAREN, - [66077] = 2, + [55641] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(4318), 1, anon_sym_LPAREN, - [66084] = 2, + [55648] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4372), 1, - anon_sym_RBRACK, - [66091] = 2, + ACTIONS(4320), 1, + anon_sym_RBRACE, + [55655] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4322), 1, aux_sym_foreach_statement_token2, - [66098] = 2, + [55662] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4376), 1, + ACTIONS(4324), 1, aux_sym_foreach_statement_token2, - [66105] = 2, + [55669] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(4326), 1, anon_sym_LPAREN, - [66112] = 2, + [55676] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4380), 1, + ACTIONS(4328), 1, anon_sym_LPAREN, - [66119] = 2, + [55683] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4330), 1, anon_sym_LPAREN, - [66126] = 2, + [55690] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4384), 1, - sym_simple_name, - [66133] = 2, + ACTIONS(1510), 1, + anon_sym_RPAREN, + [55697] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(4332), 1, aux_sym_foreach_statement_token2, - [66140] = 2, + [55704] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4334), 1, aux_sym_foreach_statement_token2, - [66147] = 2, + [55711] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - [66154] = 2, + [55718] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_RBRACK, - [66161] = 2, + ACTIONS(1530), 1, + anon_sym_RPAREN, + [55725] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1807), 1, - sym__statement_terminator, - [66168] = 2, + ACTIONS(4338), 1, + anon_sym_LPAREN, + [55732] = 2, + ACTIONS(81), 1, + sym_comment, + ACTIONS(1538), 1, + anon_sym_RPAREN, + [55739] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4340), 1, anon_sym_RBRACK, - [66175] = 2, + [55746] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1674), 1, + ACTIONS(1548), 1, anon_sym_RPAREN, - [66182] = 2, + [55753] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4342), 1, anon_sym_RBRACE, - [66189] = 2, + [55760] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(4344), 1, anon_sym_RBRACE, - [66196] = 2, + [55767] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4400), 1, - anon_sym_LBRACE, - [66203] = 2, - ACTIONS(81), 1, - sym_comment, - ACTIONS(4402), 1, - anon_sym_RBRACK, - [66210] = 2, + ACTIONS(1554), 1, + anon_sym_RPAREN, + [55774] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1556), 1, anon_sym_RPAREN, - [66217] = 2, + [55781] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1678), 1, - sym__statement_terminator, - [66224] = 2, + ACTIONS(4346), 1, + anon_sym_LBRACE, + [55788] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4348), 1, anon_sym_LPAREN, - [66231] = 2, + [55795] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(1811), 1, - sym__statement_terminator, - [66238] = 2, + ACTIONS(4350), 1, + anon_sym_RBRACE, + [55802] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4352), 1, anon_sym_LPAREN, - [66245] = 2, + [55809] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_LBRACE, - [66252] = 2, + ACTIONS(4354), 1, + anon_sym_RBRACE, + [55816] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(4410), 1, + ACTIONS(4356), 1, anon_sym_LPAREN, - [66259] = 2, + [55823] = 2, ACTIONS(81), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(379)] = 0, - [SMALL_STATE(380)] = 69, - [SMALL_STATE(381)] = 142, - [SMALL_STATE(382)] = 211, - [SMALL_STATE(383)] = 284, - [SMALL_STATE(384)] = 357, - [SMALL_STATE(385)] = 430, - [SMALL_STATE(386)] = 499, - [SMALL_STATE(387)] = 572, - [SMALL_STATE(388)] = 641, - [SMALL_STATE(389)] = 774, - [SMALL_STATE(390)] = 847, - [SMALL_STATE(391)] = 922, - [SMALL_STATE(392)] = 991, - [SMALL_STATE(393)] = 1062, - [SMALL_STATE(394)] = 1135, - [SMALL_STATE(395)] = 1210, - [SMALL_STATE(396)] = 1283, - [SMALL_STATE(397)] = 1354, - [SMALL_STATE(398)] = 1423, - [SMALL_STATE(399)] = 1492, - [SMALL_STATE(400)] = 1564, - [SMALL_STATE(401)] = 1694, - [SMALL_STATE(402)] = 1764, - [SMALL_STATE(403)] = 1834, - [SMALL_STATE(404)] = 1964, - [SMALL_STATE(405)] = 2094, - [SMALL_STATE(406)] = 2164, - [SMALL_STATE(407)] = 2294, - [SMALL_STATE(408)] = 2364, - [SMALL_STATE(409)] = 2434, - [SMALL_STATE(410)] = 2504, - [SMALL_STATE(411)] = 2574, - [SMALL_STATE(412)] = 2646, - [SMALL_STATE(413)] = 2720, - [SMALL_STATE(414)] = 2794, - [SMALL_STATE(415)] = 2924, - [SMALL_STATE(416)] = 2998, - [SMALL_STATE(417)] = 3068, - [SMALL_STATE(418)] = 3138, - [SMALL_STATE(419)] = 3212, - [SMALL_STATE(420)] = 3279, - [SMALL_STATE(421)] = 3346, - [SMALL_STATE(422)] = 3473, - [SMALL_STATE(423)] = 3598, - [SMALL_STATE(424)] = 3665, - [SMALL_STATE(425)] = 3790, - [SMALL_STATE(426)] = 3857, - [SMALL_STATE(427)] = 3924, - [SMALL_STATE(428)] = 3991, - [SMALL_STATE(429)] = 4058, - [SMALL_STATE(430)] = 4125, - [SMALL_STATE(431)] = 4250, - [SMALL_STATE(432)] = 4317, - [SMALL_STATE(433)] = 4384, - [SMALL_STATE(434)] = 4451, - [SMALL_STATE(435)] = 4518, - [SMALL_STATE(436)] = 4585, - [SMALL_STATE(437)] = 4712, - [SMALL_STATE(438)] = 4779, - [SMALL_STATE(439)] = 4846, - [SMALL_STATE(440)] = 4973, - [SMALL_STATE(441)] = 5040, - [SMALL_STATE(442)] = 5107, - [SMALL_STATE(443)] = 5234, - [SMALL_STATE(444)] = 5301, - [SMALL_STATE(445)] = 5428, - [SMALL_STATE(446)] = 5495, - [SMALL_STATE(447)] = 5562, - [SMALL_STATE(448)] = 5629, - [SMALL_STATE(449)] = 5696, - [SMALL_STATE(450)] = 5763, - [SMALL_STATE(451)] = 5830, - [SMALL_STATE(452)] = 5897, - [SMALL_STATE(453)] = 5964, - [SMALL_STATE(454)] = 6031, - [SMALL_STATE(455)] = 6098, - [SMALL_STATE(456)] = 6165, - [SMALL_STATE(457)] = 6290, - [SMALL_STATE(458)] = 6357, - [SMALL_STATE(459)] = 6424, - [SMALL_STATE(460)] = 6551, - [SMALL_STATE(461)] = 6618, - [SMALL_STATE(462)] = 6685, - [SMALL_STATE(463)] = 6756, - [SMALL_STATE(464)] = 6881, - [SMALL_STATE(465)] = 6948, - [SMALL_STATE(466)] = 7073, - [SMALL_STATE(467)] = 7140, - [SMALL_STATE(468)] = 7207, - [SMALL_STATE(469)] = 7274, - [SMALL_STATE(470)] = 7341, - [SMALL_STATE(471)] = 7408, - [SMALL_STATE(472)] = 7533, - [SMALL_STATE(473)] = 7600, - [SMALL_STATE(474)] = 7667, - [SMALL_STATE(475)] = 7738, - [SMALL_STATE(476)] = 7805, - [SMALL_STATE(477)] = 7872, - [SMALL_STATE(478)] = 7939, - [SMALL_STATE(479)] = 8064, - [SMALL_STATE(480)] = 8131, - [SMALL_STATE(481)] = 8198, - [SMALL_STATE(482)] = 8265, - [SMALL_STATE(483)] = 8332, - [SMALL_STATE(484)] = 8399, - [SMALL_STATE(485)] = 8467, - [SMALL_STATE(486)] = 8535, - [SMALL_STATE(487)] = 8603, - [SMALL_STATE(488)] = 8671, - [SMALL_STATE(489)] = 8739, - [SMALL_STATE(490)] = 8807, - [SMALL_STATE(491)] = 8875, - [SMALL_STATE(492)] = 8943, - [SMALL_STATE(493)] = 9011, - [SMALL_STATE(494)] = 9077, - [SMALL_STATE(495)] = 9145, - [SMALL_STATE(496)] = 9213, - [SMALL_STATE(497)] = 9281, - [SMALL_STATE(498)] = 9349, - [SMALL_STATE(499)] = 9473, - [SMALL_STATE(500)] = 9541, - [SMALL_STATE(501)] = 9609, - [SMALL_STATE(502)] = 9677, - [SMALL_STATE(503)] = 9745, - [SMALL_STATE(504)] = 9813, - [SMALL_STATE(505)] = 9881, - [SMALL_STATE(506)] = 9949, - [SMALL_STATE(507)] = 10073, - [SMALL_STATE(508)] = 10141, - [SMALL_STATE(509)] = 10209, - [SMALL_STATE(510)] = 10277, - [SMALL_STATE(511)] = 10345, - [SMALL_STATE(512)] = 10413, - [SMALL_STATE(513)] = 10481, - [SMALL_STATE(514)] = 10549, - [SMALL_STATE(515)] = 10617, - [SMALL_STATE(516)] = 10741, - [SMALL_STATE(517)] = 10813, - [SMALL_STATE(518)] = 10935, - [SMALL_STATE(519)] = 11003, - [SMALL_STATE(520)] = 11127, - [SMALL_STATE(521)] = 11195, - [SMALL_STATE(522)] = 11263, - [SMALL_STATE(523)] = 11387, - [SMALL_STATE(524)] = 11455, - [SMALL_STATE(525)] = 11523, - [SMALL_STATE(526)] = 11591, - [SMALL_STATE(527)] = 11663, - [SMALL_STATE(528)] = 11731, - [SMALL_STATE(529)] = 11799, - [SMALL_STATE(530)] = 11867, - [SMALL_STATE(531)] = 11935, - [SMALL_STATE(532)] = 12003, - [SMALL_STATE(533)] = 12071, - [SMALL_STATE(534)] = 12193, - [SMALL_STATE(535)] = 12261, - [SMALL_STATE(536)] = 12329, - [SMALL_STATE(537)] = 12397, - [SMALL_STATE(538)] = 12465, - [SMALL_STATE(539)] = 12533, - [SMALL_STATE(540)] = 12601, - [SMALL_STATE(541)] = 12669, - [SMALL_STATE(542)] = 12737, - [SMALL_STATE(543)] = 12805, - [SMALL_STATE(544)] = 12873, - [SMALL_STATE(545)] = 12938, - [SMALL_STATE(546)] = 13003, - [SMALL_STATE(547)] = 13124, - [SMALL_STATE(548)] = 13195, - [SMALL_STATE(549)] = 13266, - [SMALL_STATE(550)] = 13331, - [SMALL_STATE(551)] = 13396, - [SMALL_STATE(552)] = 13467, - [SMALL_STATE(553)] = 13588, - [SMALL_STATE(554)] = 13709, - [SMALL_STATE(555)] = 13826, - [SMALL_STATE(556)] = 13943, - [SMALL_STATE(557)] = 14014, - [SMALL_STATE(558)] = 14131, - [SMALL_STATE(559)] = 14202, - [SMALL_STATE(560)] = 14319, - [SMALL_STATE(561)] = 14440, - [SMALL_STATE(562)] = 14561, - [SMALL_STATE(563)] = 14632, - [SMALL_STATE(564)] = 14753, - [SMALL_STATE(565)] = 14871, - [SMALL_STATE(566)] = 14989, - [SMALL_STATE(567)] = 15107, - [SMALL_STATE(568)] = 15177, - [SMALL_STATE(569)] = 15247, - [SMALL_STATE(570)] = 15317, - [SMALL_STATE(571)] = 15387, - [SMALL_STATE(572)] = 15505, - [SMALL_STATE(573)] = 15623, - [SMALL_STATE(574)] = 15741, - [SMALL_STATE(575)] = 15859, - [SMALL_STATE(576)] = 15928, - [SMALL_STATE(577)] = 16043, - [SMALL_STATE(578)] = 16158, - [SMALL_STATE(579)] = 16227, - [SMALL_STATE(580)] = 16342, - [SMALL_STATE(581)] = 16457, - [SMALL_STATE(582)] = 16572, - [SMALL_STATE(583)] = 16687, - [SMALL_STATE(584)] = 16799, - [SMALL_STATE(585)] = 16911, - [SMALL_STATE(586)] = 17023, - [SMALL_STATE(587)] = 17091, - [SMALL_STATE(588)] = 17203, - [SMALL_STATE(589)] = 17315, - [SMALL_STATE(590)] = 17383, - [SMALL_STATE(591)] = 17495, - [SMALL_STATE(592)] = 17604, - [SMALL_STATE(593)] = 17713, - [SMALL_STATE(594)] = 17822, - [SMALL_STATE(595)] = 17931, - [SMALL_STATE(596)] = 18040, - [SMALL_STATE(597)] = 18149, - [SMALL_STATE(598)] = 18258, - [SMALL_STATE(599)] = 18367, - [SMALL_STATE(600)] = 18476, - [SMALL_STATE(601)] = 18585, - [SMALL_STATE(602)] = 18694, - [SMALL_STATE(603)] = 18803, - [SMALL_STATE(604)] = 18912, - [SMALL_STATE(605)] = 19021, - [SMALL_STATE(606)] = 19130, - [SMALL_STATE(607)] = 19239, - [SMALL_STATE(608)] = 19348, - [SMALL_STATE(609)] = 19457, - [SMALL_STATE(610)] = 19566, - [SMALL_STATE(611)] = 19675, - [SMALL_STATE(612)] = 19784, - [SMALL_STATE(613)] = 19893, - [SMALL_STATE(614)] = 20002, - [SMALL_STATE(615)] = 20111, - [SMALL_STATE(616)] = 20220, - [SMALL_STATE(617)] = 20329, - [SMALL_STATE(618)] = 20438, - [SMALL_STATE(619)] = 20547, - [SMALL_STATE(620)] = 20656, - [SMALL_STATE(621)] = 20765, - [SMALL_STATE(622)] = 20874, - [SMALL_STATE(623)] = 20983, - [SMALL_STATE(624)] = 21092, - [SMALL_STATE(625)] = 21201, - [SMALL_STATE(626)] = 21310, - [SMALL_STATE(627)] = 21419, - [SMALL_STATE(628)] = 21528, - [SMALL_STATE(629)] = 21637, - [SMALL_STATE(630)] = 21746, - [SMALL_STATE(631)] = 21855, - [SMALL_STATE(632)] = 21964, - [SMALL_STATE(633)] = 22073, - [SMALL_STATE(634)] = 22182, - [SMALL_STATE(635)] = 22291, - [SMALL_STATE(636)] = 22400, - [SMALL_STATE(637)] = 22509, - [SMALL_STATE(638)] = 22618, - [SMALL_STATE(639)] = 22727, - [SMALL_STATE(640)] = 22836, - [SMALL_STATE(641)] = 22945, - [SMALL_STATE(642)] = 23054, - [SMALL_STATE(643)] = 23163, - [SMALL_STATE(644)] = 23272, - [SMALL_STATE(645)] = 23381, - [SMALL_STATE(646)] = 23490, - [SMALL_STATE(647)] = 23599, - [SMALL_STATE(648)] = 23708, - [SMALL_STATE(649)] = 23817, - [SMALL_STATE(650)] = 23926, - [SMALL_STATE(651)] = 24035, - [SMALL_STATE(652)] = 24144, - [SMALL_STATE(653)] = 24253, - [SMALL_STATE(654)] = 24362, - [SMALL_STATE(655)] = 24471, - [SMALL_STATE(656)] = 24580, - [SMALL_STATE(657)] = 24689, - [SMALL_STATE(658)] = 24798, - [SMALL_STATE(659)] = 24907, - [SMALL_STATE(660)] = 25016, - [SMALL_STATE(661)] = 25125, - [SMALL_STATE(662)] = 25234, - [SMALL_STATE(663)] = 25343, - [SMALL_STATE(664)] = 25452, - [SMALL_STATE(665)] = 25561, - [SMALL_STATE(666)] = 25670, - [SMALL_STATE(667)] = 25779, - [SMALL_STATE(668)] = 25888, - [SMALL_STATE(669)] = 25997, - [SMALL_STATE(670)] = 26106, - [SMALL_STATE(671)] = 26215, - [SMALL_STATE(672)] = 26324, - [SMALL_STATE(673)] = 26433, - [SMALL_STATE(674)] = 26542, - [SMALL_STATE(675)] = 26651, - [SMALL_STATE(676)] = 26760, - [SMALL_STATE(677)] = 26869, - [SMALL_STATE(678)] = 26978, - [SMALL_STATE(679)] = 27087, - [SMALL_STATE(680)] = 27196, - [SMALL_STATE(681)] = 27305, - [SMALL_STATE(682)] = 27414, - [SMALL_STATE(683)] = 27523, - [SMALL_STATE(684)] = 27632, - [SMALL_STATE(685)] = 27741, - [SMALL_STATE(686)] = 27850, - [SMALL_STATE(687)] = 27959, - [SMALL_STATE(688)] = 28068, - [SMALL_STATE(689)] = 28177, - [SMALL_STATE(690)] = 28286, - [SMALL_STATE(691)] = 28387, - [SMALL_STATE(692)] = 28488, - [SMALL_STATE(693)] = 28589, - [SMALL_STATE(694)] = 28690, - [SMALL_STATE(695)] = 28791, - [SMALL_STATE(696)] = 28892, - [SMALL_STATE(697)] = 28993, - [SMALL_STATE(698)] = 29094, - [SMALL_STATE(699)] = 29195, - [SMALL_STATE(700)] = 29296, - [SMALL_STATE(701)] = 29397, - [SMALL_STATE(702)] = 29498, - [SMALL_STATE(703)] = 29599, - [SMALL_STATE(704)] = 29700, - [SMALL_STATE(705)] = 29801, - [SMALL_STATE(706)] = 29902, - [SMALL_STATE(707)] = 30003, - [SMALL_STATE(708)] = 30104, - [SMALL_STATE(709)] = 30205, - [SMALL_STATE(710)] = 30306, - [SMALL_STATE(711)] = 30407, - [SMALL_STATE(712)] = 30508, - [SMALL_STATE(713)] = 30609, - [SMALL_STATE(714)] = 30710, - [SMALL_STATE(715)] = 30766, - [SMALL_STATE(716)] = 30826, - [SMALL_STATE(717)] = 30886, - [SMALL_STATE(718)] = 30942, - [SMALL_STATE(719)] = 31040, - [SMALL_STATE(720)] = 31095, - [SMALL_STATE(721)] = 31154, - [SMALL_STATE(722)] = 31209, - [SMALL_STATE(723)] = 31268, - [SMALL_STATE(724)] = 31363, - [SMALL_STATE(725)] = 31455, - [SMALL_STATE(726)] = 31547, - [SMALL_STATE(727)] = 31637, - [SMALL_STATE(728)] = 31727, - [SMALL_STATE(729)] = 31819, - [SMALL_STATE(730)] = 31911, - [SMALL_STATE(731)] = 32003, - [SMALL_STATE(732)] = 32093, - [SMALL_STATE(733)] = 32185, - [SMALL_STATE(734)] = 32277, - [SMALL_STATE(735)] = 32369, - [SMALL_STATE(736)] = 32461, - [SMALL_STATE(737)] = 32551, - [SMALL_STATE(738)] = 32643, - [SMALL_STATE(739)] = 32730, - [SMALL_STATE(740)] = 32783, - [SMALL_STATE(741)] = 32870, - [SMALL_STATE(742)] = 32928, - [SMALL_STATE(743)] = 32986, - [SMALL_STATE(744)] = 33044, - [SMALL_STATE(745)] = 33102, - [SMALL_STATE(746)] = 33157, - [SMALL_STATE(747)] = 33230, - [SMALL_STATE(748)] = 33283, - [SMALL_STATE(749)] = 33358, - [SMALL_STATE(750)] = 33415, - [SMALL_STATE(751)] = 33468, - [SMALL_STATE(752)] = 33525, - [SMALL_STATE(753)] = 33598, - [SMALL_STATE(754)] = 33655, - [SMALL_STATE(755)] = 33712, - [SMALL_STATE(756)] = 33767, - [SMALL_STATE(757)] = 33842, - [SMALL_STATE(758)] = 33892, - [SMALL_STATE(759)] = 33952, - [SMALL_STATE(760)] = 34002, - [SMALL_STATE(761)] = 34076, - [SMALL_STATE(762)] = 34126, - [SMALL_STATE(763)] = 34176, - [SMALL_STATE(764)] = 34226, - [SMALL_STATE(765)] = 34276, - [SMALL_STATE(766)] = 34326, - [SMALL_STATE(767)] = 34376, - [SMALL_STATE(768)] = 34426, - [SMALL_STATE(769)] = 34476, - [SMALL_STATE(770)] = 34526, - [SMALL_STATE(771)] = 34600, - [SMALL_STATE(772)] = 34650, - [SMALL_STATE(773)] = 34704, - [SMALL_STATE(774)] = 34754, - [SMALL_STATE(775)] = 34804, - [SMALL_STATE(776)] = 34864, - [SMALL_STATE(777)] = 34936, - [SMALL_STATE(778)] = 34986, - [SMALL_STATE(779)] = 35036, - [SMALL_STATE(780)] = 35108, - [SMALL_STATE(781)] = 35158, - [SMALL_STATE(782)] = 35208, - [SMALL_STATE(783)] = 35258, - [SMALL_STATE(784)] = 35308, - [SMALL_STATE(785)] = 35358, - [SMALL_STATE(786)] = 35430, - [SMALL_STATE(787)] = 35480, - [SMALL_STATE(788)] = 35550, - [SMALL_STATE(789)] = 35600, - [SMALL_STATE(790)] = 35672, - [SMALL_STATE(791)] = 35722, - [SMALL_STATE(792)] = 35772, - [SMALL_STATE(793)] = 35822, - [SMALL_STATE(794)] = 35872, - [SMALL_STATE(795)] = 35924, - [SMALL_STATE(796)] = 35974, - [SMALL_STATE(797)] = 36024, - [SMALL_STATE(798)] = 36074, - [SMALL_STATE(799)] = 36124, - [SMALL_STATE(800)] = 36174, - [SMALL_STATE(801)] = 36244, - [SMALL_STATE(802)] = 36294, - [SMALL_STATE(803)] = 36344, - [SMALL_STATE(804)] = 36394, - [SMALL_STATE(805)] = 36444, - [SMALL_STATE(806)] = 36496, - [SMALL_STATE(807)] = 36546, - [SMALL_STATE(808)] = 36596, - [SMALL_STATE(809)] = 36646, - [SMALL_STATE(810)] = 36696, - [SMALL_STATE(811)] = 36746, - [SMALL_STATE(812)] = 36826, - [SMALL_STATE(813)] = 36876, - [SMALL_STATE(814)] = 36926, - [SMALL_STATE(815)] = 36976, - [SMALL_STATE(816)] = 37026, - [SMALL_STATE(817)] = 37076, - [SMALL_STATE(818)] = 37126, - [SMALL_STATE(819)] = 37176, - [SMALL_STATE(820)] = 37226, - [SMALL_STATE(821)] = 37276, - [SMALL_STATE(822)] = 37326, - [SMALL_STATE(823)] = 37376, - [SMALL_STATE(824)] = 37426, - [SMALL_STATE(825)] = 37476, - [SMALL_STATE(826)] = 37526, - [SMALL_STATE(827)] = 37576, - [SMALL_STATE(828)] = 37626, - [SMALL_STATE(829)] = 37676, - [SMALL_STATE(830)] = 37726, - [SMALL_STATE(831)] = 37776, - [SMALL_STATE(832)] = 37826, - [SMALL_STATE(833)] = 37876, - [SMALL_STATE(834)] = 37930, - [SMALL_STATE(835)] = 37980, - [SMALL_STATE(836)] = 38030, - [SMALL_STATE(837)] = 38080, - [SMALL_STATE(838)] = 38130, - [SMALL_STATE(839)] = 38180, - [SMALL_STATE(840)] = 38230, - [SMALL_STATE(841)] = 38279, - [SMALL_STATE(842)] = 38350, - [SMALL_STATE(843)] = 38419, - [SMALL_STATE(844)] = 38488, - [SMALL_STATE(845)] = 38537, - [SMALL_STATE(846)] = 38586, - [SMALL_STATE(847)] = 38645, - [SMALL_STATE(848)] = 38694, - [SMALL_STATE(849)] = 38743, - [SMALL_STATE(850)] = 38792, - [SMALL_STATE(851)] = 38841, - [SMALL_STATE(852)] = 38890, - [SMALL_STATE(853)] = 38939, - [SMALL_STATE(854)] = 38988, - [SMALL_STATE(855)] = 39037, - [SMALL_STATE(856)] = 39086, - [SMALL_STATE(857)] = 39135, - [SMALL_STATE(858)] = 39184, - [SMALL_STATE(859)] = 39233, - [SMALL_STATE(860)] = 39282, - [SMALL_STATE(861)] = 39331, - [SMALL_STATE(862)] = 39380, - [SMALL_STATE(863)] = 39429, - [SMALL_STATE(864)] = 39478, - [SMALL_STATE(865)] = 39527, - [SMALL_STATE(866)] = 39576, - [SMALL_STATE(867)] = 39625, - [SMALL_STATE(868)] = 39684, - [SMALL_STATE(869)] = 39733, - [SMALL_STATE(870)] = 39782, - [SMALL_STATE(871)] = 39831, - [SMALL_STATE(872)] = 39880, - [SMALL_STATE(873)] = 39929, - [SMALL_STATE(874)] = 39978, - [SMALL_STATE(875)] = 40027, - [SMALL_STATE(876)] = 40076, - [SMALL_STATE(877)] = 40125, - [SMALL_STATE(878)] = 40174, - [SMALL_STATE(879)] = 40223, - [SMALL_STATE(880)] = 40272, - [SMALL_STATE(881)] = 40321, - [SMALL_STATE(882)] = 40370, - [SMALL_STATE(883)] = 40419, - [SMALL_STATE(884)] = 40468, - [SMALL_STATE(885)] = 40517, - [SMALL_STATE(886)] = 40566, - [SMALL_STATE(887)] = 40615, - [SMALL_STATE(888)] = 40664, - [SMALL_STATE(889)] = 40713, - [SMALL_STATE(890)] = 40762, - [SMALL_STATE(891)] = 40811, - [SMALL_STATE(892)] = 40860, - [SMALL_STATE(893)] = 40909, - [SMALL_STATE(894)] = 40958, - [SMALL_STATE(895)] = 41007, - [SMALL_STATE(896)] = 41056, - [SMALL_STATE(897)] = 41105, - [SMALL_STATE(898)] = 41154, - [SMALL_STATE(899)] = 41203, - [SMALL_STATE(900)] = 41252, - [SMALL_STATE(901)] = 41301, - [SMALL_STATE(902)] = 41350, - [SMALL_STATE(903)] = 41399, - [SMALL_STATE(904)] = 41448, - [SMALL_STATE(905)] = 41497, - [SMALL_STATE(906)] = 41546, - [SMALL_STATE(907)] = 41595, - [SMALL_STATE(908)] = 41644, - [SMALL_STATE(909)] = 41693, - [SMALL_STATE(910)] = 41742, - [SMALL_STATE(911)] = 41791, - [SMALL_STATE(912)] = 41840, - [SMALL_STATE(913)] = 41907, - [SMALL_STATE(914)] = 41958, - [SMALL_STATE(915)] = 42009, - [SMALL_STATE(916)] = 42060, - [SMALL_STATE(917)] = 42127, - [SMALL_STATE(918)] = 42178, - [SMALL_STATE(919)] = 42237, - [SMALL_STATE(920)] = 42296, - [SMALL_STATE(921)] = 42367, - [SMALL_STATE(922)] = 42416, - [SMALL_STATE(923)] = 42464, - [SMALL_STATE(924)] = 42516, - [SMALL_STATE(925)] = 42566, - [SMALL_STATE(926)] = 42624, - [SMALL_STATE(927)] = 42682, - [SMALL_STATE(928)] = 42730, - [SMALL_STATE(929)] = 42788, - [SMALL_STATE(930)] = 42846, - [SMALL_STATE(931)] = 42904, - [SMALL_STATE(932)] = 42962, - [SMALL_STATE(933)] = 43009, - [SMALL_STATE(934)] = 43066, - [SMALL_STATE(935)] = 43121, - [SMALL_STATE(936)] = 43168, - [SMALL_STATE(937)] = 43215, - [SMALL_STATE(938)] = 43262, - [SMALL_STATE(939)] = 43309, - [SMALL_STATE(940)] = 43356, - [SMALL_STATE(941)] = 43403, - [SMALL_STATE(942)] = 43450, - [SMALL_STATE(943)] = 43497, - [SMALL_STATE(944)] = 43544, - [SMALL_STATE(945)] = 43591, - [SMALL_STATE(946)] = 43638, - [SMALL_STATE(947)] = 43695, - [SMALL_STATE(948)] = 43742, - [SMALL_STATE(949)] = 43789, - [SMALL_STATE(950)] = 43836, - [SMALL_STATE(951)] = 43883, - [SMALL_STATE(952)] = 43930, - [SMALL_STATE(953)] = 43977, - [SMALL_STATE(954)] = 44024, - [SMALL_STATE(955)] = 44081, - [SMALL_STATE(956)] = 44128, - [SMALL_STATE(957)] = 44181, - [SMALL_STATE(958)] = 44228, - [SMALL_STATE(959)] = 44275, - [SMALL_STATE(960)] = 44330, - [SMALL_STATE(961)] = 44383, - [SMALL_STATE(962)] = 44430, - [SMALL_STATE(963)] = 44477, - [SMALL_STATE(964)] = 44524, - [SMALL_STATE(965)] = 44577, - [SMALL_STATE(966)] = 44624, - [SMALL_STATE(967)] = 44679, - [SMALL_STATE(968)] = 44736, - [SMALL_STATE(969)] = 44783, - [SMALL_STATE(970)] = 44830, - [SMALL_STATE(971)] = 44877, - [SMALL_STATE(972)] = 44924, - [SMALL_STATE(973)] = 44971, - [SMALL_STATE(974)] = 45018, - [SMALL_STATE(975)] = 45065, - [SMALL_STATE(976)] = 45112, - [SMALL_STATE(977)] = 45159, - [SMALL_STATE(978)] = 45207, - [SMALL_STATE(979)] = 45257, - [SMALL_STATE(980)] = 45303, - [SMALL_STATE(981)] = 45349, - [SMALL_STATE(982)] = 45395, - [SMALL_STATE(983)] = 45447, - [SMALL_STATE(984)] = 45495, - [SMALL_STATE(985)] = 45541, - [SMALL_STATE(986)] = 45587, - [SMALL_STATE(987)] = 45641, - [SMALL_STATE(988)] = 45695, - [SMALL_STATE(989)] = 45741, - [SMALL_STATE(990)] = 45793, - [SMALL_STATE(991)] = 45847, - [SMALL_STATE(992)] = 45895, - [SMALL_STATE(993)] = 45947, - [SMALL_STATE(994)] = 45992, - [SMALL_STATE(995)] = 46037, - [SMALL_STATE(996)] = 46082, - [SMALL_STATE(997)] = 46127, - [SMALL_STATE(998)] = 46172, - [SMALL_STATE(999)] = 46217, - [SMALL_STATE(1000)] = 46266, - [SMALL_STATE(1001)] = 46311, - [SMALL_STATE(1002)] = 46356, - [SMALL_STATE(1003)] = 46401, - [SMALL_STATE(1004)] = 46450, - [SMALL_STATE(1005)] = 46495, - [SMALL_STATE(1006)] = 46540, - [SMALL_STATE(1007)] = 46585, - [SMALL_STATE(1008)] = 46630, - [SMALL_STATE(1009)] = 46675, - [SMALL_STATE(1010)] = 46720, - [SMALL_STATE(1011)] = 46769, - [SMALL_STATE(1012)] = 46814, - [SMALL_STATE(1013)] = 46859, - [SMALL_STATE(1014)] = 46904, - [SMALL_STATE(1015)] = 46949, - [SMALL_STATE(1016)] = 46994, - [SMALL_STATE(1017)] = 47039, - [SMALL_STATE(1018)] = 47096, - [SMALL_STATE(1019)] = 47153, - [SMALL_STATE(1020)] = 47198, - [SMALL_STATE(1021)] = 47247, - [SMALL_STATE(1022)] = 47292, - [SMALL_STATE(1023)] = 47337, - [SMALL_STATE(1024)] = 47386, - [SMALL_STATE(1025)] = 47431, - [SMALL_STATE(1026)] = 47476, - [SMALL_STATE(1027)] = 47521, - [SMALL_STATE(1028)] = 47566, - [SMALL_STATE(1029)] = 47611, - [SMALL_STATE(1030)] = 47656, - [SMALL_STATE(1031)] = 47701, - [SMALL_STATE(1032)] = 47746, - [SMALL_STATE(1033)] = 47791, - [SMALL_STATE(1034)] = 47836, - [SMALL_STATE(1035)] = 47885, - [SMALL_STATE(1036)] = 47930, - [SMALL_STATE(1037)] = 47975, - [SMALL_STATE(1038)] = 48020, - [SMALL_STATE(1039)] = 48065, - [SMALL_STATE(1040)] = 48110, - [SMALL_STATE(1041)] = 48155, - [SMALL_STATE(1042)] = 48203, - [SMALL_STATE(1043)] = 48251, - [SMALL_STATE(1044)] = 48299, - [SMALL_STATE(1045)] = 48347, - [SMALL_STATE(1046)] = 48395, - [SMALL_STATE(1047)] = 48439, - [SMALL_STATE(1048)] = 48487, - [SMALL_STATE(1049)] = 48535, - [SMALL_STATE(1050)] = 48583, - [SMALL_STATE(1051)] = 48627, - [SMALL_STATE(1052)] = 48683, - [SMALL_STATE(1053)] = 48739, - [SMALL_STATE(1054)] = 48783, - [SMALL_STATE(1055)] = 48827, - [SMALL_STATE(1056)] = 48871, - [SMALL_STATE(1057)] = 48915, - [SMALL_STATE(1058)] = 48959, - [SMALL_STATE(1059)] = 49003, - [SMALL_STATE(1060)] = 49047, - [SMALL_STATE(1061)] = 49095, - [SMALL_STATE(1062)] = 49139, - [SMALL_STATE(1063)] = 49183, - [SMALL_STATE(1064)] = 49227, - [SMALL_STATE(1065)] = 49275, - [SMALL_STATE(1066)] = 49323, - [SMALL_STATE(1067)] = 49371, - [SMALL_STATE(1068)] = 49419, - [SMALL_STATE(1069)] = 49467, - [SMALL_STATE(1070)] = 49511, - [SMALL_STATE(1071)] = 49555, - [SMALL_STATE(1072)] = 49610, - [SMALL_STATE(1073)] = 49657, - [SMALL_STATE(1074)] = 49700, - [SMALL_STATE(1075)] = 49743, - [SMALL_STATE(1076)] = 49798, - [SMALL_STATE(1077)] = 49841, - [SMALL_STATE(1078)] = 49884, - [SMALL_STATE(1079)] = 49927, - [SMALL_STATE(1080)] = 49974, - [SMALL_STATE(1081)] = 50017, - [SMALL_STATE(1082)] = 50060, - [SMALL_STATE(1083)] = 50103, - [SMALL_STATE(1084)] = 50150, - [SMALL_STATE(1085)] = 50193, - [SMALL_STATE(1086)] = 50236, - [SMALL_STATE(1087)] = 50279, - [SMALL_STATE(1088)] = 50322, - [SMALL_STATE(1089)] = 50365, - [SMALL_STATE(1090)] = 50408, - [SMALL_STATE(1091)] = 50451, - [SMALL_STATE(1092)] = 50494, - [SMALL_STATE(1093)] = 50541, - [SMALL_STATE(1094)] = 50588, - [SMALL_STATE(1095)] = 50635, - [SMALL_STATE(1096)] = 50678, - [SMALL_STATE(1097)] = 50725, - [SMALL_STATE(1098)] = 50772, - [SMALL_STATE(1099)] = 50818, - [SMALL_STATE(1100)] = 50860, - [SMALL_STATE(1101)] = 50902, - [SMALL_STATE(1102)] = 50944, - [SMALL_STATE(1103)] = 50986, - [SMALL_STATE(1104)] = 51028, - [SMALL_STATE(1105)] = 51070, - [SMALL_STATE(1106)] = 51112, - [SMALL_STATE(1107)] = 51154, - [SMALL_STATE(1108)] = 51196, - [SMALL_STATE(1109)] = 51238, - [SMALL_STATE(1110)] = 51280, - [SMALL_STATE(1111)] = 51322, - [SMALL_STATE(1112)] = 51364, - [SMALL_STATE(1113)] = 51406, - [SMALL_STATE(1114)] = 51452, - [SMALL_STATE(1115)] = 51494, - [SMALL_STATE(1116)] = 51540, - [SMALL_STATE(1117)] = 51582, - [SMALL_STATE(1118)] = 51624, - [SMALL_STATE(1119)] = 51666, - [SMALL_STATE(1120)] = 51708, - [SMALL_STATE(1121)] = 51759, - [SMALL_STATE(1122)] = 51800, - [SMALL_STATE(1123)] = 51851, - [SMALL_STATE(1124)] = 51892, - [SMALL_STATE(1125)] = 51933, - [SMALL_STATE(1126)] = 51974, - [SMALL_STATE(1127)] = 52015, - [SMALL_STATE(1128)] = 52056, - [SMALL_STATE(1129)] = 52097, - [SMALL_STATE(1130)] = 52138, - [SMALL_STATE(1131)] = 52179, - [SMALL_STATE(1132)] = 52220, - [SMALL_STATE(1133)] = 52261, - [SMALL_STATE(1134)] = 52302, - [SMALL_STATE(1135)] = 52343, - [SMALL_STATE(1136)] = 52384, - [SMALL_STATE(1137)] = 52425, - [SMALL_STATE(1138)] = 52466, - [SMALL_STATE(1139)] = 52517, - [SMALL_STATE(1140)] = 52568, - [SMALL_STATE(1141)] = 52611, - [SMALL_STATE(1142)] = 52654, - [SMALL_STATE(1143)] = 52697, - [SMALL_STATE(1144)] = 52740, - [SMALL_STATE(1145)] = 52783, - [SMALL_STATE(1146)] = 52826, - [SMALL_STATE(1147)] = 52864, - [SMALL_STATE(1148)] = 52902, - [SMALL_STATE(1149)] = 52939, - [SMALL_STATE(1150)] = 52976, - [SMALL_STATE(1151)] = 53013, - [SMALL_STATE(1152)] = 53050, - [SMALL_STATE(1153)] = 53087, - [SMALL_STATE(1154)] = 53124, - [SMALL_STATE(1155)] = 53161, - [SMALL_STATE(1156)] = 53198, - [SMALL_STATE(1157)] = 53235, - [SMALL_STATE(1158)] = 53272, - [SMALL_STATE(1159)] = 53306, - [SMALL_STATE(1160)] = 53340, - [SMALL_STATE(1161)] = 53374, - [SMALL_STATE(1162)] = 53402, - [SMALL_STATE(1163)] = 53432, - [SMALL_STATE(1164)] = 53480, - [SMALL_STATE(1165)] = 53528, - [SMALL_STATE(1166)] = 53576, - [SMALL_STATE(1167)] = 53624, - [SMALL_STATE(1168)] = 53672, - [SMALL_STATE(1169)] = 53720, - [SMALL_STATE(1170)] = 53768, - [SMALL_STATE(1171)] = 53816, - [SMALL_STATE(1172)] = 53864, - [SMALL_STATE(1173)] = 53912, - [SMALL_STATE(1174)] = 53960, - [SMALL_STATE(1175)] = 54008, - [SMALL_STATE(1176)] = 54056, - [SMALL_STATE(1177)] = 54104, - [SMALL_STATE(1178)] = 54152, - [SMALL_STATE(1179)] = 54200, - [SMALL_STATE(1180)] = 54248, - [SMALL_STATE(1181)] = 54296, - [SMALL_STATE(1182)] = 54344, - [SMALL_STATE(1183)] = 54392, - [SMALL_STATE(1184)] = 54440, - [SMALL_STATE(1185)] = 54488, - [SMALL_STATE(1186)] = 54536, - [SMALL_STATE(1187)] = 54584, - [SMALL_STATE(1188)] = 54632, - [SMALL_STATE(1189)] = 54671, - [SMALL_STATE(1190)] = 54710, - [SMALL_STATE(1191)] = 54749, - [SMALL_STATE(1192)] = 54788, - [SMALL_STATE(1193)] = 54827, - [SMALL_STATE(1194)] = 54863, - [SMALL_STATE(1195)] = 54901, - [SMALL_STATE(1196)] = 54937, - [SMALL_STATE(1197)] = 54975, - [SMALL_STATE(1198)] = 55013, - [SMALL_STATE(1199)] = 55049, - [SMALL_STATE(1200)] = 55087, - [SMALL_STATE(1201)] = 55125, - [SMALL_STATE(1202)] = 55163, - [SMALL_STATE(1203)] = 55201, - [SMALL_STATE(1204)] = 55239, - [SMALL_STATE(1205)] = 55275, - [SMALL_STATE(1206)] = 55313, - [SMALL_STATE(1207)] = 55351, - [SMALL_STATE(1208)] = 55389, - [SMALL_STATE(1209)] = 55427, - [SMALL_STATE(1210)] = 55465, - [SMALL_STATE(1211)] = 55501, - [SMALL_STATE(1212)] = 55539, - [SMALL_STATE(1213)] = 55577, - [SMALL_STATE(1214)] = 55615, - [SMALL_STATE(1215)] = 55648, - [SMALL_STATE(1216)] = 55681, - [SMALL_STATE(1217)] = 55714, - [SMALL_STATE(1218)] = 55745, - [SMALL_STATE(1219)] = 55778, - [SMALL_STATE(1220)] = 55811, - [SMALL_STATE(1221)] = 55844, - [SMALL_STATE(1222)] = 55877, - [SMALL_STATE(1223)] = 55910, - [SMALL_STATE(1224)] = 55943, - [SMALL_STATE(1225)] = 55976, - [SMALL_STATE(1226)] = 56009, - [SMALL_STATE(1227)] = 56042, - [SMALL_STATE(1228)] = 56075, - [SMALL_STATE(1229)] = 56108, - [SMALL_STATE(1230)] = 56141, - [SMALL_STATE(1231)] = 56174, - [SMALL_STATE(1232)] = 56207, - [SMALL_STATE(1233)] = 56240, - [SMALL_STATE(1234)] = 56280, - [SMALL_STATE(1235)] = 56320, - [SMALL_STATE(1236)] = 56360, - [SMALL_STATE(1237)] = 56400, - [SMALL_STATE(1238)] = 56430, - [SMALL_STATE(1239)] = 56470, - [SMALL_STATE(1240)] = 56494, - [SMALL_STATE(1241)] = 56534, - [SMALL_STATE(1242)] = 56574, - [SMALL_STATE(1243)] = 56609, - [SMALL_STATE(1244)] = 56644, - [SMALL_STATE(1245)] = 56679, - [SMALL_STATE(1246)] = 56701, - [SMALL_STATE(1247)] = 56723, - [SMALL_STATE(1248)] = 56749, - [SMALL_STATE(1249)] = 56771, - [SMALL_STATE(1250)] = 56791, - [SMALL_STATE(1251)] = 56811, - [SMALL_STATE(1252)] = 56835, - [SMALL_STATE(1253)] = 56869, - [SMALL_STATE(1254)] = 56895, - [SMALL_STATE(1255)] = 56917, - [SMALL_STATE(1256)] = 56943, - [SMALL_STATE(1257)] = 56965, - [SMALL_STATE(1258)] = 56987, - [SMALL_STATE(1259)] = 57007, - [SMALL_STATE(1260)] = 57040, - [SMALL_STATE(1261)] = 57073, - [SMALL_STATE(1262)] = 57106, - [SMALL_STATE(1263)] = 57131, - [SMALL_STATE(1264)] = 57164, - [SMALL_STATE(1265)] = 57190, - [SMALL_STATE(1266)] = 57216, - [SMALL_STATE(1267)] = 57236, - [SMALL_STATE(1268)] = 57262, - [SMALL_STATE(1269)] = 57282, - [SMALL_STATE(1270)] = 57302, - [SMALL_STATE(1271)] = 57328, - [SMALL_STATE(1272)] = 57348, - [SMALL_STATE(1273)] = 57368, - [SMALL_STATE(1274)] = 57394, - [SMALL_STATE(1275)] = 57414, - [SMALL_STATE(1276)] = 57434, - [SMALL_STATE(1277)] = 57454, - [SMALL_STATE(1278)] = 57481, - [SMALL_STATE(1279)] = 57508, - [SMALL_STATE(1280)] = 57535, - [SMALL_STATE(1281)] = 57562, - [SMALL_STATE(1282)] = 57589, - [SMALL_STATE(1283)] = 57608, - [SMALL_STATE(1284)] = 57635, - [SMALL_STATE(1285)] = 57654, - [SMALL_STATE(1286)] = 57681, - [SMALL_STATE(1287)] = 57700, - [SMALL_STATE(1288)] = 57727, - [SMALL_STATE(1289)] = 57754, - [SMALL_STATE(1290)] = 57772, - [SMALL_STATE(1291)] = 57800, - [SMALL_STATE(1292)] = 57817, - [SMALL_STATE(1293)] = 57836, - [SMALL_STATE(1294)] = 57857, - [SMALL_STATE(1295)] = 57874, - [SMALL_STATE(1296)] = 57891, - [SMALL_STATE(1297)] = 57918, - [SMALL_STATE(1298)] = 57937, - [SMALL_STATE(1299)] = 57964, - [SMALL_STATE(1300)] = 57985, - [SMALL_STATE(1301)] = 58003, - [SMALL_STATE(1302)] = 58029, - [SMALL_STATE(1303)] = 58049, - [SMALL_STATE(1304)] = 58069, - [SMALL_STATE(1305)] = 58087, - [SMALL_STATE(1306)] = 58113, - [SMALL_STATE(1307)] = 58131, - [SMALL_STATE(1308)] = 58147, - [SMALL_STATE(1309)] = 58165, - [SMALL_STATE(1310)] = 58183, - [SMALL_STATE(1311)] = 58199, - [SMALL_STATE(1312)] = 58217, - [SMALL_STATE(1313)] = 58235, - [SMALL_STATE(1314)] = 58253, - [SMALL_STATE(1315)] = 58271, - [SMALL_STATE(1316)] = 58289, - [SMALL_STATE(1317)] = 58304, - [SMALL_STATE(1318)] = 58327, - [SMALL_STATE(1319)] = 58340, - [SMALL_STATE(1320)] = 58365, - [SMALL_STATE(1321)] = 58386, - [SMALL_STATE(1322)] = 58401, - [SMALL_STATE(1323)] = 58416, - [SMALL_STATE(1324)] = 58431, - [SMALL_STATE(1325)] = 58456, - [SMALL_STATE(1326)] = 58471, - [SMALL_STATE(1327)] = 58496, - [SMALL_STATE(1328)] = 58519, - [SMALL_STATE(1329)] = 58540, - [SMALL_STATE(1330)] = 58563, - [SMALL_STATE(1331)] = 58586, - [SMALL_STATE(1332)] = 58611, - [SMALL_STATE(1333)] = 58626, - [SMALL_STATE(1334)] = 58647, - [SMALL_STATE(1335)] = 58663, - [SMALL_STATE(1336)] = 58679, - [SMALL_STATE(1337)] = 58701, - [SMALL_STATE(1338)] = 58719, - [SMALL_STATE(1339)] = 58733, - [SMALL_STATE(1340)] = 58755, - [SMALL_STATE(1341)] = 58771, - [SMALL_STATE(1342)] = 58793, - [SMALL_STATE(1343)] = 58809, - [SMALL_STATE(1344)] = 58825, - [SMALL_STATE(1345)] = 58839, - [SMALL_STATE(1346)] = 58853, - [SMALL_STATE(1347)] = 58869, - [SMALL_STATE(1348)] = 58887, - [SMALL_STATE(1349)] = 58909, - [SMALL_STATE(1350)] = 58924, - [SMALL_STATE(1351)] = 58943, - [SMALL_STATE(1352)] = 58962, - [SMALL_STATE(1353)] = 58981, - [SMALL_STATE(1354)] = 59000, - [SMALL_STATE(1355)] = 59019, - [SMALL_STATE(1356)] = 59038, - [SMALL_STATE(1357)] = 59057, - [SMALL_STATE(1358)] = 59076, - [SMALL_STATE(1359)] = 59091, - [SMALL_STATE(1360)] = 59110, - [SMALL_STATE(1361)] = 59123, - [SMALL_STATE(1362)] = 59134, - [SMALL_STATE(1363)] = 59153, - [SMALL_STATE(1364)] = 59164, - [SMALL_STATE(1365)] = 59183, - [SMALL_STATE(1366)] = 59198, - [SMALL_STATE(1367)] = 59215, - [SMALL_STATE(1368)] = 59234, - [SMALL_STATE(1369)] = 59249, - [SMALL_STATE(1370)] = 59264, - [SMALL_STATE(1371)] = 59279, - [SMALL_STATE(1372)] = 59298, - [SMALL_STATE(1373)] = 59311, - [SMALL_STATE(1374)] = 59330, - [SMALL_STATE(1375)] = 59349, - [SMALL_STATE(1376)] = 59368, - [SMALL_STATE(1377)] = 59387, - [SMALL_STATE(1378)] = 59404, - [SMALL_STATE(1379)] = 59417, - [SMALL_STATE(1380)] = 59432, - [SMALL_STATE(1381)] = 59447, - [SMALL_STATE(1382)] = 59466, - [SMALL_STATE(1383)] = 59485, - [SMALL_STATE(1384)] = 59496, - [SMALL_STATE(1385)] = 59511, - [SMALL_STATE(1386)] = 59522, - [SMALL_STATE(1387)] = 59533, - [SMALL_STATE(1388)] = 59552, - [SMALL_STATE(1389)] = 59571, - [SMALL_STATE(1390)] = 59588, - [SMALL_STATE(1391)] = 59607, - [SMALL_STATE(1392)] = 59626, - [SMALL_STATE(1393)] = 59639, - [SMALL_STATE(1394)] = 59658, - [SMALL_STATE(1395)] = 59677, - [SMALL_STATE(1396)] = 59694, - [SMALL_STATE(1397)] = 59706, - [SMALL_STATE(1398)] = 59716, - [SMALL_STATE(1399)] = 59732, - [SMALL_STATE(1400)] = 59742, - [SMALL_STATE(1401)] = 59752, - [SMALL_STATE(1402)] = 59768, - [SMALL_STATE(1403)] = 59784, - [SMALL_STATE(1404)] = 59796, - [SMALL_STATE(1405)] = 59812, - [SMALL_STATE(1406)] = 59822, - [SMALL_STATE(1407)] = 59834, - [SMALL_STATE(1408)] = 59850, - [SMALL_STATE(1409)] = 59866, - [SMALL_STATE(1410)] = 59878, - [SMALL_STATE(1411)] = 59894, - [SMALL_STATE(1412)] = 59908, - [SMALL_STATE(1413)] = 59924, - [SMALL_STATE(1414)] = 59940, - [SMALL_STATE(1415)] = 59954, - [SMALL_STATE(1416)] = 59970, - [SMALL_STATE(1417)] = 59984, - [SMALL_STATE(1418)] = 60000, - [SMALL_STATE(1419)] = 60016, - [SMALL_STATE(1420)] = 60030, - [SMALL_STATE(1421)] = 60046, - [SMALL_STATE(1422)] = 60062, - [SMALL_STATE(1423)] = 60078, - [SMALL_STATE(1424)] = 60094, - [SMALL_STATE(1425)] = 60110, - [SMALL_STATE(1426)] = 60126, - [SMALL_STATE(1427)] = 60135, - [SMALL_STATE(1428)] = 60148, - [SMALL_STATE(1429)] = 60161, - [SMALL_STATE(1430)] = 60170, - [SMALL_STATE(1431)] = 60179, - [SMALL_STATE(1432)] = 60192, - [SMALL_STATE(1433)] = 60205, - [SMALL_STATE(1434)] = 60218, - [SMALL_STATE(1435)] = 60231, - [SMALL_STATE(1436)] = 60244, - [SMALL_STATE(1437)] = 60257, - [SMALL_STATE(1438)] = 60270, - [SMALL_STATE(1439)] = 60283, - [SMALL_STATE(1440)] = 60296, - [SMALL_STATE(1441)] = 60309, - [SMALL_STATE(1442)] = 60318, - [SMALL_STATE(1443)] = 60327, - [SMALL_STATE(1444)] = 60338, - [SMALL_STATE(1445)] = 60349, - [SMALL_STATE(1446)] = 60358, - [SMALL_STATE(1447)] = 60371, - [SMALL_STATE(1448)] = 60384, - [SMALL_STATE(1449)] = 60397, - [SMALL_STATE(1450)] = 60410, - [SMALL_STATE(1451)] = 60423, - [SMALL_STATE(1452)] = 60432, - [SMALL_STATE(1453)] = 60445, - [SMALL_STATE(1454)] = 60458, - [SMALL_STATE(1455)] = 60471, - [SMALL_STATE(1456)] = 60484, - [SMALL_STATE(1457)] = 60493, - [SMALL_STATE(1458)] = 60502, - [SMALL_STATE(1459)] = 60511, - [SMALL_STATE(1460)] = 60520, - [SMALL_STATE(1461)] = 60533, - [SMALL_STATE(1462)] = 60546, - [SMALL_STATE(1463)] = 60559, - [SMALL_STATE(1464)] = 60572, - [SMALL_STATE(1465)] = 60585, - [SMALL_STATE(1466)] = 60594, - [SMALL_STATE(1467)] = 60605, - [SMALL_STATE(1468)] = 60618, - [SMALL_STATE(1469)] = 60631, - [SMALL_STATE(1470)] = 60644, - [SMALL_STATE(1471)] = 60657, - [SMALL_STATE(1472)] = 60670, - [SMALL_STATE(1473)] = 60683, - [SMALL_STATE(1474)] = 60696, - [SMALL_STATE(1475)] = 60709, - [SMALL_STATE(1476)] = 60722, - [SMALL_STATE(1477)] = 60735, - [SMALL_STATE(1478)] = 60748, - [SMALL_STATE(1479)] = 60761, - [SMALL_STATE(1480)] = 60774, - [SMALL_STATE(1481)] = 60787, - [SMALL_STATE(1482)] = 60800, - [SMALL_STATE(1483)] = 60813, - [SMALL_STATE(1484)] = 60826, - [SMALL_STATE(1485)] = 60839, - [SMALL_STATE(1486)] = 60852, - [SMALL_STATE(1487)] = 60865, - [SMALL_STATE(1488)] = 60878, - [SMALL_STATE(1489)] = 60891, - [SMALL_STATE(1490)] = 60904, - [SMALL_STATE(1491)] = 60917, - [SMALL_STATE(1492)] = 60930, - [SMALL_STATE(1493)] = 60943, - [SMALL_STATE(1494)] = 60954, - [SMALL_STATE(1495)] = 60967, - [SMALL_STATE(1496)] = 60978, - [SMALL_STATE(1497)] = 60991, - [SMALL_STATE(1498)] = 61002, - [SMALL_STATE(1499)] = 61015, - [SMALL_STATE(1500)] = 61028, - [SMALL_STATE(1501)] = 61041, - [SMALL_STATE(1502)] = 61054, - [SMALL_STATE(1503)] = 61067, - [SMALL_STATE(1504)] = 61080, - [SMALL_STATE(1505)] = 61093, - [SMALL_STATE(1506)] = 61106, - [SMALL_STATE(1507)] = 61119, - [SMALL_STATE(1508)] = 61132, - [SMALL_STATE(1509)] = 61145, - [SMALL_STATE(1510)] = 61158, - [SMALL_STATE(1511)] = 61171, - [SMALL_STATE(1512)] = 61184, - [SMALL_STATE(1513)] = 61197, - [SMALL_STATE(1514)] = 61210, - [SMALL_STATE(1515)] = 61223, - [SMALL_STATE(1516)] = 61236, - [SMALL_STATE(1517)] = 61249, - [SMALL_STATE(1518)] = 61262, - [SMALL_STATE(1519)] = 61275, - [SMALL_STATE(1520)] = 61288, - [SMALL_STATE(1521)] = 61301, - [SMALL_STATE(1522)] = 61314, - [SMALL_STATE(1523)] = 61327, - [SMALL_STATE(1524)] = 61340, - [SMALL_STATE(1525)] = 61353, - [SMALL_STATE(1526)] = 61364, - [SMALL_STATE(1527)] = 61377, - [SMALL_STATE(1528)] = 61390, - [SMALL_STATE(1529)] = 61403, - [SMALL_STATE(1530)] = 61416, - [SMALL_STATE(1531)] = 61429, - [SMALL_STATE(1532)] = 61442, - [SMALL_STATE(1533)] = 61455, - [SMALL_STATE(1534)] = 61468, - [SMALL_STATE(1535)] = 61481, - [SMALL_STATE(1536)] = 61494, - [SMALL_STATE(1537)] = 61507, - [SMALL_STATE(1538)] = 61520, - [SMALL_STATE(1539)] = 61533, - [SMALL_STATE(1540)] = 61546, - [SMALL_STATE(1541)] = 61557, - [SMALL_STATE(1542)] = 61570, - [SMALL_STATE(1543)] = 61583, - [SMALL_STATE(1544)] = 61593, - [SMALL_STATE(1545)] = 61603, - [SMALL_STATE(1546)] = 61613, - [SMALL_STATE(1547)] = 61623, - [SMALL_STATE(1548)] = 61633, - [SMALL_STATE(1549)] = 61643, - [SMALL_STATE(1550)] = 61653, - [SMALL_STATE(1551)] = 61663, - [SMALL_STATE(1552)] = 61673, - [SMALL_STATE(1553)] = 61683, - [SMALL_STATE(1554)] = 61693, - [SMALL_STATE(1555)] = 61701, - [SMALL_STATE(1556)] = 61709, - [SMALL_STATE(1557)] = 61719, - [SMALL_STATE(1558)] = 61729, - [SMALL_STATE(1559)] = 61739, - [SMALL_STATE(1560)] = 61749, - [SMALL_STATE(1561)] = 61759, - [SMALL_STATE(1562)] = 61769, - [SMALL_STATE(1563)] = 61779, - [SMALL_STATE(1564)] = 61789, - [SMALL_STATE(1565)] = 61799, - [SMALL_STATE(1566)] = 61809, - [SMALL_STATE(1567)] = 61819, - [SMALL_STATE(1568)] = 61829, - [SMALL_STATE(1569)] = 61837, - [SMALL_STATE(1570)] = 61847, - [SMALL_STATE(1571)] = 61857, - [SMALL_STATE(1572)] = 61867, - [SMALL_STATE(1573)] = 61877, - [SMALL_STATE(1574)] = 61887, - [SMALL_STATE(1575)] = 61897, - [SMALL_STATE(1576)] = 61907, - [SMALL_STATE(1577)] = 61917, - [SMALL_STATE(1578)] = 61927, - [SMALL_STATE(1579)] = 61937, - [SMALL_STATE(1580)] = 61947, - [SMALL_STATE(1581)] = 61955, - [SMALL_STATE(1582)] = 61965, - [SMALL_STATE(1583)] = 61975, - [SMALL_STATE(1584)] = 61983, - [SMALL_STATE(1585)] = 61993, - [SMALL_STATE(1586)] = 62003, - [SMALL_STATE(1587)] = 62011, - [SMALL_STATE(1588)] = 62021, - [SMALL_STATE(1589)] = 62031, - [SMALL_STATE(1590)] = 62041, - [SMALL_STATE(1591)] = 62051, - [SMALL_STATE(1592)] = 62061, - [SMALL_STATE(1593)] = 62071, - [SMALL_STATE(1594)] = 62081, - [SMALL_STATE(1595)] = 62091, - [SMALL_STATE(1596)] = 62101, - [SMALL_STATE(1597)] = 62111, - [SMALL_STATE(1598)] = 62119, - [SMALL_STATE(1599)] = 62129, - [SMALL_STATE(1600)] = 62139, - [SMALL_STATE(1601)] = 62149, - [SMALL_STATE(1602)] = 62159, - [SMALL_STATE(1603)] = 62169, - [SMALL_STATE(1604)] = 62179, - [SMALL_STATE(1605)] = 62189, - [SMALL_STATE(1606)] = 62199, - [SMALL_STATE(1607)] = 62209, - [SMALL_STATE(1608)] = 62219, - [SMALL_STATE(1609)] = 62229, - [SMALL_STATE(1610)] = 62239, - [SMALL_STATE(1611)] = 62249, - [SMALL_STATE(1612)] = 62259, - [SMALL_STATE(1613)] = 62267, - [SMALL_STATE(1614)] = 62277, - [SMALL_STATE(1615)] = 62285, - [SMALL_STATE(1616)] = 62295, - [SMALL_STATE(1617)] = 62303, - [SMALL_STATE(1618)] = 62313, - [SMALL_STATE(1619)] = 62323, - [SMALL_STATE(1620)] = 62333, - [SMALL_STATE(1621)] = 62343, - [SMALL_STATE(1622)] = 62353, - [SMALL_STATE(1623)] = 62363, - [SMALL_STATE(1624)] = 62373, - [SMALL_STATE(1625)] = 62383, - [SMALL_STATE(1626)] = 62393, - [SMALL_STATE(1627)] = 62403, - [SMALL_STATE(1628)] = 62413, - [SMALL_STATE(1629)] = 62423, - [SMALL_STATE(1630)] = 62431, - [SMALL_STATE(1631)] = 62441, - [SMALL_STATE(1632)] = 62451, - [SMALL_STATE(1633)] = 62461, - [SMALL_STATE(1634)] = 62471, - [SMALL_STATE(1635)] = 62481, - [SMALL_STATE(1636)] = 62491, - [SMALL_STATE(1637)] = 62501, - [SMALL_STATE(1638)] = 62511, - [SMALL_STATE(1639)] = 62521, - [SMALL_STATE(1640)] = 62531, - [SMALL_STATE(1641)] = 62541, - [SMALL_STATE(1642)] = 62551, - [SMALL_STATE(1643)] = 62561, - [SMALL_STATE(1644)] = 62571, - [SMALL_STATE(1645)] = 62581, - [SMALL_STATE(1646)] = 62591, - [SMALL_STATE(1647)] = 62601, - [SMALL_STATE(1648)] = 62611, - [SMALL_STATE(1649)] = 62621, - [SMALL_STATE(1650)] = 62631, - [SMALL_STATE(1651)] = 62641, - [SMALL_STATE(1652)] = 62651, - [SMALL_STATE(1653)] = 62661, - [SMALL_STATE(1654)] = 62671, - [SMALL_STATE(1655)] = 62681, - [SMALL_STATE(1656)] = 62691, - [SMALL_STATE(1657)] = 62701, - [SMALL_STATE(1658)] = 62709, - [SMALL_STATE(1659)] = 62719, - [SMALL_STATE(1660)] = 62729, - [SMALL_STATE(1661)] = 62737, - [SMALL_STATE(1662)] = 62745, - [SMALL_STATE(1663)] = 62755, - [SMALL_STATE(1664)] = 62763, - [SMALL_STATE(1665)] = 62773, - [SMALL_STATE(1666)] = 62781, - [SMALL_STATE(1667)] = 62791, - [SMALL_STATE(1668)] = 62801, - [SMALL_STATE(1669)] = 62811, - [SMALL_STATE(1670)] = 62821, - [SMALL_STATE(1671)] = 62829, - [SMALL_STATE(1672)] = 62839, - [SMALL_STATE(1673)] = 62847, - [SMALL_STATE(1674)] = 62857, - [SMALL_STATE(1675)] = 62867, - [SMALL_STATE(1676)] = 62877, - [SMALL_STATE(1677)] = 62887, - [SMALL_STATE(1678)] = 62895, - [SMALL_STATE(1679)] = 62905, - [SMALL_STATE(1680)] = 62915, - [SMALL_STATE(1681)] = 62923, - [SMALL_STATE(1682)] = 62933, - [SMALL_STATE(1683)] = 62943, - [SMALL_STATE(1684)] = 62953, - [SMALL_STATE(1685)] = 62963, - [SMALL_STATE(1686)] = 62973, - [SMALL_STATE(1687)] = 62983, - [SMALL_STATE(1688)] = 62993, - [SMALL_STATE(1689)] = 63003, - [SMALL_STATE(1690)] = 63013, - [SMALL_STATE(1691)] = 63023, - [SMALL_STATE(1692)] = 63033, - [SMALL_STATE(1693)] = 63043, - [SMALL_STATE(1694)] = 63053, - [SMALL_STATE(1695)] = 63063, - [SMALL_STATE(1696)] = 63073, - [SMALL_STATE(1697)] = 63083, - [SMALL_STATE(1698)] = 63093, - [SMALL_STATE(1699)] = 63103, - [SMALL_STATE(1700)] = 63113, - [SMALL_STATE(1701)] = 63123, - [SMALL_STATE(1702)] = 63133, - [SMALL_STATE(1703)] = 63143, - [SMALL_STATE(1704)] = 63153, - [SMALL_STATE(1705)] = 63163, - [SMALL_STATE(1706)] = 63173, - [SMALL_STATE(1707)] = 63183, - [SMALL_STATE(1708)] = 63191, - [SMALL_STATE(1709)] = 63201, - [SMALL_STATE(1710)] = 63211, - [SMALL_STATE(1711)] = 63219, - [SMALL_STATE(1712)] = 63227, - [SMALL_STATE(1713)] = 63235, - [SMALL_STATE(1714)] = 63243, - [SMALL_STATE(1715)] = 63253, - [SMALL_STATE(1716)] = 63263, - [SMALL_STATE(1717)] = 63273, - [SMALL_STATE(1718)] = 63283, - [SMALL_STATE(1719)] = 63293, - [SMALL_STATE(1720)] = 63303, - [SMALL_STATE(1721)] = 63313, - [SMALL_STATE(1722)] = 63323, - [SMALL_STATE(1723)] = 63333, - [SMALL_STATE(1724)] = 63340, - [SMALL_STATE(1725)] = 63347, - [SMALL_STATE(1726)] = 63354, - [SMALL_STATE(1727)] = 63361, - [SMALL_STATE(1728)] = 63368, - [SMALL_STATE(1729)] = 63375, - [SMALL_STATE(1730)] = 63382, - [SMALL_STATE(1731)] = 63389, - [SMALL_STATE(1732)] = 63396, - [SMALL_STATE(1733)] = 63403, - [SMALL_STATE(1734)] = 63410, - [SMALL_STATE(1735)] = 63417, - [SMALL_STATE(1736)] = 63424, - [SMALL_STATE(1737)] = 63431, - [SMALL_STATE(1738)] = 63438, - [SMALL_STATE(1739)] = 63445, - [SMALL_STATE(1740)] = 63452, - [SMALL_STATE(1741)] = 63459, - [SMALL_STATE(1742)] = 63466, - [SMALL_STATE(1743)] = 63473, - [SMALL_STATE(1744)] = 63480, - [SMALL_STATE(1745)] = 63487, - [SMALL_STATE(1746)] = 63494, - [SMALL_STATE(1747)] = 63501, - [SMALL_STATE(1748)] = 63508, - [SMALL_STATE(1749)] = 63515, - [SMALL_STATE(1750)] = 63522, - [SMALL_STATE(1751)] = 63529, - [SMALL_STATE(1752)] = 63536, - [SMALL_STATE(1753)] = 63543, - [SMALL_STATE(1754)] = 63550, - [SMALL_STATE(1755)] = 63557, - [SMALL_STATE(1756)] = 63564, - [SMALL_STATE(1757)] = 63571, - [SMALL_STATE(1758)] = 63578, - [SMALL_STATE(1759)] = 63585, - [SMALL_STATE(1760)] = 63592, - [SMALL_STATE(1761)] = 63599, - [SMALL_STATE(1762)] = 63606, - [SMALL_STATE(1763)] = 63613, - [SMALL_STATE(1764)] = 63620, - [SMALL_STATE(1765)] = 63627, - [SMALL_STATE(1766)] = 63634, - [SMALL_STATE(1767)] = 63641, - [SMALL_STATE(1768)] = 63648, - [SMALL_STATE(1769)] = 63655, - [SMALL_STATE(1770)] = 63662, - [SMALL_STATE(1771)] = 63669, - [SMALL_STATE(1772)] = 63676, - [SMALL_STATE(1773)] = 63683, - [SMALL_STATE(1774)] = 63690, - [SMALL_STATE(1775)] = 63697, - [SMALL_STATE(1776)] = 63704, - [SMALL_STATE(1777)] = 63711, - [SMALL_STATE(1778)] = 63718, - [SMALL_STATE(1779)] = 63725, - [SMALL_STATE(1780)] = 63732, - [SMALL_STATE(1781)] = 63739, - [SMALL_STATE(1782)] = 63746, - [SMALL_STATE(1783)] = 63753, - [SMALL_STATE(1784)] = 63760, - [SMALL_STATE(1785)] = 63767, - [SMALL_STATE(1786)] = 63774, - [SMALL_STATE(1787)] = 63781, - [SMALL_STATE(1788)] = 63788, - [SMALL_STATE(1789)] = 63795, - [SMALL_STATE(1790)] = 63802, - [SMALL_STATE(1791)] = 63809, - [SMALL_STATE(1792)] = 63816, - [SMALL_STATE(1793)] = 63823, - [SMALL_STATE(1794)] = 63830, - [SMALL_STATE(1795)] = 63837, - [SMALL_STATE(1796)] = 63844, - [SMALL_STATE(1797)] = 63851, - [SMALL_STATE(1798)] = 63858, - [SMALL_STATE(1799)] = 63865, - [SMALL_STATE(1800)] = 63872, - [SMALL_STATE(1801)] = 63879, - [SMALL_STATE(1802)] = 63886, - [SMALL_STATE(1803)] = 63893, - [SMALL_STATE(1804)] = 63900, - [SMALL_STATE(1805)] = 63907, - [SMALL_STATE(1806)] = 63914, - [SMALL_STATE(1807)] = 63921, - [SMALL_STATE(1808)] = 63928, - [SMALL_STATE(1809)] = 63935, - [SMALL_STATE(1810)] = 63942, - [SMALL_STATE(1811)] = 63949, - [SMALL_STATE(1812)] = 63956, - [SMALL_STATE(1813)] = 63963, - [SMALL_STATE(1814)] = 63970, - [SMALL_STATE(1815)] = 63977, - [SMALL_STATE(1816)] = 63984, - [SMALL_STATE(1817)] = 63991, - [SMALL_STATE(1818)] = 63998, - [SMALL_STATE(1819)] = 64005, - [SMALL_STATE(1820)] = 64012, - [SMALL_STATE(1821)] = 64019, - [SMALL_STATE(1822)] = 64026, - [SMALL_STATE(1823)] = 64033, - [SMALL_STATE(1824)] = 64040, - [SMALL_STATE(1825)] = 64047, - [SMALL_STATE(1826)] = 64054, - [SMALL_STATE(1827)] = 64061, - [SMALL_STATE(1828)] = 64068, - [SMALL_STATE(1829)] = 64075, - [SMALL_STATE(1830)] = 64082, - [SMALL_STATE(1831)] = 64089, - [SMALL_STATE(1832)] = 64096, - [SMALL_STATE(1833)] = 64103, - [SMALL_STATE(1834)] = 64110, - [SMALL_STATE(1835)] = 64117, - [SMALL_STATE(1836)] = 64124, - [SMALL_STATE(1837)] = 64131, - [SMALL_STATE(1838)] = 64138, - [SMALL_STATE(1839)] = 64145, - [SMALL_STATE(1840)] = 64152, - [SMALL_STATE(1841)] = 64159, - [SMALL_STATE(1842)] = 64166, - [SMALL_STATE(1843)] = 64173, - [SMALL_STATE(1844)] = 64180, - [SMALL_STATE(1845)] = 64187, - [SMALL_STATE(1846)] = 64194, - [SMALL_STATE(1847)] = 64201, - [SMALL_STATE(1848)] = 64208, - [SMALL_STATE(1849)] = 64215, - [SMALL_STATE(1850)] = 64222, - [SMALL_STATE(1851)] = 64229, - [SMALL_STATE(1852)] = 64236, - [SMALL_STATE(1853)] = 64243, - [SMALL_STATE(1854)] = 64250, - [SMALL_STATE(1855)] = 64257, - [SMALL_STATE(1856)] = 64264, - [SMALL_STATE(1857)] = 64271, - [SMALL_STATE(1858)] = 64278, - [SMALL_STATE(1859)] = 64285, - [SMALL_STATE(1860)] = 64292, - [SMALL_STATE(1861)] = 64299, - [SMALL_STATE(1862)] = 64306, - [SMALL_STATE(1863)] = 64313, - [SMALL_STATE(1864)] = 64320, - [SMALL_STATE(1865)] = 64327, - [SMALL_STATE(1866)] = 64334, - [SMALL_STATE(1867)] = 64341, - [SMALL_STATE(1868)] = 64348, - [SMALL_STATE(1869)] = 64355, - [SMALL_STATE(1870)] = 64362, - [SMALL_STATE(1871)] = 64369, - [SMALL_STATE(1872)] = 64376, - [SMALL_STATE(1873)] = 64383, - [SMALL_STATE(1874)] = 64390, - [SMALL_STATE(1875)] = 64397, - [SMALL_STATE(1876)] = 64404, - [SMALL_STATE(1877)] = 64411, - [SMALL_STATE(1878)] = 64418, - [SMALL_STATE(1879)] = 64425, - [SMALL_STATE(1880)] = 64432, - [SMALL_STATE(1881)] = 64439, - [SMALL_STATE(1882)] = 64446, - [SMALL_STATE(1883)] = 64453, - [SMALL_STATE(1884)] = 64460, - [SMALL_STATE(1885)] = 64467, - [SMALL_STATE(1886)] = 64474, - [SMALL_STATE(1887)] = 64481, - [SMALL_STATE(1888)] = 64488, - [SMALL_STATE(1889)] = 64495, - [SMALL_STATE(1890)] = 64502, - [SMALL_STATE(1891)] = 64509, - [SMALL_STATE(1892)] = 64516, - [SMALL_STATE(1893)] = 64523, - [SMALL_STATE(1894)] = 64530, - [SMALL_STATE(1895)] = 64537, - [SMALL_STATE(1896)] = 64544, - [SMALL_STATE(1897)] = 64551, - [SMALL_STATE(1898)] = 64558, - [SMALL_STATE(1899)] = 64565, - [SMALL_STATE(1900)] = 64572, - [SMALL_STATE(1901)] = 64579, - [SMALL_STATE(1902)] = 64586, - [SMALL_STATE(1903)] = 64593, - [SMALL_STATE(1904)] = 64600, - [SMALL_STATE(1905)] = 64607, - [SMALL_STATE(1906)] = 64614, - [SMALL_STATE(1907)] = 64621, - [SMALL_STATE(1908)] = 64628, - [SMALL_STATE(1909)] = 64635, - [SMALL_STATE(1910)] = 64642, - [SMALL_STATE(1911)] = 64649, - [SMALL_STATE(1912)] = 64656, - [SMALL_STATE(1913)] = 64663, - [SMALL_STATE(1914)] = 64670, - [SMALL_STATE(1915)] = 64677, - [SMALL_STATE(1916)] = 64684, - [SMALL_STATE(1917)] = 64691, - [SMALL_STATE(1918)] = 64698, - [SMALL_STATE(1919)] = 64705, - [SMALL_STATE(1920)] = 64712, - [SMALL_STATE(1921)] = 64719, - [SMALL_STATE(1922)] = 64726, - [SMALL_STATE(1923)] = 64733, - [SMALL_STATE(1924)] = 64740, - [SMALL_STATE(1925)] = 64747, - [SMALL_STATE(1926)] = 64754, - [SMALL_STATE(1927)] = 64761, - [SMALL_STATE(1928)] = 64768, - [SMALL_STATE(1929)] = 64775, - [SMALL_STATE(1930)] = 64782, - [SMALL_STATE(1931)] = 64789, - [SMALL_STATE(1932)] = 64796, - [SMALL_STATE(1933)] = 64803, - [SMALL_STATE(1934)] = 64810, - [SMALL_STATE(1935)] = 64817, - [SMALL_STATE(1936)] = 64824, - [SMALL_STATE(1937)] = 64831, - [SMALL_STATE(1938)] = 64838, - [SMALL_STATE(1939)] = 64845, - [SMALL_STATE(1940)] = 64852, - [SMALL_STATE(1941)] = 64859, - [SMALL_STATE(1942)] = 64866, - [SMALL_STATE(1943)] = 64873, - [SMALL_STATE(1944)] = 64880, - [SMALL_STATE(1945)] = 64887, - [SMALL_STATE(1946)] = 64894, - [SMALL_STATE(1947)] = 64901, - [SMALL_STATE(1948)] = 64908, - [SMALL_STATE(1949)] = 64915, - [SMALL_STATE(1950)] = 64922, - [SMALL_STATE(1951)] = 64929, - [SMALL_STATE(1952)] = 64936, - [SMALL_STATE(1953)] = 64943, - [SMALL_STATE(1954)] = 64950, - [SMALL_STATE(1955)] = 64957, - [SMALL_STATE(1956)] = 64964, - [SMALL_STATE(1957)] = 64971, - [SMALL_STATE(1958)] = 64978, - [SMALL_STATE(1959)] = 64985, - [SMALL_STATE(1960)] = 64992, - [SMALL_STATE(1961)] = 64999, - [SMALL_STATE(1962)] = 65006, - [SMALL_STATE(1963)] = 65013, - [SMALL_STATE(1964)] = 65020, - [SMALL_STATE(1965)] = 65027, - [SMALL_STATE(1966)] = 65034, - [SMALL_STATE(1967)] = 65041, - [SMALL_STATE(1968)] = 65048, - [SMALL_STATE(1969)] = 65055, - [SMALL_STATE(1970)] = 65062, - [SMALL_STATE(1971)] = 65069, - [SMALL_STATE(1972)] = 65076, - [SMALL_STATE(1973)] = 65083, - [SMALL_STATE(1974)] = 65090, - [SMALL_STATE(1975)] = 65097, - [SMALL_STATE(1976)] = 65104, - [SMALL_STATE(1977)] = 65111, - [SMALL_STATE(1978)] = 65118, - [SMALL_STATE(1979)] = 65125, - [SMALL_STATE(1980)] = 65132, - [SMALL_STATE(1981)] = 65139, - [SMALL_STATE(1982)] = 65146, - [SMALL_STATE(1983)] = 65153, - [SMALL_STATE(1984)] = 65160, - [SMALL_STATE(1985)] = 65167, - [SMALL_STATE(1986)] = 65174, - [SMALL_STATE(1987)] = 65181, - [SMALL_STATE(1988)] = 65188, - [SMALL_STATE(1989)] = 65195, - [SMALL_STATE(1990)] = 65202, - [SMALL_STATE(1991)] = 65209, - [SMALL_STATE(1992)] = 65216, - [SMALL_STATE(1993)] = 65223, - [SMALL_STATE(1994)] = 65230, - [SMALL_STATE(1995)] = 65237, - [SMALL_STATE(1996)] = 65244, - [SMALL_STATE(1997)] = 65251, - [SMALL_STATE(1998)] = 65258, - [SMALL_STATE(1999)] = 65265, - [SMALL_STATE(2000)] = 65272, - [SMALL_STATE(2001)] = 65279, - [SMALL_STATE(2002)] = 65286, - [SMALL_STATE(2003)] = 65293, - [SMALL_STATE(2004)] = 65300, - [SMALL_STATE(2005)] = 65307, - [SMALL_STATE(2006)] = 65314, - [SMALL_STATE(2007)] = 65321, - [SMALL_STATE(2008)] = 65328, - [SMALL_STATE(2009)] = 65335, - [SMALL_STATE(2010)] = 65342, - [SMALL_STATE(2011)] = 65349, - [SMALL_STATE(2012)] = 65356, - [SMALL_STATE(2013)] = 65363, - [SMALL_STATE(2014)] = 65370, - [SMALL_STATE(2015)] = 65377, - [SMALL_STATE(2016)] = 65384, - [SMALL_STATE(2017)] = 65391, - [SMALL_STATE(2018)] = 65398, - [SMALL_STATE(2019)] = 65405, - [SMALL_STATE(2020)] = 65412, - [SMALL_STATE(2021)] = 65419, - [SMALL_STATE(2022)] = 65426, - [SMALL_STATE(2023)] = 65433, - [SMALL_STATE(2024)] = 65440, - [SMALL_STATE(2025)] = 65447, - [SMALL_STATE(2026)] = 65454, - [SMALL_STATE(2027)] = 65461, - [SMALL_STATE(2028)] = 65468, - [SMALL_STATE(2029)] = 65475, - [SMALL_STATE(2030)] = 65482, - [SMALL_STATE(2031)] = 65489, - [SMALL_STATE(2032)] = 65496, - [SMALL_STATE(2033)] = 65503, - [SMALL_STATE(2034)] = 65510, - [SMALL_STATE(2035)] = 65517, - [SMALL_STATE(2036)] = 65524, - [SMALL_STATE(2037)] = 65531, - [SMALL_STATE(2038)] = 65538, - [SMALL_STATE(2039)] = 65545, - [SMALL_STATE(2040)] = 65552, - [SMALL_STATE(2041)] = 65559, - [SMALL_STATE(2042)] = 65566, - [SMALL_STATE(2043)] = 65573, - [SMALL_STATE(2044)] = 65580, - [SMALL_STATE(2045)] = 65587, - [SMALL_STATE(2046)] = 65594, - [SMALL_STATE(2047)] = 65601, - [SMALL_STATE(2048)] = 65608, - [SMALL_STATE(2049)] = 65615, - [SMALL_STATE(2050)] = 65622, - [SMALL_STATE(2051)] = 65629, - [SMALL_STATE(2052)] = 65636, - [SMALL_STATE(2053)] = 65643, - [SMALL_STATE(2054)] = 65650, - [SMALL_STATE(2055)] = 65657, - [SMALL_STATE(2056)] = 65664, - [SMALL_STATE(2057)] = 65671, - [SMALL_STATE(2058)] = 65678, - [SMALL_STATE(2059)] = 65685, - [SMALL_STATE(2060)] = 65692, - [SMALL_STATE(2061)] = 65699, - [SMALL_STATE(2062)] = 65706, - [SMALL_STATE(2063)] = 65713, - [SMALL_STATE(2064)] = 65720, - [SMALL_STATE(2065)] = 65727, - [SMALL_STATE(2066)] = 65734, - [SMALL_STATE(2067)] = 65741, - [SMALL_STATE(2068)] = 65748, - [SMALL_STATE(2069)] = 65755, - [SMALL_STATE(2070)] = 65762, - [SMALL_STATE(2071)] = 65769, - [SMALL_STATE(2072)] = 65776, - [SMALL_STATE(2073)] = 65783, - [SMALL_STATE(2074)] = 65790, - [SMALL_STATE(2075)] = 65797, - [SMALL_STATE(2076)] = 65804, - [SMALL_STATE(2077)] = 65811, - [SMALL_STATE(2078)] = 65818, - [SMALL_STATE(2079)] = 65825, - [SMALL_STATE(2080)] = 65832, - [SMALL_STATE(2081)] = 65839, - [SMALL_STATE(2082)] = 65846, - [SMALL_STATE(2083)] = 65853, - [SMALL_STATE(2084)] = 65860, - [SMALL_STATE(2085)] = 65867, - [SMALL_STATE(2086)] = 65874, - [SMALL_STATE(2087)] = 65881, - [SMALL_STATE(2088)] = 65888, - [SMALL_STATE(2089)] = 65895, - [SMALL_STATE(2090)] = 65902, - [SMALL_STATE(2091)] = 65909, - [SMALL_STATE(2092)] = 65916, - [SMALL_STATE(2093)] = 65923, - [SMALL_STATE(2094)] = 65930, - [SMALL_STATE(2095)] = 65937, - [SMALL_STATE(2096)] = 65944, - [SMALL_STATE(2097)] = 65951, - [SMALL_STATE(2098)] = 65958, - [SMALL_STATE(2099)] = 65965, - [SMALL_STATE(2100)] = 65972, - [SMALL_STATE(2101)] = 65979, - [SMALL_STATE(2102)] = 65986, - [SMALL_STATE(2103)] = 65993, - [SMALL_STATE(2104)] = 66000, - [SMALL_STATE(2105)] = 66007, - [SMALL_STATE(2106)] = 66014, - [SMALL_STATE(2107)] = 66021, - [SMALL_STATE(2108)] = 66028, - [SMALL_STATE(2109)] = 66035, - [SMALL_STATE(2110)] = 66042, - [SMALL_STATE(2111)] = 66049, - [SMALL_STATE(2112)] = 66056, - [SMALL_STATE(2113)] = 66063, - [SMALL_STATE(2114)] = 66070, - [SMALL_STATE(2115)] = 66077, - [SMALL_STATE(2116)] = 66084, - [SMALL_STATE(2117)] = 66091, - [SMALL_STATE(2118)] = 66098, - [SMALL_STATE(2119)] = 66105, - [SMALL_STATE(2120)] = 66112, - [SMALL_STATE(2121)] = 66119, - [SMALL_STATE(2122)] = 66126, - [SMALL_STATE(2123)] = 66133, - [SMALL_STATE(2124)] = 66140, - [SMALL_STATE(2125)] = 66147, - [SMALL_STATE(2126)] = 66154, - [SMALL_STATE(2127)] = 66161, - [SMALL_STATE(2128)] = 66168, - [SMALL_STATE(2129)] = 66175, - [SMALL_STATE(2130)] = 66182, - [SMALL_STATE(2131)] = 66189, - [SMALL_STATE(2132)] = 66196, - [SMALL_STATE(2133)] = 66203, - [SMALL_STATE(2134)] = 66210, - [SMALL_STATE(2135)] = 66217, - [SMALL_STATE(2136)] = 66224, - [SMALL_STATE(2137)] = 66231, - [SMALL_STATE(2138)] = 66238, - [SMALL_STATE(2139)] = 66245, - [SMALL_STATE(2140)] = 66252, - [SMALL_STATE(2141)] = 66259, + [SMALL_STATE(493)] = 0, + [SMALL_STATE(494)] = 73, + [SMALL_STATE(495)] = 146, + [SMALL_STATE(496)] = 217, + [SMALL_STATE(497)] = 290, + [SMALL_STATE(498)] = 361, + [SMALL_STATE(499)] = 436, + [SMALL_STATE(500)] = 509, + [SMALL_STATE(501)] = 584, + [SMALL_STATE(502)] = 657, + [SMALL_STATE(503)] = 790, + [SMALL_STATE(504)] = 863, + [SMALL_STATE(505)] = 993, + [SMALL_STATE(506)] = 1123, + [SMALL_STATE(507)] = 1253, + [SMALL_STATE(508)] = 1383, + [SMALL_STATE(509)] = 1457, + [SMALL_STATE(510)] = 1529, + [SMALL_STATE(511)] = 1599, + [SMALL_STATE(512)] = 1729, + [SMALL_STATE(513)] = 1801, + [SMALL_STATE(514)] = 1875, + [SMALL_STATE(515)] = 1945, + [SMALL_STATE(516)] = 2072, + [SMALL_STATE(517)] = 2199, + [SMALL_STATE(518)] = 2324, + [SMALL_STATE(519)] = 2449, + [SMALL_STATE(520)] = 2574, + [SMALL_STATE(521)] = 2645, + [SMALL_STATE(522)] = 2716, + [SMALL_STATE(523)] = 2843, + [SMALL_STATE(524)] = 2968, + [SMALL_STATE(525)] = 3095, + [SMALL_STATE(526)] = 3222, + [SMALL_STATE(527)] = 3349, + [SMALL_STATE(528)] = 3474, + [SMALL_STATE(529)] = 3599, + [SMALL_STATE(530)] = 3724, + [SMALL_STATE(531)] = 3849, + [SMALL_STATE(532)] = 3971, + [SMALL_STATE(533)] = 4093, + [SMALL_STATE(534)] = 4159, + [SMALL_STATE(535)] = 4283, + [SMALL_STATE(536)] = 4407, + [SMALL_STATE(537)] = 4531, + [SMALL_STATE(538)] = 4655, + [SMALL_STATE(539)] = 4723, + [SMALL_STATE(540)] = 4847, + [SMALL_STATE(541)] = 4919, + [SMALL_STATE(542)] = 4991, + [SMALL_STATE(543)] = 5062, + [SMALL_STATE(544)] = 5183, + [SMALL_STATE(545)] = 5254, + [SMALL_STATE(546)] = 5375, + [SMALL_STATE(547)] = 5496, + [SMALL_STATE(548)] = 5617, + [SMALL_STATE(549)] = 5734, + [SMALL_STATE(550)] = 5851, + [SMALL_STATE(551)] = 5968, + [SMALL_STATE(552)] = 6089, + [SMALL_STATE(553)] = 6160, + [SMALL_STATE(554)] = 6281, + [SMALL_STATE(555)] = 6352, + [SMALL_STATE(556)] = 6423, + [SMALL_STATE(557)] = 6494, + [SMALL_STATE(558)] = 6611, + [SMALL_STATE(559)] = 6719, + [SMALL_STATE(560)] = 6789, + [SMALL_STATE(561)] = 6907, + [SMALL_STATE(562)] = 7025, + [SMALL_STATE(563)] = 7143, + [SMALL_STATE(564)] = 7261, + [SMALL_STATE(565)] = 7379, + [SMALL_STATE(566)] = 7449, + [SMALL_STATE(567)] = 7567, + [SMALL_STATE(568)] = 7637, + [SMALL_STATE(569)] = 7707, + [SMALL_STATE(570)] = 7825, + [SMALL_STATE(571)] = 7894, + [SMALL_STATE(572)] = 8009, + [SMALL_STATE(573)] = 8124, + [SMALL_STATE(574)] = 8239, + [SMALL_STATE(575)] = 8308, + [SMALL_STATE(576)] = 8423, + [SMALL_STATE(577)] = 8538, + [SMALL_STATE(578)] = 8643, + [SMALL_STATE(579)] = 8758, + [SMALL_STATE(580)] = 8870, + [SMALL_STATE(581)] = 8982, + [SMALL_STATE(582)] = 9094, + [SMALL_STATE(583)] = 9162, + [SMALL_STATE(584)] = 9264, + [SMALL_STATE(585)] = 9376, + [SMALL_STATE(586)] = 9488, + [SMALL_STATE(587)] = 9590, + [SMALL_STATE(588)] = 9658, + [SMALL_STATE(589)] = 9770, + [SMALL_STATE(590)] = 9872, + [SMALL_STATE(591)] = 9974, + [SMALL_STATE(592)] = 10083, + [SMALL_STATE(593)] = 10192, + [SMALL_STATE(594)] = 10301, + [SMALL_STATE(595)] = 10410, + [SMALL_STATE(596)] = 10519, + [SMALL_STATE(597)] = 10628, + [SMALL_STATE(598)] = 10737, + [SMALL_STATE(599)] = 10846, + [SMALL_STATE(600)] = 10955, + [SMALL_STATE(601)] = 11064, + [SMALL_STATE(602)] = 11173, + [SMALL_STATE(603)] = 11282, + [SMALL_STATE(604)] = 11391, + [SMALL_STATE(605)] = 11500, + [SMALL_STATE(606)] = 11609, + [SMALL_STATE(607)] = 11718, + [SMALL_STATE(608)] = 11827, + [SMALL_STATE(609)] = 11936, + [SMALL_STATE(610)] = 12045, + [SMALL_STATE(611)] = 12154, + [SMALL_STATE(612)] = 12263, + [SMALL_STATE(613)] = 12372, + [SMALL_STATE(614)] = 12481, + [SMALL_STATE(615)] = 12590, + [SMALL_STATE(616)] = 12699, + [SMALL_STATE(617)] = 12808, + [SMALL_STATE(618)] = 12917, + [SMALL_STATE(619)] = 13026, + [SMALL_STATE(620)] = 13135, + [SMALL_STATE(621)] = 13244, + [SMALL_STATE(622)] = 13353, + [SMALL_STATE(623)] = 13462, + [SMALL_STATE(624)] = 13571, + [SMALL_STATE(625)] = 13680, + [SMALL_STATE(626)] = 13789, + [SMALL_STATE(627)] = 13898, + [SMALL_STATE(628)] = 14007, + [SMALL_STATE(629)] = 14116, + [SMALL_STATE(630)] = 14225, + [SMALL_STATE(631)] = 14334, + [SMALL_STATE(632)] = 14443, + [SMALL_STATE(633)] = 14552, + [SMALL_STATE(634)] = 14661, + [SMALL_STATE(635)] = 14770, + [SMALL_STATE(636)] = 14879, + [SMALL_STATE(637)] = 14988, + [SMALL_STATE(638)] = 15097, + [SMALL_STATE(639)] = 15206, + [SMALL_STATE(640)] = 15315, + [SMALL_STATE(641)] = 15424, + [SMALL_STATE(642)] = 15533, + [SMALL_STATE(643)] = 15642, + [SMALL_STATE(644)] = 15751, + [SMALL_STATE(645)] = 15860, + [SMALL_STATE(646)] = 15969, + [SMALL_STATE(647)] = 16078, + [SMALL_STATE(648)] = 16187, + [SMALL_STATE(649)] = 16296, + [SMALL_STATE(650)] = 16405, + [SMALL_STATE(651)] = 16514, + [SMALL_STATE(652)] = 16623, + [SMALL_STATE(653)] = 16732, + [SMALL_STATE(654)] = 16841, + [SMALL_STATE(655)] = 16950, + [SMALL_STATE(656)] = 17059, + [SMALL_STATE(657)] = 17168, + [SMALL_STATE(658)] = 17277, + [SMALL_STATE(659)] = 17386, + [SMALL_STATE(660)] = 17495, + [SMALL_STATE(661)] = 17604, + [SMALL_STATE(662)] = 17713, + [SMALL_STATE(663)] = 17822, + [SMALL_STATE(664)] = 17931, + [SMALL_STATE(665)] = 18040, + [SMALL_STATE(666)] = 18149, + [SMALL_STATE(667)] = 18258, + [SMALL_STATE(668)] = 18367, + [SMALL_STATE(669)] = 18476, + [SMALL_STATE(670)] = 18585, + [SMALL_STATE(671)] = 18694, + [SMALL_STATE(672)] = 18803, + [SMALL_STATE(673)] = 18912, + [SMALL_STATE(674)] = 19021, + [SMALL_STATE(675)] = 19122, + [SMALL_STATE(676)] = 19223, + [SMALL_STATE(677)] = 19324, + [SMALL_STATE(678)] = 19425, + [SMALL_STATE(679)] = 19526, + [SMALL_STATE(680)] = 19627, + [SMALL_STATE(681)] = 19728, + [SMALL_STATE(682)] = 19829, + [SMALL_STATE(683)] = 19930, + [SMALL_STATE(684)] = 20031, + [SMALL_STATE(685)] = 20088, + [SMALL_STATE(686)] = 20189, + [SMALL_STATE(687)] = 20252, + [SMALL_STATE(688)] = 20353, + [SMALL_STATE(689)] = 20454, + [SMALL_STATE(690)] = 20555, + [SMALL_STATE(691)] = 20656, + [SMALL_STATE(692)] = 20757, + [SMALL_STATE(693)] = 20814, + [SMALL_STATE(694)] = 20915, + [SMALL_STATE(695)] = 21016, + [SMALL_STATE(696)] = 21117, + [SMALL_STATE(697)] = 21218, + [SMALL_STATE(698)] = 21281, + [SMALL_STATE(699)] = 21343, + [SMALL_STATE(700)] = 21399, + [SMALL_STATE(701)] = 21455, + [SMALL_STATE(702)] = 21517, + [SMALL_STATE(703)] = 21607, + [SMALL_STATE(704)] = 21701, + [SMALL_STATE(705)] = 21795, + [SMALL_STATE(706)] = 21885, + [SMALL_STATE(707)] = 21975, + [SMALL_STATE(708)] = 22069, + [SMALL_STATE(709)] = 22163, + [SMALL_STATE(710)] = 22257, + [SMALL_STATE(711)] = 22351, + [SMALL_STATE(712)] = 22441, + [SMALL_STATE(713)] = 22518, + [SMALL_STATE(714)] = 22577, + [SMALL_STATE(715)] = 22636, + [SMALL_STATE(716)] = 22723, + [SMALL_STATE(717)] = 22800, + [SMALL_STATE(718)] = 22853, + [SMALL_STATE(719)] = 22932, + [SMALL_STATE(720)] = 22991, + [SMALL_STATE(721)] = 23070, + [SMALL_STATE(722)] = 23129, + [SMALL_STATE(723)] = 23216, + [SMALL_STATE(724)] = 23292, + [SMALL_STATE(725)] = 23366, + [SMALL_STATE(726)] = 23424, + [SMALL_STATE(727)] = 23498, + [SMALL_STATE(728)] = 23574, + [SMALL_STATE(729)] = 23632, + [SMALL_STATE(730)] = 23690, + [SMALL_STATE(731)] = 23748, + [SMALL_STATE(732)] = 23826, + [SMALL_STATE(733)] = 23902, + [SMALL_STATE(734)] = 23980, + [SMALL_STATE(735)] = 24056, + [SMALL_STATE(736)] = 24131, + [SMALL_STATE(737)] = 24182, + [SMALL_STATE(738)] = 24235, + [SMALL_STATE(739)] = 24308, + [SMALL_STATE(740)] = 24361, + [SMALL_STATE(741)] = 24434, + [SMALL_STATE(742)] = 24509, + [SMALL_STATE(743)] = 24560, + [SMALL_STATE(744)] = 24610, + [SMALL_STATE(745)] = 24660, + [SMALL_STATE(746)] = 24710, + [SMALL_STATE(747)] = 24760, + [SMALL_STATE(748)] = 24810, + [SMALL_STATE(749)] = 24860, + [SMALL_STATE(750)] = 24910, + [SMALL_STATE(751)] = 24960, + [SMALL_STATE(752)] = 25010, + [SMALL_STATE(753)] = 25060, + [SMALL_STATE(754)] = 25112, + [SMALL_STATE(755)] = 25172, + [SMALL_STATE(756)] = 25222, + [SMALL_STATE(757)] = 25272, + [SMALL_STATE(758)] = 25322, + [SMALL_STATE(759)] = 25374, + [SMALL_STATE(760)] = 25434, + [SMALL_STATE(761)] = 25484, + [SMALL_STATE(762)] = 25534, + [SMALL_STATE(763)] = 25584, + [SMALL_STATE(764)] = 25634, + [SMALL_STATE(765)] = 25684, + [SMALL_STATE(766)] = 25734, + [SMALL_STATE(767)] = 25784, + [SMALL_STATE(768)] = 25834, + [SMALL_STATE(769)] = 25884, + [SMALL_STATE(770)] = 25934, + [SMALL_STATE(771)] = 25984, + [SMALL_STATE(772)] = 26034, + [SMALL_STATE(773)] = 26084, + [SMALL_STATE(774)] = 26134, + [SMALL_STATE(775)] = 26184, + [SMALL_STATE(776)] = 26234, + [SMALL_STATE(777)] = 26284, + [SMALL_STATE(778)] = 26334, + [SMALL_STATE(779)] = 26384, + [SMALL_STATE(780)] = 26434, + [SMALL_STATE(781)] = 26484, + [SMALL_STATE(782)] = 26534, + [SMALL_STATE(783)] = 26584, + [SMALL_STATE(784)] = 26634, + [SMALL_STATE(785)] = 26684, + [SMALL_STATE(786)] = 26752, + [SMALL_STATE(787)] = 26802, + [SMALL_STATE(788)] = 26854, + [SMALL_STATE(789)] = 26904, + [SMALL_STATE(790)] = 26954, + [SMALL_STATE(791)] = 27004, + [SMALL_STATE(792)] = 27054, + [SMALL_STATE(793)] = 27104, + [SMALL_STATE(794)] = 27154, + [SMALL_STATE(795)] = 27204, + [SMALL_STATE(796)] = 27254, + [SMALL_STATE(797)] = 27304, + [SMALL_STATE(798)] = 27354, + [SMALL_STATE(799)] = 27434, + [SMALL_STATE(800)] = 27484, + [SMALL_STATE(801)] = 27534, + [SMALL_STATE(802)] = 27584, + [SMALL_STATE(803)] = 27634, + [SMALL_STATE(804)] = 27684, + [SMALL_STATE(805)] = 27734, + [SMALL_STATE(806)] = 27784, + [SMALL_STATE(807)] = 27834, + [SMALL_STATE(808)] = 27886, + [SMALL_STATE(809)] = 27938, + [SMALL_STATE(810)] = 27988, + [SMALL_STATE(811)] = 28038, + [SMALL_STATE(812)] = 28088, + [SMALL_STATE(813)] = 28138, + [SMALL_STATE(814)] = 28188, + [SMALL_STATE(815)] = 28238, + [SMALL_STATE(816)] = 28288, + [SMALL_STATE(817)] = 28338, + [SMALL_STATE(818)] = 28388, + [SMALL_STATE(819)] = 28456, + [SMALL_STATE(820)] = 28508, + [SMALL_STATE(821)] = 28558, + [SMALL_STATE(822)] = 28608, + [SMALL_STATE(823)] = 28657, + [SMALL_STATE(824)] = 28706, + [SMALL_STATE(825)] = 28755, + [SMALL_STATE(826)] = 28804, + [SMALL_STATE(827)] = 28853, + [SMALL_STATE(828)] = 28902, + [SMALL_STATE(829)] = 28951, + [SMALL_STATE(830)] = 29000, + [SMALL_STATE(831)] = 29049, + [SMALL_STATE(832)] = 29098, + [SMALL_STATE(833)] = 29147, + [SMALL_STATE(834)] = 29196, + [SMALL_STATE(835)] = 29245, + [SMALL_STATE(836)] = 29294, + [SMALL_STATE(837)] = 29343, + [SMALL_STATE(838)] = 29392, + [SMALL_STATE(839)] = 29441, + [SMALL_STATE(840)] = 29490, + [SMALL_STATE(841)] = 29549, + [SMALL_STATE(842)] = 29598, + [SMALL_STATE(843)] = 29647, + [SMALL_STATE(844)] = 29696, + [SMALL_STATE(845)] = 29745, + [SMALL_STATE(846)] = 29804, + [SMALL_STATE(847)] = 29853, + [SMALL_STATE(848)] = 29902, + [SMALL_STATE(849)] = 29951, + [SMALL_STATE(850)] = 30000, + [SMALL_STATE(851)] = 30049, + [SMALL_STATE(852)] = 30098, + [SMALL_STATE(853)] = 30147, + [SMALL_STATE(854)] = 30206, + [SMALL_STATE(855)] = 30255, + [SMALL_STATE(856)] = 30304, + [SMALL_STATE(857)] = 30353, + [SMALL_STATE(858)] = 30402, + [SMALL_STATE(859)] = 30451, + [SMALL_STATE(860)] = 30500, + [SMALL_STATE(861)] = 30549, + [SMALL_STATE(862)] = 30598, + [SMALL_STATE(863)] = 30647, + [SMALL_STATE(864)] = 30696, + [SMALL_STATE(865)] = 30745, + [SMALL_STATE(866)] = 30794, + [SMALL_STATE(867)] = 30843, + [SMALL_STATE(868)] = 30892, + [SMALL_STATE(869)] = 30941, + [SMALL_STATE(870)] = 30990, + [SMALL_STATE(871)] = 31039, + [SMALL_STATE(872)] = 31088, + [SMALL_STATE(873)] = 31137, + [SMALL_STATE(874)] = 31190, + [SMALL_STATE(875)] = 31239, + [SMALL_STATE(876)] = 31298, + [SMALL_STATE(877)] = 31347, + [SMALL_STATE(878)] = 31396, + [SMALL_STATE(879)] = 31445, + [SMALL_STATE(880)] = 31504, + [SMALL_STATE(881)] = 31553, + [SMALL_STATE(882)] = 31602, + [SMALL_STATE(883)] = 31651, + [SMALL_STATE(884)] = 31700, + [SMALL_STATE(885)] = 31749, + [SMALL_STATE(886)] = 31798, + [SMALL_STATE(887)] = 31847, + [SMALL_STATE(888)] = 31906, + [SMALL_STATE(889)] = 31959, + [SMALL_STATE(890)] = 32008, + [SMALL_STATE(891)] = 32057, + [SMALL_STATE(892)] = 32106, + [SMALL_STATE(893)] = 32155, + [SMALL_STATE(894)] = 32204, + [SMALL_STATE(895)] = 32253, + [SMALL_STATE(896)] = 32302, + [SMALL_STATE(897)] = 32351, + [SMALL_STATE(898)] = 32400, + [SMALL_STATE(899)] = 32452, + [SMALL_STATE(900)] = 32508, + [SMALL_STATE(901)] = 32564, + [SMALL_STATE(902)] = 32618, + [SMALL_STATE(903)] = 32666, + [SMALL_STATE(904)] = 32724, + [SMALL_STATE(905)] = 32780, + [SMALL_STATE(906)] = 32834, + [SMALL_STATE(907)] = 32888, + [SMALL_STATE(908)] = 32940, + [SMALL_STATE(909)] = 32998, + [SMALL_STATE(910)] = 33056, + [SMALL_STATE(911)] = 33108, + [SMALL_STATE(912)] = 33166, + [SMALL_STATE(913)] = 33214, + [SMALL_STATE(914)] = 33264, + [SMALL_STATE(915)] = 33311, + [SMALL_STATE(916)] = 33358, + [SMALL_STATE(917)] = 33405, + [SMALL_STATE(918)] = 33452, + [SMALL_STATE(919)] = 33499, + [SMALL_STATE(920)] = 33554, + [SMALL_STATE(921)] = 33601, + [SMALL_STATE(922)] = 33648, + [SMALL_STATE(923)] = 33695, + [SMALL_STATE(924)] = 33742, + [SMALL_STATE(925)] = 33789, + [SMALL_STATE(926)] = 33836, + [SMALL_STATE(927)] = 33883, + [SMALL_STATE(928)] = 33930, + [SMALL_STATE(929)] = 33977, + [SMALL_STATE(930)] = 34024, + [SMALL_STATE(931)] = 34071, + [SMALL_STATE(932)] = 34124, + [SMALL_STATE(933)] = 34177, + [SMALL_STATE(934)] = 34224, + [SMALL_STATE(935)] = 34271, + [SMALL_STATE(936)] = 34318, + [SMALL_STATE(937)] = 34365, + [SMALL_STATE(938)] = 34412, + [SMALL_STATE(939)] = 34459, + [SMALL_STATE(940)] = 34506, + [SMALL_STATE(941)] = 34561, + [SMALL_STATE(942)] = 34608, + [SMALL_STATE(943)] = 34655, + [SMALL_STATE(944)] = 34702, + [SMALL_STATE(945)] = 34749, + [SMALL_STATE(946)] = 34802, + [SMALL_STATE(947)] = 34849, + [SMALL_STATE(948)] = 34896, + [SMALL_STATE(949)] = 34951, + [SMALL_STATE(950)] = 34998, + [SMALL_STATE(951)] = 35045, + [SMALL_STATE(952)] = 35092, + [SMALL_STATE(953)] = 35139, + [SMALL_STATE(954)] = 35188, + [SMALL_STATE(955)] = 35235, + [SMALL_STATE(956)] = 35282, + [SMALL_STATE(957)] = 35329, + [SMALL_STATE(958)] = 35376, + [SMALL_STATE(959)] = 35423, + [SMALL_STATE(960)] = 35472, + [SMALL_STATE(961)] = 35519, + [SMALL_STATE(962)] = 35565, + [SMALL_STATE(963)] = 35611, + [SMALL_STATE(964)] = 35657, + [SMALL_STATE(965)] = 35707, + [SMALL_STATE(966)] = 35753, + [SMALL_STATE(967)] = 35799, + [SMALL_STATE(968)] = 35845, + [SMALL_STATE(969)] = 35893, + [SMALL_STATE(970)] = 35938, + [SMALL_STATE(971)] = 35987, + [SMALL_STATE(972)] = 36036, + [SMALL_STATE(973)] = 36081, + [SMALL_STATE(974)] = 36126, + [SMALL_STATE(975)] = 36171, + [SMALL_STATE(976)] = 36216, + [SMALL_STATE(977)] = 36265, + [SMALL_STATE(978)] = 36310, + [SMALL_STATE(979)] = 36355, + [SMALL_STATE(980)] = 36400, + [SMALL_STATE(981)] = 36445, + [SMALL_STATE(982)] = 36494, + [SMALL_STATE(983)] = 36539, + [SMALL_STATE(984)] = 36584, + [SMALL_STATE(985)] = 36629, + [SMALL_STATE(986)] = 36674, + [SMALL_STATE(987)] = 36719, + [SMALL_STATE(988)] = 36764, + [SMALL_STATE(989)] = 36809, + [SMALL_STATE(990)] = 36854, + [SMALL_STATE(991)] = 36899, + [SMALL_STATE(992)] = 36944, + [SMALL_STATE(993)] = 36989, + [SMALL_STATE(994)] = 37034, + [SMALL_STATE(995)] = 37079, + [SMALL_STATE(996)] = 37124, + [SMALL_STATE(997)] = 37169, + [SMALL_STATE(998)] = 37214, + [SMALL_STATE(999)] = 37259, + [SMALL_STATE(1000)] = 37304, + [SMALL_STATE(1001)] = 37361, + [SMALL_STATE(1002)] = 37418, + [SMALL_STATE(1003)] = 37463, + [SMALL_STATE(1004)] = 37508, + [SMALL_STATE(1005)] = 37557, + [SMALL_STATE(1006)] = 37602, + [SMALL_STATE(1007)] = 37647, + [SMALL_STATE(1008)] = 37692, + [SMALL_STATE(1009)] = 37737, + [SMALL_STATE(1010)] = 37782, + [SMALL_STATE(1011)] = 37831, + [SMALL_STATE(1012)] = 37875, + [SMALL_STATE(1013)] = 37923, + [SMALL_STATE(1014)] = 37967, + [SMALL_STATE(1015)] = 38011, + [SMALL_STATE(1016)] = 38059, + [SMALL_STATE(1017)] = 38107, + [SMALL_STATE(1018)] = 38151, + [SMALL_STATE(1019)] = 38199, + [SMALL_STATE(1020)] = 38247, + [SMALL_STATE(1021)] = 38295, + [SMALL_STATE(1022)] = 38339, + [SMALL_STATE(1023)] = 38383, + [SMALL_STATE(1024)] = 38427, + [SMALL_STATE(1025)] = 38471, + [SMALL_STATE(1026)] = 38515, + [SMALL_STATE(1027)] = 38563, + [SMALL_STATE(1028)] = 38607, + [SMALL_STATE(1029)] = 38651, + [SMALL_STATE(1030)] = 38695, + [SMALL_STATE(1031)] = 38743, + [SMALL_STATE(1032)] = 38799, + [SMALL_STATE(1033)] = 38843, + [SMALL_STATE(1034)] = 38887, + [SMALL_STATE(1035)] = 38943, + [SMALL_STATE(1036)] = 38990, + [SMALL_STATE(1037)] = 39037, + [SMALL_STATE(1038)] = 39080, + [SMALL_STATE(1039)] = 39135, + [SMALL_STATE(1040)] = 39182, + [SMALL_STATE(1041)] = 39225, + [SMALL_STATE(1042)] = 39268, + [SMALL_STATE(1043)] = 39311, + [SMALL_STATE(1044)] = 39354, + [SMALL_STATE(1045)] = 39397, + [SMALL_STATE(1046)] = 39440, + [SMALL_STATE(1047)] = 39483, + [SMALL_STATE(1048)] = 39526, + [SMALL_STATE(1049)] = 39569, + [SMALL_STATE(1050)] = 39624, + [SMALL_STATE(1051)] = 39671, + [SMALL_STATE(1052)] = 39714, + [SMALL_STATE(1053)] = 39757, + [SMALL_STATE(1054)] = 39800, + [SMALL_STATE(1055)] = 39843, + [SMALL_STATE(1056)] = 39886, + [SMALL_STATE(1057)] = 39929, + [SMALL_STATE(1058)] = 39972, + [SMALL_STATE(1059)] = 40015, + [SMALL_STATE(1060)] = 40058, + [SMALL_STATE(1061)] = 40101, + [SMALL_STATE(1062)] = 40144, + [SMALL_STATE(1063)] = 40187, + [SMALL_STATE(1064)] = 40230, + [SMALL_STATE(1065)] = 40273, + [SMALL_STATE(1066)] = 40316, + [SMALL_STATE(1067)] = 40359, + [SMALL_STATE(1068)] = 40402, + [SMALL_STATE(1069)] = 40445, + [SMALL_STATE(1070)] = 40488, + [SMALL_STATE(1071)] = 40531, + [SMALL_STATE(1072)] = 40574, + [SMALL_STATE(1073)] = 40617, + [SMALL_STATE(1074)] = 40660, + [SMALL_STATE(1075)] = 40703, + [SMALL_STATE(1076)] = 40746, + [SMALL_STATE(1077)] = 40788, + [SMALL_STATE(1078)] = 40830, + [SMALL_STATE(1079)] = 40872, + [SMALL_STATE(1080)] = 40918, + [SMALL_STATE(1081)] = 40960, + [SMALL_STATE(1082)] = 41002, + [SMALL_STATE(1083)] = 41044, + [SMALL_STATE(1084)] = 41086, + [SMALL_STATE(1085)] = 41128, + [SMALL_STATE(1086)] = 41170, + [SMALL_STATE(1087)] = 41212, + [SMALL_STATE(1088)] = 41254, + [SMALL_STATE(1089)] = 41296, + [SMALL_STATE(1090)] = 41342, + [SMALL_STATE(1091)] = 41384, + [SMALL_STATE(1092)] = 41426, + [SMALL_STATE(1093)] = 41468, + [SMALL_STATE(1094)] = 41510, + [SMALL_STATE(1095)] = 41552, + [SMALL_STATE(1096)] = 41594, + [SMALL_STATE(1097)] = 41636, + [SMALL_STATE(1098)] = 41682, + [SMALL_STATE(1099)] = 41724, + [SMALL_STATE(1100)] = 41766, + [SMALL_STATE(1101)] = 41817, + [SMALL_STATE(1102)] = 41868, + [SMALL_STATE(1103)] = 41919, + [SMALL_STATE(1104)] = 41970, + [SMALL_STATE(1105)] = 42008, + [SMALL_STATE(1106)] = 42051, + [SMALL_STATE(1107)] = 42094, + [SMALL_STATE(1108)] = 42137, + [SMALL_STATE(1109)] = 42180, + [SMALL_STATE(1110)] = 42223, + [SMALL_STATE(1111)] = 42266, + [SMALL_STATE(1112)] = 42304, + [SMALL_STATE(1113)] = 42342, + [SMALL_STATE(1114)] = 42379, + [SMALL_STATE(1115)] = 42416, + [SMALL_STATE(1116)] = 42453, + [SMALL_STATE(1117)] = 42490, + [SMALL_STATE(1118)] = 42527, + [SMALL_STATE(1119)] = 42564, + [SMALL_STATE(1120)] = 42601, + [SMALL_STATE(1121)] = 42638, + [SMALL_STATE(1122)] = 42675, + [SMALL_STATE(1123)] = 42712, + [SMALL_STATE(1124)] = 42746, + [SMALL_STATE(1125)] = 42780, + [SMALL_STATE(1126)] = 42814, + [SMALL_STATE(1127)] = 42844, + [SMALL_STATE(1128)] = 42892, + [SMALL_STATE(1129)] = 42940, + [SMALL_STATE(1130)] = 42988, + [SMALL_STATE(1131)] = 43036, + [SMALL_STATE(1132)] = 43084, + [SMALL_STATE(1133)] = 43132, + [SMALL_STATE(1134)] = 43180, + [SMALL_STATE(1135)] = 43228, + [SMALL_STATE(1136)] = 43276, + [SMALL_STATE(1137)] = 43324, + [SMALL_STATE(1138)] = 43372, + [SMALL_STATE(1139)] = 43420, + [SMALL_STATE(1140)] = 43468, + [SMALL_STATE(1141)] = 43516, + [SMALL_STATE(1142)] = 43564, + [SMALL_STATE(1143)] = 43612, + [SMALL_STATE(1144)] = 43660, + [SMALL_STATE(1145)] = 43708, + [SMALL_STATE(1146)] = 43756, + [SMALL_STATE(1147)] = 43804, + [SMALL_STATE(1148)] = 43852, + [SMALL_STATE(1149)] = 43900, + [SMALL_STATE(1150)] = 43948, + [SMALL_STATE(1151)] = 43996, + [SMALL_STATE(1152)] = 44044, + [SMALL_STATE(1153)] = 44083, + [SMALL_STATE(1154)] = 44122, + [SMALL_STATE(1155)] = 44161, + [SMALL_STATE(1156)] = 44200, + [SMALL_STATE(1157)] = 44237, + [SMALL_STATE(1158)] = 44274, + [SMALL_STATE(1159)] = 44313, + [SMALL_STATE(1160)] = 44351, + [SMALL_STATE(1161)] = 44389, + [SMALL_STATE(1162)] = 44427, + [SMALL_STATE(1163)] = 44465, + [SMALL_STATE(1164)] = 44503, + [SMALL_STATE(1165)] = 44541, + [SMALL_STATE(1166)] = 44579, + [SMALL_STATE(1167)] = 44617, + [SMALL_STATE(1168)] = 44655, + [SMALL_STATE(1169)] = 44693, + [SMALL_STATE(1170)] = 44731, + [SMALL_STATE(1171)] = 44769, + [SMALL_STATE(1172)] = 44805, + [SMALL_STATE(1173)] = 44843, + [SMALL_STATE(1174)] = 44881, + [SMALL_STATE(1175)] = 44917, + [SMALL_STATE(1176)] = 44955, + [SMALL_STATE(1177)] = 44991, + [SMALL_STATE(1178)] = 45027, + [SMALL_STATE(1179)] = 45063, + [SMALL_STATE(1180)] = 45101, + [SMALL_STATE(1181)] = 45134, + [SMALL_STATE(1182)] = 45167, + [SMALL_STATE(1183)] = 45200, + [SMALL_STATE(1184)] = 45233, + [SMALL_STATE(1185)] = 45266, + [SMALL_STATE(1186)] = 45299, + [SMALL_STATE(1187)] = 45332, + [SMALL_STATE(1188)] = 45363, + [SMALL_STATE(1189)] = 45396, + [SMALL_STATE(1190)] = 45429, + [SMALL_STATE(1191)] = 45462, + [SMALL_STATE(1192)] = 45495, + [SMALL_STATE(1193)] = 45528, + [SMALL_STATE(1194)] = 45561, + [SMALL_STATE(1195)] = 45594, + [SMALL_STATE(1196)] = 45627, + [SMALL_STATE(1197)] = 45660, + [SMALL_STATE(1198)] = 45693, + [SMALL_STATE(1199)] = 45726, + [SMALL_STATE(1200)] = 45766, + [SMALL_STATE(1201)] = 45796, + [SMALL_STATE(1202)] = 45836, + [SMALL_STATE(1203)] = 45876, + [SMALL_STATE(1204)] = 45916, + [SMALL_STATE(1205)] = 45956, + [SMALL_STATE(1206)] = 45996, + [SMALL_STATE(1207)] = 46020, + [SMALL_STATE(1208)] = 46060, + [SMALL_STATE(1209)] = 46095, + [SMALL_STATE(1210)] = 46130, + [SMALL_STATE(1211)] = 46165, + [SMALL_STATE(1212)] = 46187, + [SMALL_STATE(1213)] = 46221, + [SMALL_STATE(1214)] = 46245, + [SMALL_STATE(1215)] = 46267, + [SMALL_STATE(1216)] = 46287, + [SMALL_STATE(1217)] = 46313, + [SMALL_STATE(1218)] = 46335, + [SMALL_STATE(1219)] = 46361, + [SMALL_STATE(1220)] = 46383, + [SMALL_STATE(1221)] = 46405, + [SMALL_STATE(1222)] = 46427, + [SMALL_STATE(1223)] = 46453, + [SMALL_STATE(1224)] = 46473, + [SMALL_STATE(1225)] = 46493, + [SMALL_STATE(1226)] = 46518, + [SMALL_STATE(1227)] = 46551, + [SMALL_STATE(1228)] = 46584, + [SMALL_STATE(1229)] = 46617, + [SMALL_STATE(1230)] = 46650, + [SMALL_STATE(1231)] = 46670, + [SMALL_STATE(1232)] = 46690, + [SMALL_STATE(1233)] = 46710, + [SMALL_STATE(1234)] = 46730, + [SMALL_STATE(1235)] = 46750, + [SMALL_STATE(1236)] = 46776, + [SMALL_STATE(1237)] = 46796, + [SMALL_STATE(1238)] = 46822, + [SMALL_STATE(1239)] = 46848, + [SMALL_STATE(1240)] = 46868, + [SMALL_STATE(1241)] = 46888, + [SMALL_STATE(1242)] = 46914, + [SMALL_STATE(1243)] = 46940, + [SMALL_STATE(1244)] = 46967, + [SMALL_STATE(1245)] = 46986, + [SMALL_STATE(1246)] = 47013, + [SMALL_STATE(1247)] = 47040, + [SMALL_STATE(1248)] = 47067, + [SMALL_STATE(1249)] = 47086, + [SMALL_STATE(1250)] = 47105, + [SMALL_STATE(1251)] = 47132, + [SMALL_STATE(1252)] = 47159, + [SMALL_STATE(1253)] = 47186, + [SMALL_STATE(1254)] = 47213, + [SMALL_STATE(1255)] = 47240, + [SMALL_STATE(1256)] = 47258, + [SMALL_STATE(1257)] = 47286, + [SMALL_STATE(1258)] = 47303, + [SMALL_STATE(1259)] = 47320, + [SMALL_STATE(1260)] = 47341, + [SMALL_STATE(1261)] = 47362, + [SMALL_STATE(1262)] = 47381, + [SMALL_STATE(1263)] = 47398, + [SMALL_STATE(1264)] = 47417, + [SMALL_STATE(1265)] = 47435, + [SMALL_STATE(1266)] = 47451, + [SMALL_STATE(1267)] = 47469, + [SMALL_STATE(1268)] = 47487, + [SMALL_STATE(1269)] = 47507, + [SMALL_STATE(1270)] = 47523, + [SMALL_STATE(1271)] = 47541, + [SMALL_STATE(1272)] = 47561, + [SMALL_STATE(1273)] = 47587, + [SMALL_STATE(1274)] = 47613, + [SMALL_STATE(1275)] = 47629, + [SMALL_STATE(1276)] = 47647, + [SMALL_STATE(1277)] = 47663, + [SMALL_STATE(1278)] = 47681, + [SMALL_STATE(1279)] = 47699, + [SMALL_STATE(1280)] = 47717, + [SMALL_STATE(1281)] = 47735, + [SMALL_STATE(1282)] = 47753, + [SMALL_STATE(1283)] = 47768, + [SMALL_STATE(1284)] = 47791, + [SMALL_STATE(1285)] = 47816, + [SMALL_STATE(1286)] = 47831, + [SMALL_STATE(1287)] = 47854, + [SMALL_STATE(1288)] = 47877, + [SMALL_STATE(1289)] = 47900, + [SMALL_STATE(1290)] = 47921, + [SMALL_STATE(1291)] = 47946, + [SMALL_STATE(1292)] = 47967, + [SMALL_STATE(1293)] = 47992, + [SMALL_STATE(1294)] = 48007, + [SMALL_STATE(1295)] = 48028, + [SMALL_STATE(1296)] = 48053, + [SMALL_STATE(1297)] = 48066, + [SMALL_STATE(1298)] = 48081, + [SMALL_STATE(1299)] = 48097, + [SMALL_STATE(1300)] = 48111, + [SMALL_STATE(1301)] = 48133, + [SMALL_STATE(1302)] = 48155, + [SMALL_STATE(1303)] = 48173, + [SMALL_STATE(1304)] = 48189, + [SMALL_STATE(1305)] = 48207, + [SMALL_STATE(1306)] = 48229, + [SMALL_STATE(1307)] = 48251, + [SMALL_STATE(1308)] = 48265, + [SMALL_STATE(1309)] = 48287, + [SMALL_STATE(1310)] = 48309, + [SMALL_STATE(1311)] = 48325, + [SMALL_STATE(1312)] = 48341, + [SMALL_STATE(1313)] = 48357, + [SMALL_STATE(1314)] = 48373, + [SMALL_STATE(1315)] = 48395, + [SMALL_STATE(1316)] = 48417, + [SMALL_STATE(1317)] = 48431, + [SMALL_STATE(1318)] = 48446, + [SMALL_STATE(1319)] = 48457, + [SMALL_STATE(1320)] = 48476, + [SMALL_STATE(1321)] = 48489, + [SMALL_STATE(1322)] = 48504, + [SMALL_STATE(1323)] = 48515, + [SMALL_STATE(1324)] = 48534, + [SMALL_STATE(1325)] = 48553, + [SMALL_STATE(1326)] = 48568, + [SMALL_STATE(1327)] = 48585, + [SMALL_STATE(1328)] = 48602, + [SMALL_STATE(1329)] = 48621, + [SMALL_STATE(1330)] = 48640, + [SMALL_STATE(1331)] = 48659, + [SMALL_STATE(1332)] = 48678, + [SMALL_STATE(1333)] = 48697, + [SMALL_STATE(1334)] = 48708, + [SMALL_STATE(1335)] = 48727, + [SMALL_STATE(1336)] = 48738, + [SMALL_STATE(1337)] = 48757, + [SMALL_STATE(1338)] = 48770, + [SMALL_STATE(1339)] = 48789, + [SMALL_STATE(1340)] = 48808, + [SMALL_STATE(1341)] = 48827, + [SMALL_STATE(1342)] = 48846, + [SMALL_STATE(1343)] = 48865, + [SMALL_STATE(1344)] = 48884, + [SMALL_STATE(1345)] = 48903, + [SMALL_STATE(1346)] = 48922, + [SMALL_STATE(1347)] = 48941, + [SMALL_STATE(1348)] = 48960, + [SMALL_STATE(1349)] = 48979, + [SMALL_STATE(1350)] = 48998, + [SMALL_STATE(1351)] = 49017, + [SMALL_STATE(1352)] = 49036, + [SMALL_STATE(1353)] = 49051, + [SMALL_STATE(1354)] = 49066, + [SMALL_STATE(1355)] = 49077, + [SMALL_STATE(1356)] = 49092, + [SMALL_STATE(1357)] = 49105, + [SMALL_STATE(1358)] = 49120, + [SMALL_STATE(1359)] = 49137, + [SMALL_STATE(1360)] = 49154, + [SMALL_STATE(1361)] = 49173, + [SMALL_STATE(1362)] = 49188, + [SMALL_STATE(1363)] = 49203, + [SMALL_STATE(1364)] = 49216, + [SMALL_STATE(1365)] = 49226, + [SMALL_STATE(1366)] = 49242, + [SMALL_STATE(1367)] = 49256, + [SMALL_STATE(1368)] = 49272, + [SMALL_STATE(1369)] = 49286, + [SMALL_STATE(1370)] = 49302, + [SMALL_STATE(1371)] = 49312, + [SMALL_STATE(1372)] = 49328, + [SMALL_STATE(1373)] = 49344, + [SMALL_STATE(1374)] = 49360, + [SMALL_STATE(1375)] = 49376, + [SMALL_STATE(1376)] = 49392, + [SMALL_STATE(1377)] = 49408, + [SMALL_STATE(1378)] = 49424, + [SMALL_STATE(1379)] = 49438, + [SMALL_STATE(1380)] = 49450, + [SMALL_STATE(1381)] = 49460, + [SMALL_STATE(1382)] = 49476, + [SMALL_STATE(1383)] = 49492, + [SMALL_STATE(1384)] = 49508, + [SMALL_STATE(1385)] = 49520, + [SMALL_STATE(1386)] = 49536, + [SMALL_STATE(1387)] = 49546, + [SMALL_STATE(1388)] = 49560, + [SMALL_STATE(1389)] = 49576, + [SMALL_STATE(1390)] = 49592, + [SMALL_STATE(1391)] = 49608, + [SMALL_STATE(1392)] = 49620, + [SMALL_STATE(1393)] = 49632, + [SMALL_STATE(1394)] = 49648, + [SMALL_STATE(1395)] = 49661, + [SMALL_STATE(1396)] = 49674, + [SMALL_STATE(1397)] = 49685, + [SMALL_STATE(1398)] = 49698, + [SMALL_STATE(1399)] = 49711, + [SMALL_STATE(1400)] = 49724, + [SMALL_STATE(1401)] = 49737, + [SMALL_STATE(1402)] = 49750, + [SMALL_STATE(1403)] = 49759, + [SMALL_STATE(1404)] = 49772, + [SMALL_STATE(1405)] = 49785, + [SMALL_STATE(1406)] = 49798, + [SMALL_STATE(1407)] = 49811, + [SMALL_STATE(1408)] = 49824, + [SMALL_STATE(1409)] = 49835, + [SMALL_STATE(1410)] = 49848, + [SMALL_STATE(1411)] = 49861, + [SMALL_STATE(1412)] = 49874, + [SMALL_STATE(1413)] = 49887, + [SMALL_STATE(1414)] = 49896, + [SMALL_STATE(1415)] = 49909, + [SMALL_STATE(1416)] = 49922, + [SMALL_STATE(1417)] = 49935, + [SMALL_STATE(1418)] = 49948, + [SMALL_STATE(1419)] = 49957, + [SMALL_STATE(1420)] = 49970, + [SMALL_STATE(1421)] = 49983, + [SMALL_STATE(1422)] = 49996, + [SMALL_STATE(1423)] = 50005, + [SMALL_STATE(1424)] = 50018, + [SMALL_STATE(1425)] = 50031, + [SMALL_STATE(1426)] = 50044, + [SMALL_STATE(1427)] = 50057, + [SMALL_STATE(1428)] = 50070, + [SMALL_STATE(1429)] = 50083, + [SMALL_STATE(1430)] = 50096, + [SMALL_STATE(1431)] = 50109, + [SMALL_STATE(1432)] = 50122, + [SMALL_STATE(1433)] = 50135, + [SMALL_STATE(1434)] = 50148, + [SMALL_STATE(1435)] = 50161, + [SMALL_STATE(1436)] = 50172, + [SMALL_STATE(1437)] = 50185, + [SMALL_STATE(1438)] = 50198, + [SMALL_STATE(1439)] = 50211, + [SMALL_STATE(1440)] = 50224, + [SMALL_STATE(1441)] = 50237, + [SMALL_STATE(1442)] = 50246, + [SMALL_STATE(1443)] = 50259, + [SMALL_STATE(1444)] = 50272, + [SMALL_STATE(1445)] = 50285, + [SMALL_STATE(1446)] = 50298, + [SMALL_STATE(1447)] = 50311, + [SMALL_STATE(1448)] = 50324, + [SMALL_STATE(1449)] = 50337, + [SMALL_STATE(1450)] = 50350, + [SMALL_STATE(1451)] = 50363, + [SMALL_STATE(1452)] = 50376, + [SMALL_STATE(1453)] = 50387, + [SMALL_STATE(1454)] = 50400, + [SMALL_STATE(1455)] = 50413, + [SMALL_STATE(1456)] = 50426, + [SMALL_STATE(1457)] = 50439, + [SMALL_STATE(1458)] = 50452, + [SMALL_STATE(1459)] = 50461, + [SMALL_STATE(1460)] = 50474, + [SMALL_STATE(1461)] = 50487, + [SMALL_STATE(1462)] = 50500, + [SMALL_STATE(1463)] = 50513, + [SMALL_STATE(1464)] = 50526, + [SMALL_STATE(1465)] = 50539, + [SMALL_STATE(1466)] = 50548, + [SMALL_STATE(1467)] = 50561, + [SMALL_STATE(1468)] = 50574, + [SMALL_STATE(1469)] = 50587, + [SMALL_STATE(1470)] = 50600, + [SMALL_STATE(1471)] = 50611, + [SMALL_STATE(1472)] = 50624, + [SMALL_STATE(1473)] = 50637, + [SMALL_STATE(1474)] = 50650, + [SMALL_STATE(1475)] = 50663, + [SMALL_STATE(1476)] = 50676, + [SMALL_STATE(1477)] = 50689, + [SMALL_STATE(1478)] = 50702, + [SMALL_STATE(1479)] = 50715, + [SMALL_STATE(1480)] = 50726, + [SMALL_STATE(1481)] = 50735, + [SMALL_STATE(1482)] = 50748, + [SMALL_STATE(1483)] = 50761, + [SMALL_STATE(1484)] = 50774, + [SMALL_STATE(1485)] = 50787, + [SMALL_STATE(1486)] = 50800, + [SMALL_STATE(1487)] = 50813, + [SMALL_STATE(1488)] = 50822, + [SMALL_STATE(1489)] = 50835, + [SMALL_STATE(1490)] = 50848, + [SMALL_STATE(1491)] = 50861, + [SMALL_STATE(1492)] = 50870, + [SMALL_STATE(1493)] = 50883, + [SMALL_STATE(1494)] = 50896, + [SMALL_STATE(1495)] = 50909, + [SMALL_STATE(1496)] = 50922, + [SMALL_STATE(1497)] = 50935, + [SMALL_STATE(1498)] = 50948, + [SMALL_STATE(1499)] = 50961, + [SMALL_STATE(1500)] = 50974, + [SMALL_STATE(1501)] = 50987, + [SMALL_STATE(1502)] = 50998, + [SMALL_STATE(1503)] = 51009, + [SMALL_STATE(1504)] = 51018, + [SMALL_STATE(1505)] = 51027, + [SMALL_STATE(1506)] = 51040, + [SMALL_STATE(1507)] = 51053, + [SMALL_STATE(1508)] = 51066, + [SMALL_STATE(1509)] = 51079, + [SMALL_STATE(1510)] = 51092, + [SMALL_STATE(1511)] = 51105, + [SMALL_STATE(1512)] = 51113, + [SMALL_STATE(1513)] = 51123, + [SMALL_STATE(1514)] = 51133, + [SMALL_STATE(1515)] = 51143, + [SMALL_STATE(1516)] = 51153, + [SMALL_STATE(1517)] = 51163, + [SMALL_STATE(1518)] = 51173, + [SMALL_STATE(1519)] = 51183, + [SMALL_STATE(1520)] = 51191, + [SMALL_STATE(1521)] = 51201, + [SMALL_STATE(1522)] = 51211, + [SMALL_STATE(1523)] = 51221, + [SMALL_STATE(1524)] = 51231, + [SMALL_STATE(1525)] = 51241, + [SMALL_STATE(1526)] = 51251, + [SMALL_STATE(1527)] = 51261, + [SMALL_STATE(1528)] = 51271, + [SMALL_STATE(1529)] = 51279, + [SMALL_STATE(1530)] = 51289, + [SMALL_STATE(1531)] = 51299, + [SMALL_STATE(1532)] = 51309, + [SMALL_STATE(1533)] = 51319, + [SMALL_STATE(1534)] = 51329, + [SMALL_STATE(1535)] = 51339, + [SMALL_STATE(1536)] = 51349, + [SMALL_STATE(1537)] = 51357, + [SMALL_STATE(1538)] = 51365, + [SMALL_STATE(1539)] = 51375, + [SMALL_STATE(1540)] = 51385, + [SMALL_STATE(1541)] = 51395, + [SMALL_STATE(1542)] = 51405, + [SMALL_STATE(1543)] = 51415, + [SMALL_STATE(1544)] = 51425, + [SMALL_STATE(1545)] = 51435, + [SMALL_STATE(1546)] = 51445, + [SMALL_STATE(1547)] = 51455, + [SMALL_STATE(1548)] = 51465, + [SMALL_STATE(1549)] = 51475, + [SMALL_STATE(1550)] = 51483, + [SMALL_STATE(1551)] = 51493, + [SMALL_STATE(1552)] = 51501, + [SMALL_STATE(1553)] = 51511, + [SMALL_STATE(1554)] = 51521, + [SMALL_STATE(1555)] = 51531, + [SMALL_STATE(1556)] = 51541, + [SMALL_STATE(1557)] = 51551, + [SMALL_STATE(1558)] = 51561, + [SMALL_STATE(1559)] = 51571, + [SMALL_STATE(1560)] = 51581, + [SMALL_STATE(1561)] = 51591, + [SMALL_STATE(1562)] = 51601, + [SMALL_STATE(1563)] = 51611, + [SMALL_STATE(1564)] = 51621, + [SMALL_STATE(1565)] = 51631, + [SMALL_STATE(1566)] = 51641, + [SMALL_STATE(1567)] = 51651, + [SMALL_STATE(1568)] = 51661, + [SMALL_STATE(1569)] = 51671, + [SMALL_STATE(1570)] = 51681, + [SMALL_STATE(1571)] = 51691, + [SMALL_STATE(1572)] = 51699, + [SMALL_STATE(1573)] = 51709, + [SMALL_STATE(1574)] = 51719, + [SMALL_STATE(1575)] = 51729, + [SMALL_STATE(1576)] = 51739, + [SMALL_STATE(1577)] = 51749, + [SMALL_STATE(1578)] = 51759, + [SMALL_STATE(1579)] = 51767, + [SMALL_STATE(1580)] = 51775, + [SMALL_STATE(1581)] = 51785, + [SMALL_STATE(1582)] = 51795, + [SMALL_STATE(1583)] = 51805, + [SMALL_STATE(1584)] = 51815, + [SMALL_STATE(1585)] = 51825, + [SMALL_STATE(1586)] = 51835, + [SMALL_STATE(1587)] = 51843, + [SMALL_STATE(1588)] = 51853, + [SMALL_STATE(1589)] = 51863, + [SMALL_STATE(1590)] = 51873, + [SMALL_STATE(1591)] = 51883, + [SMALL_STATE(1592)] = 51893, + [SMALL_STATE(1593)] = 51903, + [SMALL_STATE(1594)] = 51911, + [SMALL_STATE(1595)] = 51921, + [SMALL_STATE(1596)] = 51931, + [SMALL_STATE(1597)] = 51941, + [SMALL_STATE(1598)] = 51951, + [SMALL_STATE(1599)] = 51961, + [SMALL_STATE(1600)] = 51971, + [SMALL_STATE(1601)] = 51981, + [SMALL_STATE(1602)] = 51991, + [SMALL_STATE(1603)] = 52001, + [SMALL_STATE(1604)] = 52011, + [SMALL_STATE(1605)] = 52021, + [SMALL_STATE(1606)] = 52031, + [SMALL_STATE(1607)] = 52041, + [SMALL_STATE(1608)] = 52051, + [SMALL_STATE(1609)] = 52061, + [SMALL_STATE(1610)] = 52071, + [SMALL_STATE(1611)] = 52081, + [SMALL_STATE(1612)] = 52091, + [SMALL_STATE(1613)] = 52101, + [SMALL_STATE(1614)] = 52111, + [SMALL_STATE(1615)] = 52121, + [SMALL_STATE(1616)] = 52131, + [SMALL_STATE(1617)] = 52139, + [SMALL_STATE(1618)] = 52147, + [SMALL_STATE(1619)] = 52157, + [SMALL_STATE(1620)] = 52167, + [SMALL_STATE(1621)] = 52177, + [SMALL_STATE(1622)] = 52187, + [SMALL_STATE(1623)] = 52197, + [SMALL_STATE(1624)] = 52207, + [SMALL_STATE(1625)] = 52215, + [SMALL_STATE(1626)] = 52225, + [SMALL_STATE(1627)] = 52235, + [SMALL_STATE(1628)] = 52245, + [SMALL_STATE(1629)] = 52255, + [SMALL_STATE(1630)] = 52265, + [SMALL_STATE(1631)] = 52275, + [SMALL_STATE(1632)] = 52285, + [SMALL_STATE(1633)] = 52295, + [SMALL_STATE(1634)] = 52305, + [SMALL_STATE(1635)] = 52313, + [SMALL_STATE(1636)] = 52323, + [SMALL_STATE(1637)] = 52333, + [SMALL_STATE(1638)] = 52341, + [SMALL_STATE(1639)] = 52351, + [SMALL_STATE(1640)] = 52361, + [SMALL_STATE(1641)] = 52371, + [SMALL_STATE(1642)] = 52381, + [SMALL_STATE(1643)] = 52389, + [SMALL_STATE(1644)] = 52397, + [SMALL_STATE(1645)] = 52407, + [SMALL_STATE(1646)] = 52415, + [SMALL_STATE(1647)] = 52425, + [SMALL_STATE(1648)] = 52435, + [SMALL_STATE(1649)] = 52445, + [SMALL_STATE(1650)] = 52455, + [SMALL_STATE(1651)] = 52465, + [SMALL_STATE(1652)] = 52475, + [SMALL_STATE(1653)] = 52485, + [SMALL_STATE(1654)] = 52495, + [SMALL_STATE(1655)] = 52505, + [SMALL_STATE(1656)] = 52515, + [SMALL_STATE(1657)] = 52525, + [SMALL_STATE(1658)] = 52533, + [SMALL_STATE(1659)] = 52543, + [SMALL_STATE(1660)] = 52551, + [SMALL_STATE(1661)] = 52559, + [SMALL_STATE(1662)] = 52569, + [SMALL_STATE(1663)] = 52579, + [SMALL_STATE(1664)] = 52589, + [SMALL_STATE(1665)] = 52599, + [SMALL_STATE(1666)] = 52609, + [SMALL_STATE(1667)] = 52619, + [SMALL_STATE(1668)] = 52629, + [SMALL_STATE(1669)] = 52639, + [SMALL_STATE(1670)] = 52649, + [SMALL_STATE(1671)] = 52659, + [SMALL_STATE(1672)] = 52669, + [SMALL_STATE(1673)] = 52679, + [SMALL_STATE(1674)] = 52689, + [SMALL_STATE(1675)] = 52699, + [SMALL_STATE(1676)] = 52709, + [SMALL_STATE(1677)] = 52719, + [SMALL_STATE(1678)] = 52729, + [SMALL_STATE(1679)] = 52739, + [SMALL_STATE(1680)] = 52749, + [SMALL_STATE(1681)] = 52757, + [SMALL_STATE(1682)] = 52767, + [SMALL_STATE(1683)] = 52775, + [SMALL_STATE(1684)] = 52785, + [SMALL_STATE(1685)] = 52795, + [SMALL_STATE(1686)] = 52805, + [SMALL_STATE(1687)] = 52815, + [SMALL_STATE(1688)] = 52825, + [SMALL_STATE(1689)] = 52835, + [SMALL_STATE(1690)] = 52845, + [SMALL_STATE(1691)] = 52855, + [SMALL_STATE(1692)] = 52862, + [SMALL_STATE(1693)] = 52869, + [SMALL_STATE(1694)] = 52876, + [SMALL_STATE(1695)] = 52883, + [SMALL_STATE(1696)] = 52890, + [SMALL_STATE(1697)] = 52897, + [SMALL_STATE(1698)] = 52904, + [SMALL_STATE(1699)] = 52911, + [SMALL_STATE(1700)] = 52918, + [SMALL_STATE(1701)] = 52925, + [SMALL_STATE(1702)] = 52932, + [SMALL_STATE(1703)] = 52939, + [SMALL_STATE(1704)] = 52946, + [SMALL_STATE(1705)] = 52953, + [SMALL_STATE(1706)] = 52960, + [SMALL_STATE(1707)] = 52967, + [SMALL_STATE(1708)] = 52974, + [SMALL_STATE(1709)] = 52981, + [SMALL_STATE(1710)] = 52988, + [SMALL_STATE(1711)] = 52995, + [SMALL_STATE(1712)] = 53002, + [SMALL_STATE(1713)] = 53009, + [SMALL_STATE(1714)] = 53016, + [SMALL_STATE(1715)] = 53023, + [SMALL_STATE(1716)] = 53030, + [SMALL_STATE(1717)] = 53037, + [SMALL_STATE(1718)] = 53044, + [SMALL_STATE(1719)] = 53051, + [SMALL_STATE(1720)] = 53058, + [SMALL_STATE(1721)] = 53065, + [SMALL_STATE(1722)] = 53072, + [SMALL_STATE(1723)] = 53079, + [SMALL_STATE(1724)] = 53086, + [SMALL_STATE(1725)] = 53093, + [SMALL_STATE(1726)] = 53100, + [SMALL_STATE(1727)] = 53107, + [SMALL_STATE(1728)] = 53114, + [SMALL_STATE(1729)] = 53121, + [SMALL_STATE(1730)] = 53128, + [SMALL_STATE(1731)] = 53135, + [SMALL_STATE(1732)] = 53142, + [SMALL_STATE(1733)] = 53149, + [SMALL_STATE(1734)] = 53156, + [SMALL_STATE(1735)] = 53163, + [SMALL_STATE(1736)] = 53170, + [SMALL_STATE(1737)] = 53177, + [SMALL_STATE(1738)] = 53184, + [SMALL_STATE(1739)] = 53191, + [SMALL_STATE(1740)] = 53198, + [SMALL_STATE(1741)] = 53205, + [SMALL_STATE(1742)] = 53212, + [SMALL_STATE(1743)] = 53219, + [SMALL_STATE(1744)] = 53226, + [SMALL_STATE(1745)] = 53233, + [SMALL_STATE(1746)] = 53240, + [SMALL_STATE(1747)] = 53247, + [SMALL_STATE(1748)] = 53254, + [SMALL_STATE(1749)] = 53261, + [SMALL_STATE(1750)] = 53268, + [SMALL_STATE(1751)] = 53275, + [SMALL_STATE(1752)] = 53282, + [SMALL_STATE(1753)] = 53289, + [SMALL_STATE(1754)] = 53296, + [SMALL_STATE(1755)] = 53303, + [SMALL_STATE(1756)] = 53310, + [SMALL_STATE(1757)] = 53317, + [SMALL_STATE(1758)] = 53324, + [SMALL_STATE(1759)] = 53331, + [SMALL_STATE(1760)] = 53338, + [SMALL_STATE(1761)] = 53345, + [SMALL_STATE(1762)] = 53352, + [SMALL_STATE(1763)] = 53359, + [SMALL_STATE(1764)] = 53366, + [SMALL_STATE(1765)] = 53373, + [SMALL_STATE(1766)] = 53380, + [SMALL_STATE(1767)] = 53387, + [SMALL_STATE(1768)] = 53394, + [SMALL_STATE(1769)] = 53401, + [SMALL_STATE(1770)] = 53408, + [SMALL_STATE(1771)] = 53415, + [SMALL_STATE(1772)] = 53422, + [SMALL_STATE(1773)] = 53429, + [SMALL_STATE(1774)] = 53436, + [SMALL_STATE(1775)] = 53443, + [SMALL_STATE(1776)] = 53450, + [SMALL_STATE(1777)] = 53457, + [SMALL_STATE(1778)] = 53464, + [SMALL_STATE(1779)] = 53471, + [SMALL_STATE(1780)] = 53478, + [SMALL_STATE(1781)] = 53485, + [SMALL_STATE(1782)] = 53492, + [SMALL_STATE(1783)] = 53499, + [SMALL_STATE(1784)] = 53506, + [SMALL_STATE(1785)] = 53513, + [SMALL_STATE(1786)] = 53520, + [SMALL_STATE(1787)] = 53527, + [SMALL_STATE(1788)] = 53534, + [SMALL_STATE(1789)] = 53541, + [SMALL_STATE(1790)] = 53548, + [SMALL_STATE(1791)] = 53555, + [SMALL_STATE(1792)] = 53562, + [SMALL_STATE(1793)] = 53569, + [SMALL_STATE(1794)] = 53576, + [SMALL_STATE(1795)] = 53583, + [SMALL_STATE(1796)] = 53590, + [SMALL_STATE(1797)] = 53597, + [SMALL_STATE(1798)] = 53604, + [SMALL_STATE(1799)] = 53611, + [SMALL_STATE(1800)] = 53618, + [SMALL_STATE(1801)] = 53625, + [SMALL_STATE(1802)] = 53632, + [SMALL_STATE(1803)] = 53639, + [SMALL_STATE(1804)] = 53646, + [SMALL_STATE(1805)] = 53653, + [SMALL_STATE(1806)] = 53660, + [SMALL_STATE(1807)] = 53667, + [SMALL_STATE(1808)] = 53674, + [SMALL_STATE(1809)] = 53681, + [SMALL_STATE(1810)] = 53688, + [SMALL_STATE(1811)] = 53695, + [SMALL_STATE(1812)] = 53702, + [SMALL_STATE(1813)] = 53709, + [SMALL_STATE(1814)] = 53716, + [SMALL_STATE(1815)] = 53723, + [SMALL_STATE(1816)] = 53730, + [SMALL_STATE(1817)] = 53737, + [SMALL_STATE(1818)] = 53744, + [SMALL_STATE(1819)] = 53751, + [SMALL_STATE(1820)] = 53758, + [SMALL_STATE(1821)] = 53765, + [SMALL_STATE(1822)] = 53772, + [SMALL_STATE(1823)] = 53779, + [SMALL_STATE(1824)] = 53786, + [SMALL_STATE(1825)] = 53793, + [SMALL_STATE(1826)] = 53800, + [SMALL_STATE(1827)] = 53807, + [SMALL_STATE(1828)] = 53814, + [SMALL_STATE(1829)] = 53821, + [SMALL_STATE(1830)] = 53828, + [SMALL_STATE(1831)] = 53835, + [SMALL_STATE(1832)] = 53842, + [SMALL_STATE(1833)] = 53849, + [SMALL_STATE(1834)] = 53856, + [SMALL_STATE(1835)] = 53863, + [SMALL_STATE(1836)] = 53870, + [SMALL_STATE(1837)] = 53877, + [SMALL_STATE(1838)] = 53884, + [SMALL_STATE(1839)] = 53891, + [SMALL_STATE(1840)] = 53898, + [SMALL_STATE(1841)] = 53905, + [SMALL_STATE(1842)] = 53912, + [SMALL_STATE(1843)] = 53919, + [SMALL_STATE(1844)] = 53926, + [SMALL_STATE(1845)] = 53933, + [SMALL_STATE(1846)] = 53940, + [SMALL_STATE(1847)] = 53947, + [SMALL_STATE(1848)] = 53954, + [SMALL_STATE(1849)] = 53961, + [SMALL_STATE(1850)] = 53968, + [SMALL_STATE(1851)] = 53975, + [SMALL_STATE(1852)] = 53982, + [SMALL_STATE(1853)] = 53989, + [SMALL_STATE(1854)] = 53996, + [SMALL_STATE(1855)] = 54003, + [SMALL_STATE(1856)] = 54010, + [SMALL_STATE(1857)] = 54017, + [SMALL_STATE(1858)] = 54024, + [SMALL_STATE(1859)] = 54031, + [SMALL_STATE(1860)] = 54038, + [SMALL_STATE(1861)] = 54045, + [SMALL_STATE(1862)] = 54052, + [SMALL_STATE(1863)] = 54059, + [SMALL_STATE(1864)] = 54066, + [SMALL_STATE(1865)] = 54073, + [SMALL_STATE(1866)] = 54080, + [SMALL_STATE(1867)] = 54087, + [SMALL_STATE(1868)] = 54094, + [SMALL_STATE(1869)] = 54101, + [SMALL_STATE(1870)] = 54108, + [SMALL_STATE(1871)] = 54115, + [SMALL_STATE(1872)] = 54122, + [SMALL_STATE(1873)] = 54129, + [SMALL_STATE(1874)] = 54136, + [SMALL_STATE(1875)] = 54143, + [SMALL_STATE(1876)] = 54150, + [SMALL_STATE(1877)] = 54157, + [SMALL_STATE(1878)] = 54164, + [SMALL_STATE(1879)] = 54171, + [SMALL_STATE(1880)] = 54178, + [SMALL_STATE(1881)] = 54185, + [SMALL_STATE(1882)] = 54192, + [SMALL_STATE(1883)] = 54199, + [SMALL_STATE(1884)] = 54206, + [SMALL_STATE(1885)] = 54213, + [SMALL_STATE(1886)] = 54220, + [SMALL_STATE(1887)] = 54227, + [SMALL_STATE(1888)] = 54234, + [SMALL_STATE(1889)] = 54241, + [SMALL_STATE(1890)] = 54248, + [SMALL_STATE(1891)] = 54255, + [SMALL_STATE(1892)] = 54262, + [SMALL_STATE(1893)] = 54269, + [SMALL_STATE(1894)] = 54276, + [SMALL_STATE(1895)] = 54283, + [SMALL_STATE(1896)] = 54290, + [SMALL_STATE(1897)] = 54297, + [SMALL_STATE(1898)] = 54304, + [SMALL_STATE(1899)] = 54311, + [SMALL_STATE(1900)] = 54318, + [SMALL_STATE(1901)] = 54325, + [SMALL_STATE(1902)] = 54332, + [SMALL_STATE(1903)] = 54339, + [SMALL_STATE(1904)] = 54346, + [SMALL_STATE(1905)] = 54353, + [SMALL_STATE(1906)] = 54360, + [SMALL_STATE(1907)] = 54367, + [SMALL_STATE(1908)] = 54374, + [SMALL_STATE(1909)] = 54381, + [SMALL_STATE(1910)] = 54388, + [SMALL_STATE(1911)] = 54395, + [SMALL_STATE(1912)] = 54402, + [SMALL_STATE(1913)] = 54409, + [SMALL_STATE(1914)] = 54416, + [SMALL_STATE(1915)] = 54423, + [SMALL_STATE(1916)] = 54430, + [SMALL_STATE(1917)] = 54437, + [SMALL_STATE(1918)] = 54444, + [SMALL_STATE(1919)] = 54451, + [SMALL_STATE(1920)] = 54458, + [SMALL_STATE(1921)] = 54465, + [SMALL_STATE(1922)] = 54472, + [SMALL_STATE(1923)] = 54479, + [SMALL_STATE(1924)] = 54486, + [SMALL_STATE(1925)] = 54493, + [SMALL_STATE(1926)] = 54500, + [SMALL_STATE(1927)] = 54507, + [SMALL_STATE(1928)] = 54514, + [SMALL_STATE(1929)] = 54521, + [SMALL_STATE(1930)] = 54528, + [SMALL_STATE(1931)] = 54535, + [SMALL_STATE(1932)] = 54542, + [SMALL_STATE(1933)] = 54549, + [SMALL_STATE(1934)] = 54556, + [SMALL_STATE(1935)] = 54563, + [SMALL_STATE(1936)] = 54570, + [SMALL_STATE(1937)] = 54577, + [SMALL_STATE(1938)] = 54584, + [SMALL_STATE(1939)] = 54591, + [SMALL_STATE(1940)] = 54598, + [SMALL_STATE(1941)] = 54605, + [SMALL_STATE(1942)] = 54612, + [SMALL_STATE(1943)] = 54619, + [SMALL_STATE(1944)] = 54626, + [SMALL_STATE(1945)] = 54633, + [SMALL_STATE(1946)] = 54640, + [SMALL_STATE(1947)] = 54647, + [SMALL_STATE(1948)] = 54654, + [SMALL_STATE(1949)] = 54661, + [SMALL_STATE(1950)] = 54668, + [SMALL_STATE(1951)] = 54675, + [SMALL_STATE(1952)] = 54682, + [SMALL_STATE(1953)] = 54689, + [SMALL_STATE(1954)] = 54696, + [SMALL_STATE(1955)] = 54703, + [SMALL_STATE(1956)] = 54710, + [SMALL_STATE(1957)] = 54717, + [SMALL_STATE(1958)] = 54724, + [SMALL_STATE(1959)] = 54731, + [SMALL_STATE(1960)] = 54738, + [SMALL_STATE(1961)] = 54745, + [SMALL_STATE(1962)] = 54752, + [SMALL_STATE(1963)] = 54759, + [SMALL_STATE(1964)] = 54766, + [SMALL_STATE(1965)] = 54773, + [SMALL_STATE(1966)] = 54780, + [SMALL_STATE(1967)] = 54787, + [SMALL_STATE(1968)] = 54794, + [SMALL_STATE(1969)] = 54801, + [SMALL_STATE(1970)] = 54808, + [SMALL_STATE(1971)] = 54815, + [SMALL_STATE(1972)] = 54822, + [SMALL_STATE(1973)] = 54829, + [SMALL_STATE(1974)] = 54836, + [SMALL_STATE(1975)] = 54843, + [SMALL_STATE(1976)] = 54850, + [SMALL_STATE(1977)] = 54857, + [SMALL_STATE(1978)] = 54864, + [SMALL_STATE(1979)] = 54871, + [SMALL_STATE(1980)] = 54878, + [SMALL_STATE(1981)] = 54885, + [SMALL_STATE(1982)] = 54892, + [SMALL_STATE(1983)] = 54899, + [SMALL_STATE(1984)] = 54906, + [SMALL_STATE(1985)] = 54913, + [SMALL_STATE(1986)] = 54920, + [SMALL_STATE(1987)] = 54927, + [SMALL_STATE(1988)] = 54934, + [SMALL_STATE(1989)] = 54941, + [SMALL_STATE(1990)] = 54948, + [SMALL_STATE(1991)] = 54955, + [SMALL_STATE(1992)] = 54962, + [SMALL_STATE(1993)] = 54969, + [SMALL_STATE(1994)] = 54976, + [SMALL_STATE(1995)] = 54983, + [SMALL_STATE(1996)] = 54990, + [SMALL_STATE(1997)] = 54997, + [SMALL_STATE(1998)] = 55004, + [SMALL_STATE(1999)] = 55011, + [SMALL_STATE(2000)] = 55018, + [SMALL_STATE(2001)] = 55025, + [SMALL_STATE(2002)] = 55032, + [SMALL_STATE(2003)] = 55039, + [SMALL_STATE(2004)] = 55046, + [SMALL_STATE(2005)] = 55053, + [SMALL_STATE(2006)] = 55060, + [SMALL_STATE(2007)] = 55067, + [SMALL_STATE(2008)] = 55074, + [SMALL_STATE(2009)] = 55081, + [SMALL_STATE(2010)] = 55088, + [SMALL_STATE(2011)] = 55095, + [SMALL_STATE(2012)] = 55102, + [SMALL_STATE(2013)] = 55109, + [SMALL_STATE(2014)] = 55116, + [SMALL_STATE(2015)] = 55123, + [SMALL_STATE(2016)] = 55130, + [SMALL_STATE(2017)] = 55137, + [SMALL_STATE(2018)] = 55144, + [SMALL_STATE(2019)] = 55151, + [SMALL_STATE(2020)] = 55158, + [SMALL_STATE(2021)] = 55165, + [SMALL_STATE(2022)] = 55172, + [SMALL_STATE(2023)] = 55179, + [SMALL_STATE(2024)] = 55186, + [SMALL_STATE(2025)] = 55193, + [SMALL_STATE(2026)] = 55200, + [SMALL_STATE(2027)] = 55207, + [SMALL_STATE(2028)] = 55214, + [SMALL_STATE(2029)] = 55221, + [SMALL_STATE(2030)] = 55228, + [SMALL_STATE(2031)] = 55235, + [SMALL_STATE(2032)] = 55242, + [SMALL_STATE(2033)] = 55249, + [SMALL_STATE(2034)] = 55256, + [SMALL_STATE(2035)] = 55263, + [SMALL_STATE(2036)] = 55270, + [SMALL_STATE(2037)] = 55277, + [SMALL_STATE(2038)] = 55284, + [SMALL_STATE(2039)] = 55291, + [SMALL_STATE(2040)] = 55298, + [SMALL_STATE(2041)] = 55305, + [SMALL_STATE(2042)] = 55312, + [SMALL_STATE(2043)] = 55319, + [SMALL_STATE(2044)] = 55326, + [SMALL_STATE(2045)] = 55333, + [SMALL_STATE(2046)] = 55340, + [SMALL_STATE(2047)] = 55347, + [SMALL_STATE(2048)] = 55354, + [SMALL_STATE(2049)] = 55361, + [SMALL_STATE(2050)] = 55368, + [SMALL_STATE(2051)] = 55375, + [SMALL_STATE(2052)] = 55382, + [SMALL_STATE(2053)] = 55389, + [SMALL_STATE(2054)] = 55396, + [SMALL_STATE(2055)] = 55403, + [SMALL_STATE(2056)] = 55410, + [SMALL_STATE(2057)] = 55417, + [SMALL_STATE(2058)] = 55424, + [SMALL_STATE(2059)] = 55431, + [SMALL_STATE(2060)] = 55438, + [SMALL_STATE(2061)] = 55445, + [SMALL_STATE(2062)] = 55452, + [SMALL_STATE(2063)] = 55459, + [SMALL_STATE(2064)] = 55466, + [SMALL_STATE(2065)] = 55473, + [SMALL_STATE(2066)] = 55480, + [SMALL_STATE(2067)] = 55487, + [SMALL_STATE(2068)] = 55494, + [SMALL_STATE(2069)] = 55501, + [SMALL_STATE(2070)] = 55508, + [SMALL_STATE(2071)] = 55515, + [SMALL_STATE(2072)] = 55522, + [SMALL_STATE(2073)] = 55529, + [SMALL_STATE(2074)] = 55536, + [SMALL_STATE(2075)] = 55543, + [SMALL_STATE(2076)] = 55550, + [SMALL_STATE(2077)] = 55557, + [SMALL_STATE(2078)] = 55564, + [SMALL_STATE(2079)] = 55571, + [SMALL_STATE(2080)] = 55578, + [SMALL_STATE(2081)] = 55585, + [SMALL_STATE(2082)] = 55592, + [SMALL_STATE(2083)] = 55599, + [SMALL_STATE(2084)] = 55606, + [SMALL_STATE(2085)] = 55613, + [SMALL_STATE(2086)] = 55620, + [SMALL_STATE(2087)] = 55627, + [SMALL_STATE(2088)] = 55634, + [SMALL_STATE(2089)] = 55641, + [SMALL_STATE(2090)] = 55648, + [SMALL_STATE(2091)] = 55655, + [SMALL_STATE(2092)] = 55662, + [SMALL_STATE(2093)] = 55669, + [SMALL_STATE(2094)] = 55676, + [SMALL_STATE(2095)] = 55683, + [SMALL_STATE(2096)] = 55690, + [SMALL_STATE(2097)] = 55697, + [SMALL_STATE(2098)] = 55704, + [SMALL_STATE(2099)] = 55711, + [SMALL_STATE(2100)] = 55718, + [SMALL_STATE(2101)] = 55725, + [SMALL_STATE(2102)] = 55732, + [SMALL_STATE(2103)] = 55739, + [SMALL_STATE(2104)] = 55746, + [SMALL_STATE(2105)] = 55753, + [SMALL_STATE(2106)] = 55760, + [SMALL_STATE(2107)] = 55767, + [SMALL_STATE(2108)] = 55774, + [SMALL_STATE(2109)] = 55781, + [SMALL_STATE(2110)] = 55788, + [SMALL_STATE(2111)] = 55795, + [SMALL_STATE(2112)] = 55802, + [SMALL_STATE(2113)] = 55809, + [SMALL_STATE(2114)] = 55816, + [SMALL_STATE(2115)] = 55823, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block, 2, 0, 0), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block, 3, 0, 0), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_literal, 3, 0, 0), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_literal, 3, 0, 0), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2108), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(574), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_list, 1, 0, 0), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_list, 1, 0, 0), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1278), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_expression, 4, 0, 0), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block_expression, 4, 0, 0), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1, 0, 0), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, 0, 0), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_expression, 3, 0, 0), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block_expression, 3, 0, 0), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access, 3, 0, 0), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access, 3, 0, 0), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_foreach_expression, 3, 0, 0), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_foreach_expression, 3, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 4, 0, 0), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 4, 0, 0), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access, 4, 0, 0), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access, 4, 0, 0), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_expression, 4, 0, 0), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_expression, 4, 0, 0), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 8), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 8), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_expression, 2, 0, 0), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_expression, 2, 0, 0), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_expression, 3, 0, 8), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_expression, 3, 0, 8), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_here_string_literal, 2, 0, 0), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_here_string_literal, 2, 0, 0), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 15), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 15), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 1, 0, 0), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 1, 0, 0), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_with_unary_operator, 1, 0, 0), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_with_unary_operator, 1, 0, 0), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_with_unary_operator, 2, 0, 0), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_with_unary_operator, 2, 0, 0), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pre_increment_expression, 2, 0, 0), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pre_increment_expression, 2, 0, 0), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_here_string_literal, 3, 0, 0), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_here_string_literal, 3, 0, 0), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_expression, 3, 0, 0), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_literal_expression, 3, 0, 0), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_name, 1, 0, 0), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_name, 1, 0, 0), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_member_name, 1, 0, 0), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_member_name, 1, 0, 0), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_literal, 1, 0, 0), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_literal, 1, 0, 0), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_expression, 2, 0, 0), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_literal_expression, 2, 0, 0), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_post_increment_expression, 2, 0, 0), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_post_increment_expression, 2, 0, 0), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_expression, 1, 0, 0), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_expression, 1, 0, 0), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_post_decrement_expression, 2, 0, 0), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_post_decrement_expression, 2, 0, 0), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 3, 0, 0), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 3, 0, 0), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 2, 0, 0), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 2, 0, 0), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pre_decrement_expression, 2, 0, 0), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pre_decrement_expression, 2, 0, 0), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal_expression, 2, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal_expression, 2, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(637), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal_expression, 1, 0, 0), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal_expression, 1, 0, 0), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 1, 0, 0), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 1, 0, 0), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 1, 0, 0), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 1, 0, 0), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 3, 0, 0), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 3, 0, 0), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block, 3, 0, 0), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block, 2, 0, 0), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1319), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1253), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_list, 1, 0, 0), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1612), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_list, 1, 0, 0), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_literal, 3, 0, 0), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_literal, 3, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access, 3, 0, 0), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access, 3, 0, 0), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_expression, 3, 0, 0), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block_expression, 3, 0, 0), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_expression, 4, 0, 0), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_block_expression, 4, 0, 0), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1, 0, 0), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 1, 0, 0), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 15), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 15), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 2, 0, 0), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 2, 0, 0), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_here_string_literal, 2, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_here_string_literal, 2, 0, 0), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_expression, 2, 0, 0), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_literal_expression, 2, 0, 0), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_post_increment_expression, 2, 0, 0), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_post_increment_expression, 2, 0, 0), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_post_decrement_expression, 2, 0, 0), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_post_decrement_expression, 2, 0, 0), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 3, 0, 0), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 3, 0, 0), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_here_string_literal, 3, 0, 0), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_here_string_literal, 3, 0, 0), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 8), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 8), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_expression, 3, 0, 0), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_literal_expression, 3, 0, 0), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_name, 1, 0, 0), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_name, 1, 0, 0), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_member_name, 1, 0, 0), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_member_name, 1, 0, 0), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_foreach_expression, 3, 0, 0), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_foreach_expression, 3, 0, 0), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expandable_string_literal, 4, 0, 0), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expandable_string_literal, 4, 0, 0), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_expression, 1, 0, 0), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_expression, 1, 0, 0), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invokation_expression, 4, 0, 0), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invokation_expression, 4, 0, 0), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_expression, 2, 0, 0), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_expression, 2, 0, 0), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_expression, 3, 0, 8), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_expression, 3, 0, 8), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 1, 0, 0), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 1, 0, 0), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_with_unary_operator, 1, 0, 0), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_with_unary_operator, 1, 0, 0), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_with_unary_operator, 2, 0, 0), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_with_unary_operator, 2, 0, 0), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pre_increment_expression, 2, 0, 0), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pre_increment_expression, 2, 0, 0), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pre_decrement_expression, 2, 0, 0), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pre_decrement_expression, 2, 0, 0), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_literal, 1, 0, 0), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_literal, 1, 0, 0), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access, 4, 0, 0), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access, 4, 0, 0), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal_expression, 1, 0, 0), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal_expression, 1, 0, 0), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal_expression, 2, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal_expression, 2, 0, 0), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 3, 0, 0), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 3, 0, 0), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 1, 0, 0), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 1, 0, 0), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 1, 0, 0), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 1, 0, 0), [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 1, 0, 0), [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 1, 0, 0), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, 0, 0), [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 0), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 1, 0, 0), [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 1, 0, 0), [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_expression, 1, 0, 0), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_expression, 1, 0, 0), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_expression, 3, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_expression, 3, 0, 0), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_argument, 1, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_argument, 1, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control_statement, 1, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 14), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument_sep, 1, 0, 0), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument_sep, 1, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 14), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clauses, 1, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 5, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 5, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 3, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 3, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clauses, 1, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 4, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clauses, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_clauses, 1, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 1, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 16), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 12), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_argument_expression, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_argument_expression, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 14), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_argument_expression, 1, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_argument_expression, 1, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_argument_expression, 3, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_argument_expression, 3, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_argument_expression, 1, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_argument_expression, 1, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_argument_expression, 1, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_argument_expression, 1, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_argument_expression, 3, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_argument_expression, 3, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 0), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 12), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 0), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 14), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 16), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 4, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 19), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 20), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trap_statement, 2, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 17), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlinescript_statement, 2, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parallel_statement, 2, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_statement, 2, 0, 0), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 21), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 18), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 5, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, 0, 0), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 22), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 21), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 18), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trap_statement, 3, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 23), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 5, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 24), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 25), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_argument_expression, 1, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_argument_expression, 1, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 23), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 26), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_argument_expression, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_argument_expression, 3, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_statement, 4, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 4, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 4, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 18), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 14), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_statement, 3, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trap_statement, 3, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 18), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 14), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 20), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 21), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 18), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 5, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 22), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 21), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 18), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 23), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 24), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 25), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 19), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 26), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 3, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trap_statement, 2, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlinescript_statement, 2, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parallel_statement, 2, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_statement, 2, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 0), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 17), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_body, 1, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 4, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 4, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 4, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 23), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignement_operator, 1, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_argument_expression, 3, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_argument_expression, 3, 0, 0), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_argument_expression, 1, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_argument_expression, 1, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_argument_expression, 3, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_argument_expression, 1, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_expression, 3, 0, 0), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_expression, 3, 0, 0), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_expression, 1, 0, 0), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_expression, 1, 0, 0), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_argument, 1, 0, 0), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_argument, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control_statement, 1, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 14), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 14), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 3, 0, 0), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 3, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clauses, 1, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 5, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 5, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_block, 4, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_block, 4, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clauses, 1, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2087), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clauses, 1, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_clauses, 1, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 1, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 12), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 16), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_clause, 5, 0, 14), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 12), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 16), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_clause, 5, 0, 14), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 5, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 14), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 5, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 17), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 4, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 18), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 19), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 6, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 20), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trap_statement, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_statement, 2, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlinescript_statement, 2, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parallel_statement, 2, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 21), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 18), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 22), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 21), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 18), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 23), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 24), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 25), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 23), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 26), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trap_statement, 3, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_statement, 3, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_statement, 4, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 4, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_statement, 4, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_statement, 2, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 22), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 21), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 18), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 20), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 23), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 6, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 24), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 25), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 23), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 4, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 26), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trap_statement, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 21), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 4, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_statement, 2, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlinescript_statement, 2, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parallel_statement, 2, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_statement, 2, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 18), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 18), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 4, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 19), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 4, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_statement, 5, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 14), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 17), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 5, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trap_statement, 3, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignement_operator, 1, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument_sep, 1, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument_sep, 1, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(450), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_argument_expression, 3, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_argument_expression, 3, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_argument_expression, 3, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_argument_expression, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_argument_expression, 1, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_argument_expression, 1, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_argument_expression, 1, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_argument_expression, 1, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_argument_expression, 1, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_argument_expression, 1, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_argument_expression, 3, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_argument_expression, 3, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_argument_sep_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_argument_expression, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_argument_expression, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_argument_expression, 3, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_argument_expression, 3, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_literal_body, 1, 0, 0), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(592), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_literal_body_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_argument_expression, 1, 0, 0), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_argument_expression, 1, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_argument_expression, 3, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_argument_expression, 3, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_argument_expression, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_argument_expression, 3, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym_path_command_name_repeat1, 1, 0, 0), [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 1, 0, 0), [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym_path_command_name_repeat1, 1, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clauses, 1, 0, 0), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(773), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_command_name, 1, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_command_name, 1, 0, 0), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 6), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 6), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(908), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_elements, 1, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_elements, 1, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(327), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_left_assignment_expression, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 1, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 1, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name_expr, 1, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name_expr, 1, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_file_name, 1, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_file_name, 1, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(959), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), - [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(959), - [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 2, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 6), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_command_name, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_command_name, 1, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clauses, 1, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 6), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_elements, 1, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_elements, 1, 0, 0), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(729), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 1, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 1, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_left_assignment_expression, 1, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_file_name, 1, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_file_name, 1, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name_expr, 1, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name_expr, 1, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 2, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 2, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expandable_string_literal_immediate, 3, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expandable_string_literal_immediate, 3, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expandable_string_literal_immediate, 2, 0, 0), [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expandable_string_literal_immediate, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expandable_string_literal_immediate, 3, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expandable_string_literal_immediate, 3, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_element, 1, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_element, 1, 0, 0), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(621), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_argument, 2, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_argument, 2, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(648), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_entry, 4, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 4, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_merging_redirection_operator, 1, 0, 0), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_merging_redirection_operator, 1, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_element, 2, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_element, 2, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_entry, 5, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 5, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirections, 1, 0, 0), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 1, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 1, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_operator, 1, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_operator, 1, 0, 0), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clause, 3, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clause, 4, 0, 0), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_invokation_operator, 1, 0, 0), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirection_operator, 1, 0, 0), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirection_operator, 1, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1886), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(141), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(141), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1282), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 1, 0, 0), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), REDUCE(aux_sym_expandable_string_literal_repeat2, 1, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 3, 0, 0), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 3, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(1747), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(141), - [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(141), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 5, 0, 0), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 5, 0, 0), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 6, 0, 0), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 6, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 7, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 7, 0, 0), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1273), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 8, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 8, 0, 0), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 9, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 9, 0, 0), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 10, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 10, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_attribute, 1, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_attribute, 1, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 6, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_parameters, 1, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_parameters_repeat1, 2, 0, 0), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_block_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_block_list_repeat1, 2, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_block_list, 1, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_parameter, 1, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_filename, 1, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_clause_condition, 1, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), SHIFT_REPEAT(1335), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), SHIFT_REPEAT(1337), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 2, 0, 5), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_command_argument, 2, 0, 0), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_command_argument, 2, 0, 0), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression, 1, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_argument_expression, 1, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_block, 2, 0, 0), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2125), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 1, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_argument_expression, 3, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 3, 0, 0), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 1, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_expression_list_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), SHIFT_REPEAT(1298), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 7), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 10), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_name, 2, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_name, 2, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_type_list, 2, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimension, 1, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_arguments, 1, 0, 0), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_list, 2, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 3, 0, 0), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimension_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimension_repeat1, 2, 0, 0), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_arguments, 2, 0, 0), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), SHIFT_REPEAT(1296), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter_list, 2, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_arguments, 1, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression_list, 2, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_method_parameter_list_repeat1, 2, 0, 0), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_method_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_arguments_repeat1, 2, 0, 0), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_type_list, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_list, 1, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat2, 2, 0, 0), SHIFT_REPEAT(1507), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat2, 2, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_arguments_repeat1, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_list_repeat1, 2, 0, 0), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_commands_list_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_commands_list_repeat1, 2, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter_list, 1, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression_list, 1, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_arguments, 2, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(1538), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 3, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_name, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 1, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 4, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_command, 1, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 1, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 0), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 2, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_name, 1, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter_default, 2, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 4, 0, 13), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 1, 0, 2), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control_statement, 2, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_condition, 1, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_expression, 1, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_declaration, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_name, 1, 0, 0), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 9), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_allowed, 2, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4032] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 5, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_initializer, 1, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_condition, 2, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_iterator, 1, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_element, 1, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_element, 1, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_merging_redirection_operator, 1, 0, 0), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_merging_redirection_operator, 1, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_argument, 2, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_argument, 2, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_element, 2, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_element, 2, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_entry, 5, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 5, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_entry, 4, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 4, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirections, 1, 0, 0), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirections_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_invokation_operator, 1, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 1, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 1, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_operator, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_operator, 1, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clause, 3, 0, 0), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_clause, 4, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirection_operator, 1, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirection_operator, 1, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2101), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1309), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(154), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(154), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1244), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_here_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 1, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat1, 1, 0, 0), REDUCE(aux_sym_expandable_string_literal_repeat2, 1, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 2, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_statement_repeat2, 3, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat2, 3, 0, 0), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_property_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 5, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 5, 0, 0), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 7, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 7, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 10, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 10, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 8, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 8, 0, 0), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 6, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 6, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_method_definition, 9, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_definition, 9, 0, 0), + [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(1693), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(154), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), SHIFT(154), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_attribute, 1, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_attribute, 1, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 6, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_parameters, 1, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_parameters_repeat1, 2, 0, 0), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_block_list, 1, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_block_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2043), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_block_list_repeat1, 2, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_name_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_clause_condition, 1, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_filename, 1, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_parameter, 1, 0, 0), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_command_argument, 2, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_command_argument, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 2, 0, 5), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), SHIFT_REPEAT(1304), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__verbatim_command_argument_chars, 2, 0, 0), SHIFT_REPEAT(1312), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_block, 2, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression, 1, 0, 0), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_argument_expression, 1, 0, 0), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2099), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_argument_expression, 3, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, 0, 0), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 1, 0, 0), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_elseif_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_foreach_command_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2, 0, 0), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 2, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_statement_repeat1, 3, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 1, 0, 0), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_expression_list_repeat1, 2, 0, 0), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_expression_list_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat2, 2, 0, 0), SHIFT_REPEAT(1395), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expandable_string_literal_immediate_repeat2, 2, 0, 0), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_type_list, 2, 0, 0), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_commands_list_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_commands_list_repeat1, 2, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), SHIFT_REPEAT(1157), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 10), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_list, 1, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 7), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression_list, 2, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_arguments_repeat1, 2, 0, 0), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipeline_tail, 2, 0, 0), SHIFT_REPEAT(1156), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_list_repeat1, 2, 0, 0), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter_list, 1, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_arguments_repeat1, 2, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_arguments, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_expression_list, 1, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 3, 0, 0), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimension_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimension_repeat1, 2, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_arguments, 2, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter_list, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_arguments, 1, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_method_parameter_list_repeat1, 2, 0, 0), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_method_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expandable_string_literal_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expandable_string_literal_repeat2, 2, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_name, 2, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_name, 2, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimension, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_arguments, 1, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_type_list, 1, 0, 0), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_list, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter_default, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_name, 1, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_command, 1, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_parameter, 3, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_name, 1, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter, 2, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 2, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 4, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 1, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_parameter, 1, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 3, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_name, 1, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 1, 0, 2), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_body, 1, 0, 3), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_expression, 1, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_body, 1, 0, 4), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_initializer, 1, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 9), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_condition, 1, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 5, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 3, 0, 11), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_condition, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_parameter, 1, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 6, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_condition, 1, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_iterator, 1, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_expression, 1, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_condition, 2, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control_statement, 2, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_property_definition, 6, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_declaration, 3, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_parameter, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_body, 1, 0, 3), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_expression, 1, 0, 0), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_condition, 1, 0, 0), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block_body, 1, 0, 4), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 3, 0, 11), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_condition, 3, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_declaration, 2, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_declaration, 3, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_name, 1, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_commands_allowed, 2, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_block, 4, 0, 13), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 0d7de46..3ccb7f8 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -438,4 +438,67 @@ $rih2ymeurlleflu = & "New-Object" "System.Net.Sockets.TCPClient"("127.0.0.1", 44 (range_argument_expression (unary_expression (integer_literal - (decimal_integer_literal)))))))))))))))))))) \ No newline at end of file + (decimal_integer_literal)))))))))))))))))))) + +=== +Cmdlet that start with a keyword +=== + +download toto + +--- + +(program + (statement_list + (pipeline + (command + command_name: (command_name) + command_elements: (command_elements + (command_argument_sep) + (generic_token)))))) + + +=== +Cmdlet with parenthesized_expression as parameter without any white space +=== + +iex("calc.exe") + +--- + +(program + (statement_list + (pipeline + (command + command_name: (command_name) + command_elements: (command_elements + (parenthesized_expression + (pipeline + (logical_expression + (bitwise_expression + (comparison_expression + (additive_expression + (multiplicative_expression + (format_expression + (range_expression + (array_literal_expression + (unary_expression + (string_literal + (expandable_string_literal)))))))))))))))))) + +=== +Cmdlet that start with a keyword 2 +=== + +Exit-test toto + +--- + +(program + (statement_list + (pipeline + (command + command_name: (command_name) + command_elements: (command_elements + (command_argument_sep) + (generic_token)))))) \ No newline at end of file diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 84a140a..15edf28 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -484,4 +484,18 @@ function 1+1{ (param_block (parameter_list (script_parameter - (variable)))))))) \ No newline at end of file + (variable)))))))) + + +=== +Function name as keyword +=== + +function while {} + +--- + +(program + (statement_list + (function_statement + (function_name)))) \ No newline at end of file diff --git a/tree-sitter.json b/tree-sitter.json index ce75a8a..2cfc98d 100644 --- a/tree-sitter.json +++ b/tree-sitter.json @@ -16,7 +16,7 @@ } ], "metadata": { - "version": "1.2.0", + "version": "0.25.0", "license": "MIT", "description": "", "links": {